/* ======== STYLE ULTRA MODERNE DJDOM974MIX ======== */

body {
    margin: 0;
    font-family: 'Inter', system-ui, sans-serif;

    /* FOND DJ UNIQUEMENT */
    background: url('hellio42-ai-generated-8700009.png') no-repeat center center fixed;
    background-size: cover;
    background-attachment: fixed;

    color: #fff;
    overflow-x: hidden;
}

/* ======== HEADER ======== */

header {
    backdrop-filter: blur(12px);
    background: rgba(10, 10, 20, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ff0066, #6600ff);
    -webkit-background-clip: text;
    color: transparent;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    font-size: 1rem;
    position: relative;
    transition: 0.3s;
}

nav a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #ff0066;
    transition: 0.3s;
}

nav a:hover::after {
    width: 100%;
}

/* ======== MAIN ======== */

.main {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ======== BOUTONS ======== */

.btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 8px;
    background: linear-gradient(135deg, #ff0066, #6600ff);
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 0 12px rgba(255, 0, 102, 0.4);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 0, 102, 0.7);
}

.btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

/* ======== GRID ======== */

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

/* ======== CARDS ======== */

.card {
    background: rgba(255,255,255,0.05);
    border-radius: 14px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.4s;
    transform-style: preserve-3d;
}

.card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-color: rgba(255,0,102,0.4);
}

.card img,
.card video {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

/* ======== FOOTER ======== */

footer {
    margin-top: 60px;
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #bbb;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ======== RESPONSIVE ======== */

@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }
    nav {
        margin-top: 15px;
    }
    nav a {
        margin: 0 10px;
    }
}
