/* ==========================================
   NATRIX EVENTS - Gaming Tournament Platform
   Style OR/NOIR - Agressif Gaming
   ========================================== */

/* === Variables - NOUVEAU THÈME OR/NOIR === */
:root {
    /* Couleurs Or/Doré */
    --gold: #D4A825;
    --gold-light: #FFD700;
    --gold-dark: #B8860B;
    --gold-glow: #FFC125;
    
    /* Couleurs sombres */
    --dark: #050505;
    --dark-light: #0a0a0f;
    --dark-card: #0d0d12;
    --dark-border: #1a1a1f;
    
    /* Accents */
    --orange: #FF8C00;
    --amber: #FFBF00;
    
    /* Texte */
    --text: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.6);
    --text-gold: #D4A825;
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #D4A825 50%, #B8860B 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0f 0%, #050505 100%);
    --gradient-glow: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
    
    /* Effets */
    --glow-gold: 0 0 40px rgba(212, 168, 37, 0.6);
    --glow-orange: 0 0 30px rgba(255, 140, 0, 0.5);
    --shadow-gold: 0 4px 30px rgba(212, 168, 37, 0.3);
    
    /* Fonts */
    --font-display: 'Bebas Neue', sans-serif;
    --font-heading: 'Russo One', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
}

/* === Reset === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-weight: 500;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

/* === Background Animation === */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(212, 168, 37, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 140, 0, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(184, 134, 11, 0.03) 0%, transparent 70%),
        var(--dark);
}

.scan-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.15) 2px,
        rgba(0, 0, 0, 0.15) 4px
    );
    pointer-events: none;
    opacity: 0.4;
}

/* === Navigation === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 14px 5%;
    z-index: 1000;
    background: rgba(8, 8, 10, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-container {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-brand,
.logo-brand-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.15;
}

.logo-icon {
    font-size: 1.6rem;
    line-height: 1;
    filter: none;
    opacity: 0.95;
}

img.logo-icon {
    display: block;
    height: 3.5rem;
    width: 3.5rem;
    object-fit: contain;
    border-radius: 8px;
    flex-shrink: 0;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); opacity: 0.95; }
    50% { transform: scale(1.03); opacity: 1; }
}

.logo-text {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 3px;
    line-height: 1.1;
    background: linear-gradient(135deg, #FFD700 0%, #D4A825 50%, #C9A227 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-sub {
    display: block;
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 600;
    color: rgba(212, 168, 37, 0.85);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-top: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.2s ease, opacity 0.2s ease;
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.2s ease;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.9);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--gold);
}

.btn-cta {
    background: linear-gradient(135deg, #D4A825 0%, #B8860B 100%);
    color: #050505;
    padding: 10px 24px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
}

.btn-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(212, 168, 37, 0.35);
}

.btn-back {
    color: var(--text-muted);
    font-weight: 600;
    transition: color 0.3s ease;
}

.btn-back:hover {
    color: var(--gold);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

/* Hamburger menu mobile */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 1001;
}
.hamburger span {
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* === Buttons === */
.btn-mega {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--gradient-gold);
    color: var(--dark);
    padding: 20px 45px;
    border: none;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-mega:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-gold), 0 10px 40px rgba(212, 168, 37, 0.4);
}

.btn-mega.large {
    padding: 22px 50px;
    font-size: 1.2rem;
}

.btn-mega.xlarge {
    padding: 25px 60px;
    font-size: 1.3rem;
}

.btn-mega.full-width {
    width: 100%;
    justify-content: center;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 2.5s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--gold);
    padding: 18px 40px;
    border: 2px solid var(--gold);
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(212, 168, 37, 0.1);
    box-shadow: var(--glow-gold);
}

/* === Hero Section === */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 110px 5% 50px;
    gap: 50px;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    max-width: 700px;
}

.hero-alert {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(212, 168, 37, 0.1);
    border: 1px solid rgba(212, 168, 37, 0.4);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: var(--gold-light);
    animation: alertGlow 2s infinite;
}

@keyframes alertGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 168, 37, 0.4); }
    50% { box-shadow: 0 0 25px 5px rgba(212, 168, 37, 0.2); }
}

.alert-live {
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    animation: blink 1s infinite;
    box-shadow: 0 0 10px var(--gold);
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 9vw, 7rem);
    line-height: 0.9;
    margin-bottom: 30px;
    letter-spacing: 3px;
}

.hero-title .line1,
.hero-title .line2 {
    display: block;
    color: var(--text);
    text-shadow: 0 0 60px rgba(212, 168, 37, 0.2);
}

.hero-title .line3 {
    display: block;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 3s ease infinite;
    background-size: 200% 200%;
    filter: drop-shadow(0 0 30px rgba(212, 168, 37, 0.5));
}

@keyframes goldShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-text {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-text strong {
    color: var(--gold-light);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-proof {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.proof-item {
    text-align: left;
}

.proof-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.proof-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.proof-divider {
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

/* === Hero Visual - T-shirt === */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    overflow: visible;
}

.tshirt-showcase {
    position: relative;
    padding-bottom: 55px;
    overflow: visible;
}

.tshirt-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(212, 168, 37, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.tshirt-image {
    position: relative;
    z-index: 1;
}

.tshirt-body {
    width: 300px;
    height: 360px;
    background: linear-gradient(180deg, #0f0f0f 0%, #050505 100%);
    border-radius: 20px 20px 60px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.8),
        0 0 100px rgba(212, 168, 37, 0.1),
        inset 0 1px 0 rgba(212, 168, 37, 0.1);
    animation: float 4s ease-in-out infinite;
    border: 1px solid rgba(212, 168, 37, 0.1);
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.tshirt-body::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 30px;
    background: var(--dark);
    border-radius: 0 0 35px 35px;
    z-index: 1;
}

.tshirt-design {
    text-align: center;
    position: relative;
    z-index: 2;
}

.design-event {
    display: block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(212, 168, 37, 0.5);
}

.design-logo {
    display: block;
    font-size: 3rem;
    margin-bottom: 5px;
    opacity: 0.95;
}

img.design-logo {
    display: block;
    height: 8rem;
    width: 8rem;
    margin: 0 auto 8px;
    object-fit: contain;
    border-radius: 10px;
    filter: drop-shadow(0 0 20px rgba(212, 168, 37, 0.5));
}

.design-name {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    letter-spacing: 8px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(212, 168, 37, 0.5));
}

.design-date {
    display: block;
    font-size: 0.85rem;
    color: rgba(212, 168, 37, 0.6);
    letter-spacing: 4px;
    margin-top: 10px;
}

.tshirt-label {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--dark);
    padding: 12px 28px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.85rem;
    white-space: nowrap;
    box-shadow: var(--shadow-gold);
}

.label-tag {
    background: var(--dark);
    color: var(--gold);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.65rem;
    letter-spacing: 1px;
}

/* Texte mobile caché sur desktop */
.label-text-mobile {
    display: none;
}

/* === Problem Section === */
.problem-section {
    padding: 50px 5%;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-light) 50%, var(--dark) 100%);
    border-top: 1px solid rgba(212, 168, 37, 0.1);
    border-bottom: 1px solid rgba(212, 168, 37, 0.1);
    overflow: hidden;
}

.problem-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.problem-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    flex: 1;
    min-width: 200px;
    transition: all 0.3s ease;
}

.problem-card:hover {
    border-color: rgba(212, 168, 37, 0.3);
    transform: translateY(-5px);
}

.problem-card.highlight {
    border-color: var(--gold);
    box-shadow: var(--glow-gold);
    background: linear-gradient(135deg, rgba(212, 168, 37, 0.05), transparent);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

img.problem-logo-img {
    display: block;
    width: 7rem;
    height: 7rem;
    margin: 0 auto 20px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(212, 168, 37, 0.5));
}
.problem-emoji {
    display: inline-block;
    line-height: 1;
    font-size: 2.5rem;
    opacity: 0.9;
}
.problem-card.highlight .problem-emoji {
    opacity: 1;
}

.problem-card p {
    font-size: 1.05rem;
    color: var(--text-muted);
}

.problem-card p strong {
    color: var(--text);
}

.problem-card.highlight p strong {
    color: var(--gold-light);
}

/* Flèche en CSS pour éviter tout problème d'encodage (â†' → →) */
.problem-arrow {
    font-size: 0;
    color: var(--gold);
    opacity: 0.5;
}
.problem-arrow::before {
    content: '\2192';
    font-size: 2.5rem;
    color: var(--gold);
    opacity: 0.5;
    display: inline-block;
}

/* === Section Styles === */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-tag {
    display: inline-block;
    background: rgba(212, 168, 37, 0.1);
    border: 1px solid rgba(212, 168, 37, 0.3);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    letter-spacing: 2px;
}

.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === Next Event Section === */
.next-event {
    padding: 70px 5% 40px;
    position: relative;
    overflow: hidden;
}

.next-event::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 168, 37, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.event-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.event-header {
    margin-bottom: 50px;
}

.event-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(212, 168, 37, 0.1);
    border: 1px solid rgba(212, 168, 37, 0.4);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 25px;
    color: var(--gold);
}

.badge-pulse {
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    animation: blink 1s infinite;
    box-shadow: 0 0 10px var(--gold);
}

.event-title {
    font-family: var(--font-display);
}

.event-name {
    display: block;
    font-size: clamp(3rem, 7vw, 5rem);
    letter-spacing: 5px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(212, 168, 37, 0.3));
}

.event-game {
    display: block;
    font-family: var(--font-body);
    font-size: 1.3rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 3px;
    margin-top: 15px;
}

/* === Countdown === */
.event-countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.countdown-item {
    background: var(--dark-card);
    border: 1px solid rgba(212, 168, 37, 0.2);
    border-radius: 16px;
    padding: 30px 35px;
    min-width: 110px;
    transition: all 0.3s ease;
}

.countdown-item:hover {
    border-color: var(--gold);
    box-shadow: var(--glow-gold);
}

.countdown-value {
    display: block;
    font-family: var(--font-display);
    font-size: 3.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.countdown-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.countdown-sep {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--gold);
    display: flex;
    align-items: center;
    animation: blink 1s infinite;
    opacity: 0.5;
}

/* === Event Details === */
.event-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.detail-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
    transition: all 0.3s ease;
}

.detail-card:hover {
    border-color: rgba(212, 168, 37, 0.3);
}

.detail-icon {
    font-size: 2rem;
}

.detail-label {
    display: block;
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.detail-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
}

.detail-sub {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 3px;
}

/* === Event Price === */
.event-price {
    background: var(--dark-card);
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    box-shadow: var(--glow-gold);
}

.price-tag {
    text-align: left;
}

.price-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 3px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.price-value {
    display: block;
    font-family: var(--font-display);
    font-size: 4rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.price-includes {
    display: block;
    font-size: 0.95rem;
    color: var(--gold);
}

.price-spots {
    flex: 1;
    min-width: 200px;
}

.spots-bar {
    height: 14px;
    background: rgba(212, 168, 37, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
    border: 1px solid rgba(212, 168, 37, 0.2);
}

.spots-fill {
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 10px;
    transition: width 0.5s ease;
    box-shadow: 0 0 20px rgba(212, 168, 37, 0.5);
}

.spots-text {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.spots-text strong {
    color: var(--gold-light);
}

/* === Event CTA === */
.event-cta {
    margin-top: 40px;
}

.cta-urgency {
    margin-top: 20px;
    color: var(--gold);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
}

/* === Rewards Section === */
.rewards-section {
    padding: 50px 5% 60px;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-light) 50%, var(--dark) 100%);
    overflow: hidden;
}

.rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.reward-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 28px 24px;
    padding-top: 50px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.reward-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reward-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 168, 37, 0.3);
}

.reward-card:hover::before {
    opacity: 1;
}

.reward-card.everyone {
    border-color: rgba(212, 168, 37, 0.15);
}

.reward-card.top3 {
    border-color: rgba(212, 168, 37, 0.4);
    background: linear-gradient(135deg, rgba(212, 168, 37, 0.08), transparent);
}

.reward-badge {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(212, 168, 37, 0.1);
    color: var(--gold);
    text-transform: uppercase;
}

.reward-badge.gold {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.reward-badge.silver {
    background: rgba(192, 192, 192, 0.2);
    color: #E8E8E8;
}

.reward-badge.bronze {
    background: rgba(205, 127, 50, 0.2);
    color: #CD853F;
}

.reward-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.reward-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.reward-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.reward-value {
    font-weight: 700;
    color: var(--gold);
    font-size: 1rem;
}

.reward-value.prize {
    color: var(--gold-light);
    font-size: 1.3rem;
    font-family: var(--font-display);
    letter-spacing: 1px;
}

/* === How Section === */
.how-section {
    padding: 60px 5%;
}

.steps-timeline {
    max-width: 700px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-number {
    width: 55px;
    height: 55px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--dark);
    flex-shrink: 0;
    box-shadow: var(--shadow-gold);
}

.step-content {
    padding-bottom: 50px;
}

.step-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--gold-light);
}

.step-content p {
    color: var(--text-muted);
    font-size: 1rem;
}

.step-line {
    width: 3px;
    height: 50px;
    background: linear-gradient(180deg, var(--gold), transparent);
    margin-left: 26px;
    opacity: 0.4;
}

/* === Levels Section === */
.levels-section {
    padding: 60px 5%;
    background: var(--dark-light);
}

.levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.level-card {
    background: var(--dark-card);
    border: 2px solid;
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.level-card.bronze {
    border-color: #CD853F;
}

.level-card.silver {
    border-color: #C0C0C0;
}

.level-card.gold {
    border-color: var(--gold);
    box-shadow: var(--glow-gold);
    background: linear-gradient(135deg, rgba(212, 168, 37, 0.08), transparent);
}

.level-card:hover {
    transform: translateY(-4px);
}

.level-header {
    margin-bottom: 20px;
}

.level-icon {
    font-size: 3rem;
}

.level-name {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 3px;
    margin-top: 10px;
}

.level-card.bronze .level-name { color: #CD853F; }
.level-card.silver .level-name { color: #E8E8E8; }
.level-card.gold .level-name { color: var(--gold-light); }

.level-desc {
    color: var(--text-muted);
    margin-bottom: 18px;
    font-size: 0.9rem;
}

.level-features {
    list-style: none;
    text-align: left;
    margin-bottom: 18px;
}

.level-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.95rem;
}

.level-for {
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1px;
}

/* === Testimonials === */
.testimonials-section {
    padding: 60px 5%;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.3s ease;
    text-align: center;
}

.testimonial:hover {
    border-color: rgba(212, 168, 37, 0.3);
    transform: translateY(-3px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    justify-content: center;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(212, 168, 37, 0.12);
    border: 1px solid rgba(212, 168, 37, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.testimonial-avatar .ntx-icon {
    width: 1.6rem;
    height: 1.6rem;
    display: block;
    filter: none;
}

.testimonial-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.testimonial-rank {
    display: block;
    font-size: 0.85rem;
    color: var(--gold);
}

.testimonial-text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-event {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1px;
}

/* === Final CTA === */
.final-cta {
    padding: 70px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(212, 168, 37, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 25px;
    letter-spacing: 3px;
}

.cta-title span {
    display: block;
}

.cta-text {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-details {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 1rem;
}

.cta-details span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* === Footer === */
.footer {
    padding: 50px 5% 30px;
    border-top: 1px solid rgba(212, 168, 37, 0.1);
    background: var(--dark);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 20px;
    max-width: 300px;
    line-height: 1.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    margin-bottom: 25px;
    color: var(--gold);
    letter-spacing: 2px;
}

.footer-column a {
    display: block;
    color: var(--text-muted);
    padding: 10px 0;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--gold-light);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 168, 37, 0.1);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer.mini {
    padding: 30px 5%;
}

.footer.mini .footer-content {
    display: block;
    text-align: center;
}

/* Footer compact (calendrier, classement, inscription) - même logique or/noir */
.footer-compact {
    border-top: 1px solid rgba(212, 168, 37, 0.2);
    padding: 36px 5% 28px;
}

.footer-compact-inner {
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer-compact-brand {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}
.footer-logo:hover {
    opacity: 0.9;
}
.footer-logo .logo-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
}
.footer-logo .logo-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}
.footer-logo .logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 2px;
    color: var(--gold);
}
.footer-logo .logo-sub {
    font-size: 0.5rem;
    letter-spacing: 2px;
    color: var(--gold);
    opacity: 0.9;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border: 1px solid rgba(212, 168, 37, 0.5);
    border-radius: 30px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.25s ease;
    background: transparent;
}

.footer-social-link:hover {
    background: var(--gradient-gold);
    color: var(--dark);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.footer-compact-legal {
    margin: 0;
    padding-top: 18px;
    border-top: 1px solid rgba(212, 168, 37, 0.1);
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.6;
}

.footer-compact-legal a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-compact-legal a:hover {
    color: var(--gold);
}

/* === Inscription Page === */
.inscription-page {
    padding-top: 100px;
}

.inscription-section {
    padding: 40px 5%;
}

.inscription-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    align-items: start;
}

/* Event Summary */
.event-summary {
    position: sticky;
    top: 90px;
    height: fit-content;
}

.summary-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 168, 37, 0.1);
    border: 1px solid rgba(212, 168, 37, 0.4);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 25px;
}

.summary-title {
    font-family: var(--font-display);
    font-size: 3rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.summary-game {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 35px;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 35px;
}

.summary-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.summary-item .item-icon {
    font-size: 1.5rem;
}

.summary-item .item-text strong {
    display: block;
    color: var(--text);
}

.summary-item .item-text span {
    font-size: 0.9rem;
    color: var(--text-muted);
}
.summary-item .item-text .summary-program {
    display: block;
    margin-top: 4px;
    font-size: 0.8rem;
    color: rgba(212, 168, 37, 0.85);
}

.summary-rewards {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
}

.summary-rewards h3 {
    font-size: 1rem;
    margin-bottom: 18px;
    color: var(--gold);
    letter-spacing: 1px;
}

.rewards-list {
    list-style: none;
}

.rewards-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.rewards-list li:last-child {
    border-bottom: none;
}

.reward-check {
    color: var(--gold);
    font-weight: bold;
    font-size: 1.1rem;
}

.summary-cashprize {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
}

.summary-cashprize h3 {
    font-size: 1rem;
    margin-bottom: 18px;
    color: var(--gold);
}

.cashprize-list {
    display: flex;
    gap: 15px;
}

.cashprize-item {
    flex: 1;
    text-align: center;
    padding: 18px 12px;
    background: rgba(212, 168, 37, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(212, 168, 37, 0.1);
}

.cashprize-item .position {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.cashprize-item .amount {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 1px;
}

.cashprize-item.gold { border-color: rgba(255, 215, 0, 0.3); }
.cashprize-item.gold .amount { color: #FFD700; }
.cashprize-item.silver .amount { color: #E8E8E8; }
.cashprize-item.bronze .amount { color: #CD853F; }

.summary-spots {
    background: var(--dark-card);
    border: 2px solid var(--gold);
    border-radius: 16px;
    padding: 25px;
    box-shadow: var(--glow-gold);
}

.spots-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    color: var(--gold);
    font-weight: 600;
}

/* Inscription Form */
.inscription-form-container {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 32px;
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(212, 168, 37, 0.1);
}

.form-header h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    letter-spacing: 2px;
}

.form-price {
    text-align: right;
}

.price-amount {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-note {
    font-size: 0.9rem;
    color: var(--gold);
}

.form-section {
    margin-bottom: 40px;
}

.form-section h3 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--gold);
    letter-spacing: 1px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(212, 168, 37, 0.03);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    padding: 16px 20px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

/* Options des selects visibles (fond sombre, texte clair) */
.form-group select option {
    background: #1a1a1f;
    color: #fff;
    padding: 10px;
}
.form-group select option:checked {
    background: #D4A825;
    color: #000;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 168, 37, 0.15);
    background: rgba(212, 168, 37, 0.05);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.input-hint {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Size Options */
.size-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.size-option {
    cursor: pointer;
}

.size-option input {
    display: none;
}

.size-label {
    display: flex;
    width: 55px;
    height: 55px;
    align-items: center;
    justify-content: center;
    background: rgba(212, 168, 37, 0.05);
    border: 2px solid var(--dark-border);
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.size-option input:checked + .size-label {
    border-color: var(--gold);
    background: rgba(212, 168, 37, 0.15);
    color: var(--gold-light);
    box-shadow: var(--glow-gold);
}

.size-option:hover .size-label {
    border-color: var(--gold);
}

/* Checkbox */
.checkbox-option {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    margin-bottom: 16px;
}

.checkbox-option input {
    width: 22px;
    height: 22px;
    min-width: 22px;
    margin: 0;
    flex-shrink: 0;
    accent-color: var(--gold);
    cursor: pointer;
}

.checkbox-text {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.checkbox-text a {
    color: var(--gold);
    text-decoration: underline;
}

/* Form Submit */
.form-submit {
    margin-top: 35px;
    padding-top: 35px;
    border-top: 1px solid rgba(212, 168, 37, 0.1);
}

.submit-summary {
    background: rgba(212, 168, 37, 0.05);
    border: 1px solid rgba(212, 168, 37, 0.1);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(212, 168, 37, 0.1);
    color: var(--text-muted);
}

.summary-line:last-child {
    border-bottom: none;
}

.summary-line.total {
    font-weight: 700;
    color: var(--gold-light);
    font-size: 1.2rem;
    padding-top: 18px;
    font-family: var(--font-heading);
}

.payment-methods {
    text-align: center;
    margin-top: 25px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 12px;
}

/* === FAQ Section === */
.faq-section {
    padding: 100px 5%;
    background: var(--dark-light);
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-container h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.faq-item {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(212, 168, 37, 0.3);
}

.faq-item h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--gold);
}

.faq-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* === Modal === */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    background: var(--dark-card);
    border: 1px solid rgba(212, 168, 37, 0.2);
    border-radius: 24px;
    padding: 40px 30px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    margin: auto;
    max-height: 90vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(212,168,37,0.3) transparent;
}
.modal-content::-webkit-scrollbar {
    width: 6px;
}
.modal-content::-webkit-scrollbar-thumb {
    background: rgba(212,168,37,0.3);
    border-radius: 3px;
}

.modal.active .modal-content {
    transform: scale(1);
}

.success-modal .success-icon {
    font-size: 5rem;
    display: block;
    margin-bottom: 25px;
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.success-modal h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.success-modal p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.success-details {
    background: rgba(212, 168, 37, 0.05);
    border: 1px solid rgba(212, 168, 37, 0.1);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    text-align: left;
}

.success-details .detail-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(212, 168, 37, 0.1);
}

.success-details .detail-row:last-child {
    border-bottom: none;
}

.success-share {
    margin-bottom: 30px;
}

.success-share p {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.share-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.share-btn {
    padding: 12px 22px;
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-3px);
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.discord {
    background: #5865f2;
    color: white;
}

.share-btn.copy {
    background: var(--gradient-gold);
    color: var(--dark);
}

/* === Discord checkbox highlight === */
.checkbox-discord {
    border: 1px solid rgba(212, 168, 37, 0.35);
    border-radius: 10px;
    padding: 14px 12px 14px 0;
    margin-bottom: 8px;
    background: rgba(212, 168, 37, 0.04);
}
.checkbox-discord .checkbox-text {
    flex: 1;
    min-width: 0;
}

.discord-highlight {
    color: var(--gold-light);
}

.discord-link {
    color: var(--gold) !important;
    margin-left: 6px;
}

/* === Responsive === */

/* --- Tablette (1024px) --- */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 5% 50px;
        overflow: visible;
    }
    
    .hero-visual {
        margin-top: 40px;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .hero-proof {
        justify-content: center;
    }
    
    .proof-item {
        text-align: center;
    }
    
    .inscription-container {
        grid-template-columns: 1fr;
    }
    
    .event-summary {
        position: relative;
        top: 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .rewards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .levels-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
}

/* --- Mobile (768px) --- */
@media (max-width: 768px) {

    /* ===== ANTI-DÉBORDEMENT ===== */
    .next-event::before,
    .final-cta::before { width: 100%; max-width: 100vw; }
    .tshirt-glow { max-width: 80vw; }

    /* ===== NAVIGATION ===== */
    .hamburger {
        display: flex;
        z-index: 1100;
        position: relative;
    }
    .navbar {
        padding: 8px 4%;
        z-index: 1050;
    }
    .nav-container { gap: 10px; }
    .logo { gap: 8px; }
    img.logo-icon { height: 2.4rem; width: 2.4rem; border-radius: 6px; }
    .logo-text { font-size: 1.5rem; letter-spacing: 2px; }
    .logo-sub { font-size: 0.5rem; letter-spacing: 1.5px; }

    .nav-actions {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
    }
    .nav-actions .btn-cta {
        padding: 7px 12px;
        font-size: 0.6rem;
        border-radius: 6px;
        letter-spacing: 0.5px;
    }

    /* ======= MENU BURGER PLEIN ÉCRAN - 100% OPAQUE ======= */
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        background: #050508;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        z-index: 1080;
        padding: 100px 30px 60px;
        overflow-y: auto;
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links .nav-link {
        font-size: 1rem;
        letter-spacing: 3px;
        padding: 14px 0;
        color: rgba(255, 255, 255, 0.7);
        text-align: center;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .nav-links .nav-link:hover,
    .nav-links .nav-link.active {
        color: var(--gold);
    }

    /* ===== HERO ===== */
    .hero {
        padding: 75px 5% 30px;
        gap: 25px;
        min-height: auto;
        overflow: visible;  /* IMPORTANT: ne PAS couper la carte t-shirt */
    }
    .hero-visual {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        display: flex;
        justify-content: center;
        overflow: visible;
    }
    .hero-content { max-width: 100%; }
    .hero-title {
        font-size: clamp(2rem, 7vw, 2.5rem);
        margin-bottom: 15px;
        letter-spacing: 1px;
    }
    .hero-text {
        font-size: 0.9rem;
        margin-bottom: 20px;
        line-height: 1.6;
    }
    .hero-alert {
        font-size: 0.6rem;
        padding: 8px 14px;
        letter-spacing: 1px;
        margin-bottom: 15px;
        max-width: 100%;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 25px;
        gap: 10px;
    }
    .hero-buttons .btn-mega,
    .hero-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 14px 20px;
        font-size: 0.8rem;
    }
    .hero-proof {
        gap: 0;
        justify-content: space-between;
        width: 100%;
    }
    .proof-item {
        text-align: center;
        flex: 1;
    }
    .proof-number { font-size: 1.4rem; }
    .proof-label { font-size: 0.55rem; letter-spacing: 0.5px; }
    .proof-divider { display: none; }

    /* ===== T-SHIRT - CARTE COMPLÈTE SUR MOBILE ===== */
    .tshirt-showcase {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-bottom: 55px;
        overflow: visible;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    .tshirt-image {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    .tshirt-body {
        width: 200px;
        height: 260px;
        overflow: visible;
    }
    .tshirt-glow {
        width: 220px;
        height: 220px;
        max-width: 100%;
    }
    .tshirt-label {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        padding: 10px 22px;
        border-radius: 25px;
        white-space: nowrap;
        text-align: center;
        font-size: 0.85rem;
        font-weight: 800;
        letter-spacing: 1px;
    }
    .tshirt-label .label-tag,
    .tshirt-label .label-text {
        display: none;
    }
    .tshirt-label .label-text-mobile {
        display: inline;
    }
    .design-event {
        font-size: 0.6rem;
        margin-bottom: 10px;
        position: relative;
        z-index: 2;
    }
    .design-name { font-size: 2rem; letter-spacing: 4px; }
    .design-date { font-size: 0.7rem; }

    /* ===== PROBLEM SECTION ===== */
    .problem-section { padding: 30px 5%; }
    .problem-container {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    .problem-card {
        padding: 20px 16px;
        min-width: 0;
        width: 100%;
        text-align: center;
    }
    .problem-card p { font-size: 0.9rem; }
    .problem-arrow { transform: rotate(90deg); }
    .problem-arrow::before { font-size: 1.5rem; }

    /* ===== SECTIONS PADDING ===== */
    .next-event { padding: 40px 5% 25px; }
    .rewards-section { padding: 35px 5% 40px; }
    .how-section { padding: 35px 5%; }
    .levels-section { padding: 35px 5%; }
    .testimonials-section { padding: 35px 5%; }
    .final-cta { padding: 40px 5%; }
    .faq-section { padding: 40px 5%; }

    /* ===== SECTION HEADERS ===== */
    .section-header { margin-bottom: 20px; }
    .section-tag { padding: 6px 14px; font-size: 0.55rem; letter-spacing: 1.5px; }
    .section-title { font-size: clamp(1.5rem, 5vw, 2rem); }

    /* ===== COUNTDOWN ===== */
    .event-countdown { gap: 6px; margin-bottom: 35px; }
    .countdown-item { padding: 12px 10px; min-width: 55px; border-radius: 10px; }
    .countdown-value { font-size: 1.6rem; }
    .countdown-label { font-size: 0.5rem; letter-spacing: 1px; }
    .countdown-sep { font-size: 1.6rem; }

    /* ===== EVENT DETAILS - CENTRÉ ===== */
    .event-header { margin-bottom: 25px; }
    .event-badge { font-size: 0.6rem; padding: 7px 16px; letter-spacing: 1.5px; }
    .event-name { font-size: clamp(1.8rem, 7vw, 3rem); letter-spacing: 2px; }
    .event-game { font-size: 0.9rem; letter-spacing: 1.5px; margin-top: 8px; }
    .event-details {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .detail-card {
        padding: 20px 18px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
    }
    .detail-icon {
        flex-shrink: 0;
        width: 2.2rem;
        height: 2.2rem;
    }
    .detail-info {
        flex: 1;
        text-align: center;
    }
    .detail-label { font-size: 0.65rem; letter-spacing: 1.5px; }
    .detail-value { font-size: 0.95rem; }
    .detail-sub { font-size: 0.8rem; }

    /* ===== EVENT PRICE - CENTRÉ ===== */
    .event-price {
        flex-direction: column;
        text-align: center;
        padding: 20px 16px;
        border-radius: 14px;
        gap: 15px;
        max-width: 100%;
    }
    .price-tag { text-align: center; }
    .price-value { font-size: 2.5rem; }
    .price-spots { min-width: 0; width: 100%; }
    .cta-urgency { font-size: 0.8rem; }

    /* ===== REWARDS ===== */
    .rewards-grid { grid-template-columns: 1fr; gap: 14px; }
    .reward-card { padding: 20px 16px; padding-top: 40px; }
    .reward-badge { font-size: 0.55rem; top: 12px; }
    .reward-card h3 { font-size: 1rem; margin-bottom: 10px; }
    .reward-card p { font-size: 0.85rem; margin-bottom: 15px; line-height: 1.6; }
    .reward-value { font-size: 0.85rem; }

    /* ===== LEVELS - COMPACT & PROPORTIONNEL ===== */
    .levels-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .level-card {
        padding: 16px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .level-header {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 6px;
    }
    .level-icon.ntx-icon {
        width: 1.4rem;
        height: 1.4rem;
        margin: 0;
    }
    .level-name {
        font-size: 1.1rem;
        letter-spacing: 2px;
        margin-top: 0;
    }
    .level-desc {
        font-size: 0.75rem;
        margin-bottom: 8px;
    }
    .level-features {
        text-align: center;
        width: 100%;
        margin-bottom: 10px;
    }
    .level-features li {
        font-size: 0.85rem;
        padding: 6px 0;
    }
    .level-for {
        font-size: 0.8rem;
        margin-top: 4px;
    }

    /* ===== STEPS ===== */
    .step { gap: 16px; }
    .step-number { width: 38px; height: 38px; font-size: 1rem; }
    .step-content { padding-bottom: 25px; }
    .step-content h3 { font-size: 1rem; }
    .step-content p { font-size: 0.85rem; }
    .step-line { height: 25px; margin-left: 17px; }

    /* ===== TESTIMONIALS - PROPRE & CENTRÉ ===== */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .testimonial {
        padding: 22px 18px;
    }
    .testimonial-header {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 16px;
    }
    .testimonial-avatar {
        width: 44px;
        height: 44px;
        min-width: 44px;
        flex-shrink: 0;
    }
    .testimonial-info {
        flex: 1;
        text-align: center;
    }
    .testimonial-name { font-size: 1rem; }
    .testimonial-rank { font-size: 0.78rem; }
    .testimonial-text {
        font-size: 0.88rem;
        line-height: 1.6;
        margin-bottom: 14px;
    }
    .testimonial-event { font-size: 0.75rem; }

    /* ===== CTA FINAL ===== */
    .cta-title { font-size: clamp(1.5rem, 5vw, 2rem); margin-bottom: 12px; letter-spacing: 1px; }
    .cta-text { font-size: 0.9rem; margin-bottom: 18px; }
    .cta-details {
        gap: 6px;
        font-size: 0.8rem;
        flex-direction: column;
        align-items: center;
    }
    .cta-details span:nth-child(even) { display: none; }

    /* ===== FAQ ===== */
    .faq-grid { grid-template-columns: 1fr; gap: 14px; }
    .faq-item { padding: 18px 16px; }
    .faq-item h3 { font-size: 0.85rem; }
    .faq-item p { font-size: 0.8rem; }
    .faq-container h2 { font-size: 1.6rem; margin-bottom: 25px; }

    /* ===== INSCRIPTION PAGE ===== */
    .inscription-page { padding-top: 80px; }
    .inscription-section { padding: 20px 4%; }

    /* Summary centré sur mobile */
    .event-summary {
        text-align: center;
    }
    .summary-badge { margin-bottom: 18px; font-size: 0.6rem; }
    .summary-title { font-size: 2rem; text-align: center; }
    .summary-game { font-size: 1rem; margin-bottom: 25px; text-align: center; }
    .summary-details {
        gap: 14px;
        margin-bottom: 25px;
        align-items: center;
    }
    .summary-item {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .summary-item .item-icon {
        flex-shrink: 0;
    }
    .summary-item .item-text {
        text-align: center;
    }
    .summary-rewards { padding: 18px 16px; text-align: center; }
    .summary-rewards h3 { font-size: 0.9rem; margin-bottom: 14px; text-align: center; }
    .rewards-list li {
        justify-content: center;
    }
    .summary-cashprize { padding: 18px 16px; }
    .summary-spots { padding: 18px 16px; }

    /* ===== FORMULAIRE - CENTRÉ & LISIBLE ===== */
    .inscription-form-container {
        padding: 22px 18px;
    }
    .form-header {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        margin-bottom: 25px;
        padding-bottom: 18px;
    }
    .form-header h2 { font-size: 1.6rem; }
    .form-price { text-align: center; }
    .price-amount { font-size: 2rem; }
    .form-section { margin-bottom: 30px; }
    .form-section h3 { font-size: 0.95rem; margin-bottom: 18px; }
    .form-group { margin-bottom: 18px; }
    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 8px;
        color: #fff;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 16px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.15);
        color: #fff;
    }
    .form-group input::placeholder {
        color: rgba(255, 255, 255, 0.35);
    }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .input-hint { font-size: 0.72rem; color: rgba(255, 255, 255, 0.4); }

    /* Tailles t-shirt alignées */
    .size-options { gap: 8px; justify-content: center; }
    .size-label { width: 48px; height: 48px; font-size: 0.8rem; border-radius: 10px; }

    /* ===== CHECKBOXES - ALIGNEMENT PARFAIT ===== */
    .checkbox-option {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 14px;
        padding: 8px 0;
    }
    .checkbox-option input[type="checkbox"] {
        width: 22px;
        height: 22px;
        min-width: 22px;
        flex-shrink: 0;
        margin: 0;
        accent-color: var(--gold);
        cursor: pointer;
    }
    .checkbox-text {
        font-size: 0.85rem;
        flex: 1;
        line-height: 1.4;
    }

    .cashprize-list { flex-direction: column; }
    .cashprize-item { padding: 14px 10px; }
    .cashprize-item .amount { font-size: 1.3rem; }

    .form-submit { margin-top: 25px; padding-top: 25px; }
    .submit-summary { padding: 18px 14px; }
    .summary-line { font-size: 0.85rem; padding: 10px 0; }

    /* ===== MODAL ===== */
    .modal-content { padding: 25px 18px; width: 92%; border-radius: 16px; }
    .success-modal h2 { font-size: 1.8rem; }
    .share-buttons { flex-direction: column; gap: 8px; }
    .share-btn { width: 100%; }

    /* ===== FOOTER - PROPRE & CENTRÉ ===== */
    .footer {
        padding: 30px 5% 20px;
    }
    .footer-compact {
        padding: 28px 5% 24px;
    }
    .footer-logo .logo-icon { width: 60px; height: 60px; }
    .footer-social-link {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
    }
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-brand .logo {
        justify-content: center;
    }
    .footer-brand p {
        max-width: 280px;
        text-align: center;
        margin-top: 12px;
        font-size: 0.85rem;
        line-height: 1.6;
    }
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        width: 100%;
        text-align: center;
    }
    .footer-column {
        text-align: center;
    }
    .footer-column h4 {
        margin-bottom: 12px;
        font-size: 0.72rem;
        letter-spacing: 1.5px;
    }
    .footer-column a {
        padding: 6px 0;
        font-size: 0.82rem;
    }
    .footer-column a:hover { padding-left: 0; }
    .footer-bottom {
        margin-top: 20px;
        padding-top: 15px;
        font-size: 0.75rem;
    }

    /* ===== BUTTONS GLOBAL ===== */
    .btn-mega {
        padding: 14px 20px;
        font-size: 0.8rem;
        width: 100%;
        justify-content: center;
    }
    .btn-mega.large { padding: 15px 22px; font-size: 0.85rem; }
    .btn-mega.xlarge { padding: 16px 24px; font-size: 0.85rem; }
    .btn-secondary {
        padding: 12px 20px;
        font-size: 0.8rem;
        width: 100%;
        justify-content: center;
    }
}

/* --- Petit mobile (480px) --- */
@media (max-width: 480px) {
    .footer-links { grid-template-columns: 1fr; }
    .tshirt-showcase { max-width: 240px; }
    .tshirt-body { width: 170px; height: 220px; }
    .tshirt-glow { width: 180px; height: 180px; }
    .tshirt-label { font-size: 0.8rem; padding: 9px 18px; }
    .countdown-item { padding: 10px 8px; min-width: 48px; }
    .countdown-value { font-size: 1.4rem; }
    .countdown-sep { font-size: 1.4rem; }
}

/* --- Petit mobile (414px - iPhone 6/7/8 Plus, XR, 11, 12/13/14) --- */
@media (max-width: 414px) {
    .hero { padding: 70px 4% 25px; }
    .hero-title { font-size: clamp(1.8rem, 7vw, 2.2rem); }
    .hero-text { font-size: 0.85rem; }
    img.logo-icon { height: 2rem; width: 2rem; }
    .tshirt-showcase { max-width: 220px; }
    .tshirt-body { width: 160px; height: 210px; }
    .tshirt-label { font-size: 0.75rem; padding: 8px 16px; }
    .design-name { font-size: 1.8rem; letter-spacing: 3px; }
    .design-date { font-size: 0.65rem; }
    .design-event { font-size: 0.55rem; }
    img.design-logo { height: 4rem; width: 4rem; }
}

/* --- Très petit mobile (360px - Galaxy S, SE) --- */
@media (max-width: 360px) {
    .hero { padding: 65px 3% 20px; }
    .hero-title { font-size: 1.6rem; }
    .hero-text { font-size: 0.8rem; }
    img.logo-icon { height: 1.8rem; width: 1.8rem; }
    .countdown-item { padding: 8px 6px; min-width: 42px; }
    .countdown-value { font-size: 1.2rem; }
    .countdown-sep { font-size: 1.2rem; }
    .countdown-label { font-size: 0.45rem; }
    .tshirt-showcase { max-width: 200px; padding-bottom: 50px; }
    .tshirt-body { width: 150px; height: 190px; }
    .tshirt-glow { width: 160px; height: 160px; }
    .tshirt-label { font-size: 0.7rem; padding: 7px 14px; }
    .design-name { font-size: 1.5rem; letter-spacing: 2px; }
    img.design-logo { height: 3.5rem; width: 3.5rem; }
    .price-value { font-size: 2rem; }
}

/* --- Très très petit mobile (320px - iPhone SE 1st gen, iPhone 5) --- */
@media (max-width: 320px) {
    .hero { padding: 60px 3% 15px; gap: 15px; }
    .hero-title { font-size: 1.4rem; }
    .hero-alert { font-size: 0.5rem; padding: 6px 10px; }
    img.logo-icon { height: 1.6rem; width: 1.6rem; }
    .tshirt-showcase { max-width: 180px; padding-bottom: 45px; }
    .tshirt-body { width: 135px; height: 170px; }
    .tshirt-glow { width: 140px; height: 140px; }
    .tshirt-label { font-size: 0.65rem; padding: 6px 12px; }
    .design-name { font-size: 1.3rem; }
    img.design-logo { height: 3rem; width: 3rem; }
    .proof-number { font-size: 1.2rem; }
    .proof-label { font-size: 0.5rem; }
}

/* === Optimisations tactiles mobile === */
@media (hover: none) and (pointer: coarse) {
    .reward-card:hover, .level-card:hover, .testimonial:hover,
    .problem-card:hover, .detail-card:hover, .faq-item:hover,
    .countdown-item:hover { transform: none; }
    .btn-mega:active, .btn-cta:active, .btn-secondary:active {
        transform: scale(0.97);
        transition: transform 0.1s ease;
    }
    .scan-lines { display: none; }
    .tshirt-body { animation: none; }
    .hero-alert { animation: none; }
}

/* iOS input zoom fix */
@supports (-webkit-touch-callout: none) {
    input, select, textarea { font-size: 16px !important; }
}

/* === Bandeau Cookies === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0d0d12;
    border-top: 1px solid rgba(212, 168, 37, 0.3);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 99999;
    font-size: 0.8rem;
    color: #ccc;
    flex-wrap: wrap;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}
.cookie-banner a { color: #D4A825; text-decoration: underline; }
.cookie-banner button {
    background: var(--gradient-gold);
    color: #050505;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
}
.cookie-banner button:hover { opacity: 0.9; }
.cookie-banner.hidden { display: none; }