/* ═══════════════════════════════════════════════════════════
   🎨 POKEBOX PREHOME - PREMIUM LANDING PAGE HOLOGRAPHIQUE
   Version Optimisée - Palette Holographique
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&display=swap');

/* ═══════════════════════════════════════════════════════════
   VARIABLES HOLOGRAPHIQUES - NOUVELLE PALETTE
   ═══════════════════════════════════════════════════════════ */

:root {
    /* Couleurs - Dominante Holographique */
    --noir-profond: #0a0a0f;
    --noir-espace: #050508;
    --holo-cyan: #00d4ff;
    --holo-magenta: #FF1493;
    --holo-violet: #a48eff;
    --holo-bleu: #4169E1;
    --accent-or-subtil: #FFD700;
    --rose-neon: #FF1493;
    --rouge-feu: #ff3b30;
    --rouge-passion: #ff6b58;
    --vert-emeraude: #00e676;
    
    /* Gradients holographiques */
    --gradient-pokebox: linear-gradient(135deg, #00d4ff 0%, #a48eff 25%, #FF1493 50%, #4169E1 75%, #00d4ff 100%);
    --gradient-holo-primary: linear-gradient(135deg, #00d4ff 0%, #a48eff 50%, #FF1493 100%);
    --gradient-reverse: linear-gradient(135deg, #FF1493 0%, #a48eff 35%, #00d4ff 100%);
    --gradient-glass: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(164, 142, 255, 0.1) 100%);
    
    /* Typography */
    --font-titre: 'Orbitron', monospace;
    --font-texte: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --space-xs: 8px;
    --space-sm: 12px;
    --space-md: 20px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;
    --space-3xl: 96px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-capsule: 50px;
}

/* ═══════════════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════════════ */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-texte);
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff;
    background: var(--noir-espace);
    overflow-x: hidden;
    position: relative;
}

::selection {
    background: rgba(0, 212, 255, 0.3);
    color: white;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

::-webkit-scrollbar {
    width: 12px;
    background: var(--noir-espace);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #00d4ff 0%, #a48eff 100%);
    border-radius: 10px;
    border: 2px solid var(--noir-espace);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #a48eff 0%, #FF1493 100%);
}

/* ═══════════════════════════════════════════════════════════
   HEADER PREMIUM AVEC BURGER MENU
   ═══════════════════════════════════════════════════════════ */

.prehome-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(5, 5, 8, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 212, 255, 0.15);
    transition: all 0.3s ease;
    overflow: visible; /* ← CRITIQUE: permet au dropdown de dépasser */
}

.prehome-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-pokebox);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.prehome-header.scrolled::before {
    opacity: 1;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-xl);
    overflow: visible; /* ← CRITIQUE: permet au dropdown de dépasser */
}

.header-logo {
    font-family: var(--font-titre);
    font-size: 1.5rem;
    font-weight: 900;
    background: var(--gradient-holo-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: holoShift 4s ease infinite;
    text-decoration: none;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1001;
        height: 70px;

}

.header-logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-holo-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.header-logo:hover::after {
    transform: scaleX(1);
}

/* Navigation Desktop */
.header-nav {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    position: relative;
    transition: all 0.3s ease;
    padding: var(--space-xs) 0;
}

.header-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-holo-primary);
    transition: width 0.3s ease;
}

.header-nav a:hover {
    color: var(--holo-cyan);
}

.header-nav a:hover::before {
    width: 100%;
}

/* Burger Menu Button */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    z-index: 1001;
}

.burger-menu:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.4);
}

.burger-line {
    width: 24px;
    height: 2px;
    background: var(--gradient-holo-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Sélecteur de Langue */
.language-selector {
    position: relative;
    z-index: 1002;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-md);
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: var(--radius-capsule);
    color: var(--holo-cyan);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lang-toggle:hover {
    background: rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.lang-flag {
    font-size: 1.2rem;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: var(--radius-md);
    padding: var(--space-xs);
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 10000;
}

.language-selector.active .lang-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
    font-size: 0.9rem;
    cursor: pointer;
}

.lang-option:hover {
    background: rgba(0, 212, 255, 0.1);
    color: var(--holo-cyan);
}

.lang-option.active {
    background: rgba(0, 212, 255, 0.15);
    color: var(--holo-cyan);
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION - IMMERSIF
   ═══════════════════════════════════════════════════════════ */

.prehome-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    margin-top:30px;
    background: 
        radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(164, 142, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(255, 20, 147, 0.05) 0%, transparent 40%),
        var(--noir-espace);
    padding: 80px 0 var(--space-xl) 0;
}

.hero-particles {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(2px 2px at 20% 30%, rgba(0, 212, 255, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(164, 142, 255, 0.3), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 20, 147, 0.3), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(65, 105, 225, 0.3), transparent);
    background-size: 200px 200px, 300px 300px, 250px 250px, 280px 280px;
    background-position: 0 0, 40px 60px, 130px 270px, 70px 100px;
    animation: particlesMove 60s linear infinite;
    pointer-events: none;
}

@keyframes particlesMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 100%;
    width: 100%;
    padding: 0;
    animation: fadeInUp 1.5s ease-out;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.hero-content a,
.hero-content button {
    pointer-events: all;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-top-content {
    width: 100%;
    padding: 0 var(--space-md);
    margin-bottom: 0;
}

.hero-bottom-content {
    width: 100%;
    padding: 0 var(--space-md);
    margin-top: 0;
}

/* ═══════════════════════════════════════════════════════════
   CONTAINER 3D - IMMENSE ET PLEINE LARGEUR
   ═══════════════════════════════════════════════════════════ */

#hero-3d-container {
    width: 100vw;
    max-width: 100vw;
    height: 700px;
    position: relative;
    z-index: 1;
    margin: 0;
    border-radius: 0;
    overflow: visible !important;
}

#hero-3d-container canvas {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 0;
    box-shadow: 
        0 0 150px rgba(0, 212, 255, 0.3),
        0 0 300px rgba(164, 142, 255, 0.2);
}

/* ═══════════════════════════════════════════════════════════
   TITRES & TEXTES HERO
   ═══════════════════════════════════════════════════════════ */

.hero-title {
font-family: var(--font-titre);
    font-size: clamp(1.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: var(--space-xs);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
    animation: titleGlow 3s ease-in-out infinite;
}

.title-highlight {
    background: var(--gradient-holo-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: holoShift 4s ease infinite, titleGlow 3s ease-in-out infinite;
    position: relative;
}

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

@keyframes titleGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.6));
    }
    50% { 
        filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.9)) drop-shadow(0 0 60px rgba(164, 142, 255, 0.5));
    }
}

.hero-translations {
    margin-bottom: var(--space-sm);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-sm);
    animation: fadeIn 2s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-jp {
    font-family: 'Noto Sans JP', sans-serif;
}

.hero-tagline {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
    animation: fadeIn 2.5s ease-out;
}

.hero-stats {
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-md);
    padding: var(--space-md);
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
}

.hero-launch-date {
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.7);
    margin-top: var(--space-md);
}

/* ═══════════════════════════════════════════════════════════
   BOUTON HERO
   ═══════════════════════════════════════════════════════════ */

.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 1.5rem 3rem;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-titre);
    background: var(--gradient-holo-primary);
    background-size: 200% 200%;
    color: #ffffff;
    border: none;
    border-radius: var(--radius-capsule);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(0, 212, 255, 0.4), 
        0 0 80px rgba(0, 212, 255, 0.2),
        inset 0 0 60px rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: btnPulse 3s ease-in-out infinite, holoShift 6s ease infinite;
}

.btn-hero::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-pokebox);
    border-radius: var(--radius-capsule);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-hero:hover::before {
    opacity: 1;
}

@keyframes btnPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 10px 40px rgba(0, 212, 255, 0.4), 0 0 80px rgba(0, 212, 255, 0.2);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 15px 60px rgba(0, 212, 255, 0.6), 0 0 120px rgba(0, 212, 255, 0.4), 0 0 180px rgba(164, 142, 255, 0.3);
    }
}

.btn-hero:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 
        0 20px 80px rgba(0, 212, 255, 0.8), 
        0 0 150px rgba(0, 212, 255, 0.5),
        0 0 200px rgba(164, 142, 255, 0.4);
}

.btn-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: translateX(-100%);
    animation: btnGlowSlide 3s ease-in-out infinite;
}

@keyframes btnGlowSlide {
    0% { transform: translateX(-100%); }
    50%, 100% { transform: translateX(200%); }
}

/* ═══════════════════════════════════════════════════════════
   SECTIONS COMMUNES
   ═══════════════════════════════════════════════════════════ */

section {
    padding: var(--space-3xl) 0;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-title {
    font-family: var(--font-titre);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    background: var(--gradient-holo-primary);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-md);
    line-height: 1.2;
    animation: holoShift 6s ease infinite;
    position: relative;
}

.section-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════
   SECTION CONCEPT
   ═══════════════════════════════════════════════════════════ */

.section-concept {
    background: linear-gradient(180deg, transparent 0%, rgba(26, 26, 36, 0.3) 50%, transparent 100%);
}

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

.concept-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(164, 142, 255, 0.05) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 212, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.concept-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-pokebox);
    opacity: 0;
    transition: opacity 0.5s ease;
    mix-blend-mode: overlay;
}

.concept-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 212, 255, 0.1) 50%, transparent 70%);
    transform: rotate(45deg);
    animation: shimmer 3s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.5s ease;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.concept-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--holo-cyan);
    box-shadow: 
        0 20px 60px rgba(0, 212, 255, 0.3),
        0 0 100px rgba(0, 212, 255, 0.2),
        inset 0 0 60px rgba(0, 212, 255, 0.05);
}

.concept-card:hover::before {
    opacity: 0.15;
}

.concept-card:hover::after {
    opacity: 1;
}

.concept-icon {
    font-size: 4rem;
    margin-bottom: var(--space-md);
    display: inline-block;
    animation: iconFloat 3s ease-in-out infinite;
}

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

.concept-card h3 {
    font-family: var(--font-titre);
    font-size: 1.5rem;
    background: var(--gradient-holo-primary);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-sm);
    animation: holoShift 6s ease infinite;
}

.concept-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   SECTION TIMELINE
   ═══════════════════════════════════════════════════════════ */

.section-timeline {
    background: radial-gradient(circle at 50% 50%, rgba(164, 142, 255, 0.05) 0%, transparent 70%);
}

.prize-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.03) 0%, rgba(164, 142, 255, 0.05) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid transparent;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    animation: float 3s ease-in-out infinite;
}

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

.prize-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: var(--gradient-pokebox);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.prize-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(164, 142, 255, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.prize-card:hover::before {
    opacity: 0.3;
}

.prize-card:hover::after {
    opacity: 1;
}

.prize-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 
        0 20px 60px rgba(0, 212, 255, 0.3),
        0 0 100px rgba(164, 142, 255, 0.2);
}

.prize-rarity {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.rarity-legendary {
    background: linear-gradient(135deg, #ff3b30 0%, #ff6b58 100%);
    box-shadow: 0 5px 20px rgba(255, 59, 48, 0.5), 0 0 40px rgba(255, 59, 48, 0.3);
}

.rarity-rare {
    background: linear-gradient(135deg, #00d4ff 0%, #a48eff 100%);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.5), 0 0 40px rgba(0, 212, 255, 0.3);
}

/* ═══════════════════════════════════════════════════════════
   SECTION TRANSPARENCE
   ═══════════════════════════════════════════════════════════ */

.section-transparency {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 176, 255, 0.03) 50%, transparent 100%);
}

.transparency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.transparency-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.03) 0%, rgba(164, 142, 255, 0.05) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(164, 142, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.transparency-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-pokebox);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.transparency-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.transparency-card:hover::before {
    transform: scaleX(1);
}

.transparency-card:hover::after {
    opacity: 1;
}

.transparency-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--holo-violet);
    box-shadow: 
        0 20px 60px rgba(164, 142, 255, 0.3),
        0 0 100px rgba(0, 212, 255, 0.2);
}

.card-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(164, 142, 255, 0.15) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid var(--holo-violet);
    border-radius: 50%;
    margin: 0 auto var(--space-md);
    box-shadow: 
        0 10px 30px rgba(164, 142, 255, 0.3),
        0 0 60px rgba(0, 212, 255, 0.2),
        inset 0 0 30px rgba(0, 212, 255, 0.1);
    position: relative;
}

.card-badge::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--gradient-pokebox);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: blur(10px);
}

.transparency-card:hover .card-badge::before {
    opacity: 0.6;
}

.transparency-card h3 {
    font-family: var(--font-titre);
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--holo-violet) 0%, #00d4ff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-sm);
    animation: holoShift 6s ease infinite;
}

.transparency-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* Process Steps */
.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.03) 0%, rgba(164, 142, 255, 0.05) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 15px;
    border: 1px solid rgba(0, 176, 255, 0.2);
    margin-bottom: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 212, 255, 0.1) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.process-step:hover::before {
    transform: translateX(100%);
}

.process-step:hover {
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 
        0 10px 40px rgba(0, 212, 255, 0.2),
        0 0 60px rgba(0, 212, 255, 0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff 0%, #a48eff 100%);
    color: #fff;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'Orbitron', monospace;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4), 0 0 40px rgba(164, 142, 255, 0.3);
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff 0%, #a48eff 100%);
    z-index: -1;
    filter: blur(8px);
    opacity: 0.6;
}

/* ═══════════════════════════════════════════════════════════
   SECTION DROP
   ═══════════════════════════════════════════════════════════ */

.section-drop {
    position: relative;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 59, 48, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
    padding: var(--space-3xl) 0;
}

.drop-background {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 59, 48, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    animation: dropBgFloat 15s ease-in-out infinite;
}

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

.drop-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.drop-badge {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    background: linear-gradient(135deg, var(--rouge-feu) 0%, var(--rouge-passion) 100%);
    color: white;
    font-family: var(--font-titre);
    font-weight: 800;
    font-size: 1.25rem;
    border-radius: var(--radius-capsule);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    box-shadow: 
        0 10px 30px rgba(255, 59, 48, 0.4),
        0 0 60px rgba(255, 59, 48, 0.3);
    margin-bottom: var(--space-md);
    animation: badgePulse 2s ease-in-out infinite;
    position: relative;
}

.drop-badge::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--rouge-feu) 0%, var(--rouge-passion) 100%);
    border-radius: var(--radius-capsule);
    z-index: -1;
    filter: blur(10px);
    opacity: 0.6;
}

@keyframes badgePulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(255, 59, 48, 0.4), 0 0 60px rgba(255, 59, 48, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 15px 50px rgba(255, 59, 48, 0.6), 0 0 100px rgba(255, 59, 48, 0.5);
    }
}

.drop-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.drop-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    max-width: 1000px;
    margin: 0 auto var(--space-2xl);
}

.drop-detail {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(164, 142, 255, 0.03) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
}

.drop-detail:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(164, 142, 255, 0.08) 100%);
    border-color: var(--holo-cyan);
    transform: translateY(-5px);
    box-shadow: 
        0 10px 30px rgba(0, 212, 255, 0.3),
        0 0 60px rgba(0, 212, 255, 0.15);
}

.detail-icon {
    font-size: 3rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.detail-content h4 {
    font-family: var(--font-titre);
    font-size: 1.125rem;
    background: var(--gradient-holo-primary);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-xs);
    animation: holoShift 6s ease infinite;
}

.detail-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.drop-teaser {
    text-align: center;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-style: italic;
}

/* ═══════════════════════════════════════════════════════════
   SECTION REGISTER
   ═══════════════════════════════════════════════════════════ */

.section-register {
    background: 
        radial-gradient(circle at 50% 50%, rgba(0, 230, 118, 0.05) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    padding: var(--space-3xl) 0;
}

.register-card {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.03) 0%, rgba(164, 142, 255, 0.05) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    padding: var(--space-3xl) var(--space-xl);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: 
        0 20px 80px rgba(0, 212, 255, 0.2),
        0 0 100px rgba(164, 142, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.register-card::before {
    content: '';
    position: absolute;
    inset: -100px;
    background: conic-gradient(
        from 0deg at 50% 50%,
        transparent 0deg,
        rgba(0, 212, 255, 0.1) 90deg,
        transparent 180deg,
        rgba(164, 142, 255, 0.1) 270deg,
        transparent 360deg
    );
    animation: registerRotate 8s linear infinite;
}

@keyframes registerRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.register-title {
    font-family: var(--font-titre);
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    background: var(--gradient-holo-primary);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-md);
    animation: holoShift 6s ease infinite;
    position: relative;
    z-index: 1;
}

.register-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 1;
}

.register-alert {
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    text-align: center;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.alert-success {
    background: rgba(0, 230, 118, 0.1);
    border: 2px solid var(--vert-emeraude);
    color: var(--vert-emeraude);
}

.alert-error {
    background: rgba(255, 59, 48, 0.1);
    border: 2px solid var(--rouge-feu);
    color: var(--rouge-feu);
}

.alert-info {
    background: rgba(0, 176, 255, 0.1);
    border: 2px solid var(--holo-cyan);
    color: var(--holo-cyan);
}

.register-form {
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: rgba(255, 255, 255, 0.9);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: var(--space-md);
    background: rgba(15, 15, 20, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: var(--radius-md);
    color: white;
    font-size: 1rem;
    font-family: var(--font-texte);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--holo-cyan);
    background: rgba(15, 15, 20, 0.9);
    box-shadow: 
        0 0 0 3px rgba(0, 212, 255, 0.1), 
        0 0 30px rgba(0, 212, 255, 0.3),
        inset 0 0 20px rgba(0, 212, 255, 0.05);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.form-checkbox input[type="checkbox"] {
    width: 24px;
    height: 24px;
    cursor: pointer;
    accent-color: var(--holo-cyan);
}

.form-checkbox label {
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
}

.btn-register {
    width: 100%;
    padding: var(--space-md) var(--space-xl);
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-titre);
    background: var(--gradient-holo-primary);
    background-size: 200% 200%;
    color: #ffffff;
    border: none;
    border-radius: var(--radius-capsule);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(0, 212, 255, 0.4),
        0 0 60px rgba(0, 212, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: holoShift 6s ease infinite;
}

.btn-register::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-pokebox);
    border-radius: var(--radius-capsule);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-register:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 60px rgba(0, 212, 255, 0.6),
        0 0 100px rgba(0, 212, 255, 0.4);
}

.btn-register:hover::before {
    opacity: 1;
}

.btn-register:active {
    transform: translateY(-1px);
}

.btn-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: translateX(-100%);
}

.btn-register:hover .btn-shine {
    animation: shineSlide 0.8s ease-out;
}

@keyframes shineSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

.register-privacy {
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: var(--space-md);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER PROFESSIONNEL
   ═══════════════════════════════════════════════════════════ */

.prehome-footer {
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 15, 0.8) 100%);
    border-top: 1px solid rgba(0, 212, 255, 0.15);
    padding: var(--space-3xl) 0 var(--space-lg);
    position: relative;
}

.prehome-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-pokebox);
    opacity: 0.3;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-section h3 {
    font-family: var(--font-titre);
    font-size: 1.25rem;
    background: var(--gradient-holo-primary);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-md);
    animation: holoShift 6s ease infinite;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--holo-cyan);
}

.footer-links a:hover {
    color: var(--holo-cyan);
    padding-left: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-social {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    color: var(--holo-cyan);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(0, 212, 255, 0.15);
    border-color: var(--holo-cyan);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-logo {
    font-family: var(--font-titre);
    font-weight: 700;
    background: var(--gradient-holo-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ═══════════════════════════════════════════════════════════
   PARTICULES GLOBALES
   ═══════════════════════════════════════════════════════════ */

.global-particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.global-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    animation: particleFloat 6s linear infinite;
    opacity: 0;
}

.global-particles .particle:nth-child(odd) {
    background: radial-gradient(circle, #00d4ff 0%, transparent 70%);
    box-shadow: 0 0 10px #00d4ff, 0 0 20px #00d4ff;
}

.global-particles .particle:nth-child(even) {
    background: radial-gradient(circle, #a48eff 0%, transparent 70%);
    box-shadow: 0 0 10px #a48eff, 0 0 20px #a48eff;
}

.global-particles .particle:nth-child(3n) {
    background: radial-gradient(circle, #FF1493 0%, transparent 70%);
    box-shadow: 0 0 10px #FF1493, 0 0 20px #FF1493;
}

@keyframes particleFloat {
    0% { 
        transform: translateY(100vh) scale(0.2);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% { 
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .header-container {
        padding: var(--space-md);
    }
    
    .header-nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        flex-direction: column;
        background: rgba(5, 5, 8, 0.98);
        backdrop-filter: blur(20px);
        padding: var(--space-xl);
        border-left: 1px solid rgba(0, 212, 255, 0.2);
        gap: var(--space-lg);
        transition: right 0.4s ease;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
    }
    
    .header-nav.active {
        right: 0;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .language-selector {
        width: 100%;
    }
    
    .lang-toggle {
        width: 100%;
        justify-content: center;
    }
    
    .prehome-hero {
        padding: 60px 0 var(--space-xl) 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 0.95rem;
    }
    
    .btn-hero {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .concept-grid,
    .transparency-grid {
        grid-template-columns: 1fr;
    }
    
    .register-card {
        padding: var(--space-xl) var(--space-md);
    }
    
    #hero-3d-container {
        height: 450px;
        width: 100vw;
        max-width: 100vw;
    }
    
    .hero-content {
        gap: var(--space-xs);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

/* ═══════════════════════════════════════════════════════════
   POKEBOX - STYLES POKÉMON ADDITIONNELS
   Effets cristaux, badges de séries, glassmorphism
   ═══════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════
   EFFETS CRISTAUX & TEXTES HOLOGRAPHIQUES
   ═══════════════════════════════════════════════════════════ */

.crystal-text {
    background: linear-gradient(135deg, 
        #00F6FF 0%, 
        #C25CFF 25%, 
        #E3C370 50%, 
        #FF7A4A 75%, 
        #00F6FF 100%
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: crystalShimmer 8s ease-in-out infinite;
    position: relative;
}

.crystal-text::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(135deg, 
        rgba(0, 246, 255, 0.3) 0%, 
        rgba(194, 92, 255, 0.3) 50%, 
        rgba(227, 195, 112, 0.3) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    filter: blur(8px);
}

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

.crystal-border {
    position: relative;
    overflow: hidden;
}

.crystal-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, 
        #00F6FF 0%, 
        #C25CFF 25%, 
        #E3C370 50%, 
        #FF7A4A 75%, 
        #00F6FF 100%
    );
    background-size: 400% 400%;
    border-radius: inherit;
    z-index: -1;
    animation: crystalBorder 6s ease-in-out infinite;
    opacity: 0.6;
}

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

/* ═══════════════════════════════════════════════════════════
   BADGES DE SÉRIES STYLE CARTE POKÉMON
   ═══════════════════════════════════════════════════════════ */

.booster-badge {
    display: inline-block;
    padding: 8px 16px;
    background: #000;
    border: 1px solid #FFF;
    border-radius: 8px;
    box-shadow: 
        inset 0 0 0 1px rgba(85, 85, 85, 0.8),
        0 4px 12px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.booster-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    animation: badgeShine 8s linear infinite;
}

@keyframes badgeShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.series-code {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 0.9rem;
    color: #FFF;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 1;
}

.booster-badge:hover {
    transform: scale(1.05);
    box-shadow: 
        inset 0 0 0 1px rgba(85, 85, 85, 0.8),
        0 0 20px rgba(0, 246, 255, 0.5),
        0 4px 16px rgba(0, 0, 0, 0.7);
}

/* Variantes de couleur pour différentes raretés */
.booster-badge.legendary {
    border-color: #E3C370;
    box-shadow: 
        inset 0 0 0 1px rgba(227, 195, 112, 0.5),
        0 0 20px rgba(227, 195, 112, 0.3);
}

.booster-badge.rare {
    border-color: #FF7A4A;
    box-shadow: 
        inset 0 0 0 1px rgba(255, 122, 74, 0.5),
        0 0 20px rgba(255, 122, 74, 0.3);
}

.booster-badge.ultra {
    border-color: #C25CFF;
    box-shadow: 
        inset 0 0 0 1px rgba(194, 92, 255, 0.5),
        0 0 20px rgba(194, 92, 255, 0.3);
}

.booster-badge.premium {
    border-color: #00F6FF;
    box-shadow: 
        inset 0 0 0 1px rgba(0, 246, 255, 0.5),
        0 0 20px rgba(0, 246, 255, 0.3);
}

/* ═══════════════════════════════════════════════════════════
   GLASSMORPHISM CARDS
   ═══════════════════════════════════════════════════════════ */

.glass-card {
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 246, 255, 0.3);
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(0, 246, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* ═══════════════════════════════════════════════════════════
   SECTION TREASURES (GRILLE DE BOOSTERS)
   ═══════════════════════════════════════════════════════════ */

.section-treasures {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(10, 10, 15, 1) 100%
    );
}

.boosters-showcase {
    margin: 60px 0;
}

.boosters-intro {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 40px;
}

.boosters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin: 40px 0;
    justify-items: center;
}

/* ═══════════════════════════════════════════════════════════
   TABLEAU DE DISTRIBUTION
   ═══════════════════════════════════════════════════════════ */

.distribution-section {
    margin-top: 80px;
}

.distribution-title {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #00b0ff 0%, #a48eff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.distribution-intro {
    text-align: center;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 40px;
}

.distribution-table-container {
    overflow-x: auto;
    margin: 40px 0;
}

.distribution-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(10, 10, 15, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
}

.distribution-table thead {
    background: rgba(0, 176, 255, 0.1);
}

.distribution-table th {
    padding: 20px;
    text-align: left;
    font-family: 'Orbitron', monospace;
    font-size: 0.95rem;
    color: #00b0ff;
    font-weight: 700;
    border-bottom: 2px solid rgba(0, 176, 255, 0.3);
}

.distribution-table td {
    padding: 20px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.distribution-table tbody tr {
    transition: all 0.3s ease;
}

.distribution-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* Couleurs par rareté */
.rarity-legendary {
    border-left: 4px solid #E3C370;
}

.rarity-legendary:hover {
    background: rgba(227, 195, 112, 0.05) !important;
}

.rarity-extra-premium {
    border-left: 4px solid #FF7A4A;
}

.rarity-extra-premium:hover {
    background: rgba(255, 122, 74, 0.05) !important;
}

.rarity-ultra-premium {
    border-left: 4px solid #C25CFF;
}

.rarity-ultra-premium:hover {
    background: rgba(194, 92, 255, 0.05) !important;
}

.rarity-premium {
    border-left: 4px solid #00F6FF;
}

.rarity-premium:hover {
    background: rgba(0, 246, 255, 0.05) !important;
}

.rarity-icon {
    font-size: 1.3rem;
    margin-right: 8px;
}

/* ═══════════════════════════════════════════════════════════
   VALUE DISTRIBUTION BOX
   ═══════════════════════════════════════════════════════════ */

.value-distribution {
    margin: 60px 0;
    padding: 40px;
}

.value-distribution h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: #00b0ff;
    margin-bottom: 20px;
    text-align: center;
}

.value-distribution p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: center;
}

.value-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.value-list li {
    padding: 15px 20px;
    margin: 12px 0;
    background: rgba(0, 176, 255, 0.05);
    border-left: 3px solid #00b0ff;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.value-list li:hover {
    background: rgba(0, 176, 255, 0.1);
    border-left-width: 5px;
    transform: translateX(5px);
}

.closing-statement {
    margin-top: 50px;
    padding: 35px;
    background: linear-gradient(135deg, 
        rgba(0, 176, 255, 0.08) 0%, 
        rgba(164, 142, 255, 0.08) 100%
    );
    border: 2px solid rgba(0, 176, 255, 0.3);
    border-radius: 20px;
    text-align: center;
}

.closing-statement p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   TIMELINE BLOCKCHAIN
   ═══════════════════════════════════════════════════════════ */

.timeline-blockchain {
    position: relative;
    padding: 40px 0;
}

.timeline-blockchain::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        #00F6FF 20%, 
        #C25CFF 50%, 
        #E3C370 80%, 
        transparent 100%
    );
    transform: translateX(-50%);
}

.timeline-step {
    display: flex;
    align-items: center;
    margin: 60px 0;
    position: relative;
}

.timeline-step:nth-child(odd) {
    flex-direction: row;
}

.timeline-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: rgba(10, 10, 15, 0.9);
    border: 3px solid #00F6FF;
    border-radius: 50%;
    box-shadow: 
        0 0 30px rgba(0, 246, 255, 0.4),
        inset 0 0 20px rgba(0, 246, 255, 0.1);
    z-index: 2;
    position: relative;
}

.step-content {
    flex: 1;
    margin: 0 40px;
    max-width: 500px;
}

.timeline-step:nth-child(odd) .step-content {
    margin-right: 60px;
    text-align: right;
}

.timeline-step:nth-child(even) .step-content {
    margin-left: 60px;
    text-align: left;
}

.step-content h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    color: #00F6FF;
    margin-bottom: 15px;
}

.step-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS SECTION
   ═══════════════════════════════════════════════════════════ */

.section-how-it-works {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.95);
}

.how-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.how-step {
    position: relative;
    padding: 40px 30px;
    text-align: center;
}

.how-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    background: linear-gradient(135deg, #00F6FF 0%, #C25CFF 100%);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(0, 246, 255, 0.4);
}

.how-content h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    color: #00F6FF;
    margin-bottom: 15px;
}

.how-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.preorder-notice {
    margin-top: 60px;
    padding: 35px;
    text-align: center;
    background: rgba(255, 122, 74, 0.1);
    border: 2px solid rgba(255, 122, 74, 0.3);
}

.preorder-notice p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   DROP SECTION
   ═══════════════════════════════════════════════════════════ */

.section-drop {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, 
        rgba(255, 59, 48, 0.1) 0%, 
        rgba(255, 107, 88, 0.1) 100%
    );
}

.drop-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 59, 48, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 107, 88, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.drop-header {
    text-align: center;
    margin-bottom: 60px;
}

.drop-badge {
    display: inline-block;
    padding: 12px 35px;
    background: linear-gradient(135deg, #ff3b30 0%, #ff6b58 100%);
    border-radius: 50px;
    font-family: 'Orbitron', monospace;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    margin-bottom: 25px;
    box-shadow: 0 0 40px rgba(255, 59, 48, 0.5);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 40px rgba(255, 59, 48, 0.5); }
    50% { transform: scale(1.05); box-shadow: 0 0 60px rgba(255, 59, 48, 0.7); }
}

.drop-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 50px 40px;
}

.drop-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 40px;
}

.drop-counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 59, 48, 0.1);
    border: 2px solid rgba(255, 59, 48, 0.3);
    border-radius: 16px;
}

.counter-label {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.counter-value {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 700;
    color: #ff3b30;
    text-shadow: 0 0 30px rgba(255, 59, 48, 0.6);
}

.btn-drop {
    display: inline-block;
    padding: 18px 45px;
    margin-top: 30px;
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    background: linear-gradient(135deg, #ff3b30 0%, #ff6b58 100%);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 10px 40px rgba(255, 59, 48, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-drop:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255, 59, 48, 0.6);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .timeline-blockchain::before {
        left: 40px;
    }
    
    .timeline-step {
        flex-direction: row !important;
    }
    
    .timeline-step:nth-child(odd) .step-content,
    .timeline-step:nth-child(even) .step-content {
        margin-left: 60px;
        text-align: left;
    }
    
    .step-icon {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .boosters-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 15px;
    }
    
    .distribution-table {
        font-size: 0.85rem;
    }
    
    .distribution-table th,
    .distribution-table td {
        padding: 12px 8px;
    }
    
    .timeline-blockchain::before {
        left: 20px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .timeline-step:nth-child(odd) .step-content,
    .timeline-step:nth-child(even) .step-content {
        margin-left: 40px;
    }
    
    .how-timeline {
        grid-template-columns: 1fr;
    }
}
/* ═══════════════════════════════════════════════════════════
   ⚡ POKEBOX.IO - VERSION 2.0 SPECTACULAR ⚡
   Éclairs massifs en arrière-plan + Cristaux diamants
   ═══════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════
   VARIABLES POKEMON
   ═══════════════════════════════════════════════════════════ */

:root {
    --pikachu-jaune: #FFD700;
    --pikachu-electrique: #FFEB3B;
    --terastal-cyan: #00F6FF;
    --terastal-violet: #a48eff;
    --terastal-rose: #FF1493;
    --terastal-or: #FFD700;
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION - ÉCLAIRS MASSIFS EN ARRIÈRE-PLAN ⚡
   ═══════════════════════════════════════════════════════════ */

.prehome-hero {
    position: relative;
    overflow: hidden;
}

/* GROS ÉCLAIR DIAGONAL 1 - DERRIÈRE LE CONTENU */
.prehome-hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: 15%;
    width: 6px;
    height: 130%;
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(255, 235, 59, 0.4) 15%,
        rgba(255, 235, 59, 0.7) 30%,
        rgba(255, 235, 59, 0.9) 50%,
        rgba(255, 235, 59, 0.7) 70%,
        rgba(255, 235, 59, 0.4) 85%,
        transparent 100%
    );
    transform: rotate(-20deg);
    box-shadow: 
        0 0 40px rgba(255, 235, 59, 0.8),
        0 0 80px rgba(255, 235, 59, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.6);
    animation: eclair-pulse-1 5s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

/* GROS ÉCLAIR DIAGONAL 2 - DERRIÈRE LE CONTENU */
.prehome-hero::after {
    content: '';
    position: absolute;
    top: -10%;
    right: 20%;
    width: 5px;
    height: 130%;
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(255, 235, 59, 0.3) 15%,
        rgba(255, 235, 59, 0.6) 30%,
        rgba(255, 235, 59, 0.8) 50%,
        rgba(255, 235, 59, 0.6) 70%,
        rgba(255, 235, 59, 0.3) 85%,
        transparent 100%
    );
    transform: rotate(18deg);
    box-shadow: 
        0 0 40px rgba(255, 235, 59, 0.8),
        0 0 80px rgba(255, 235, 59, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.6);
    animation: eclair-pulse-2 6s ease-in-out infinite 1.5s;
    z-index: 0;
    pointer-events: none;
}

@keyframes eclair-pulse-1 {
    0%, 100% { 
        opacity: 0.6;
        transform: rotate(-20deg) translateX(0);
    }
    50% { 
        opacity: 1;
        transform: rotate(-20deg) translateX(-15px);
    }
}

@keyframes eclair-pulse-2 {
    0%, 100% { 
        opacity: 0.5;
        transform: rotate(18deg) translateX(0);
    }
    50% { 
        opacity: 1;
        transform: rotate(18deg) translateX(15px);
    }
}

/* ÉCLAIR HORIZONTAL GAUCHE - DERRIÈRE */
.hero-particles::before {
    content: '';
    position: absolute;
    top: 25%;
    left: -50px;
    width: 400px;
    height: 3px;
    background: linear-gradient(90deg, 
        rgba(255, 235, 59, 0.7) 0%,
        rgba(255, 235, 59, 0.9) 30%,
        rgba(255, 235, 59, 0.6) 60%,
        transparent 100%
    );
    box-shadow: 
        0 0 30px rgba(255, 235, 59, 0.8),
        0 0 60px rgba(255, 235, 59, 0.4);
    animation: eclair-horizontal-1 4s ease-in-out infinite;
    z-index: 0;
}

/* ÉCLAIR HORIZONTAL DROIT - DERRIÈRE */
.hero-particles::after {
    content: '';
    position: absolute;
    top: 70%;
    right: -50px;
    width: 400px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 235, 59, 0.6) 40%,
        rgba(255, 235, 59, 0.9) 70%,
        rgba(255, 235, 59, 0.7) 100%
    );
    box-shadow: 
        0 0 30px rgba(255, 235, 59, 0.8),
        0 0 60px rgba(255, 235, 59, 0.4);
    animation: eclair-horizontal-2 4s ease-in-out infinite 2s;
    z-index: 0;
}

@keyframes eclair-horizontal-1 {
    0%, 100% { 
        opacity: 0.5;
        transform: scaleX(1);
    }
    50% { 
        opacity: 1;
        transform: scaleX(1.2);
    }
}

@keyframes eclair-horizontal-2 {
    0%, 100% { 
        opacity: 0.5;
        transform: scaleX(1);
    }
    50% { 
        opacity: 1;
        transform: scaleX(1.2);
    }
}

/* ═══════════════════════════════════════════════════════════
   CRISTAUX DIAMANTS - FORME RÉALISTE 💎
   ═══════════════════════════════════════════════════════════ */


/* ═══════════════════════════════════════════════════════════
   SECTION CONCEPT - ÉCLAIRS VRAIS + CRISTAUX 💎
   ═══════════════════════════════════════════════════════════ */

.section-concept {
    position: relative;
}

/* Éclair vertical gauche - DERRIÈRE */
.section-concept::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(255, 235, 59, 0.3) 20%,
        rgba(255, 235, 59, 0.6) 50%,
        rgba(255, 235, 59, 0.3) 80%,
        transparent 100%
    );
    box-shadow: 0 0 30px rgba(255, 235, 59, 0.6);
    animation: eclair-vertical-pulse 4s ease-in-out infinite;
    z-index: 0;
}

/* Éclair vertical droit - DERRIÈRE */
.section-concept::after {
    content: '';
    position: absolute;
    top: 0;
    right: 20%;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(255, 235, 59, 0.3) 20%,
        rgba(255, 235, 59, 0.6) 50%,
        rgba(255, 235, 59, 0.3) 80%,
        transparent 100%
    );
    box-shadow: 0 0 30px rgba(255, 235, 59, 0.6);
    animation: eclair-vertical-pulse 4s ease-in-out infinite 2s;
    z-index: 0;
}

@keyframes eclair-vertical-pulse {
    0%, 100% { 
        opacity: 0.4;
    }
    50% { 
        opacity: 1;
    }
}


/* ═══════════════════════════════════════════════════════════
   SECTION TREASURES - CRISTAUX MASSIFS 💎
   ═══════════════════════════════════════════════════════════ */

.section-treasures {
    position: relative;
}

/* Grand cristal gauche - VIOLET */
.section-treasures::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 3%;
    width: 150px;
    height: 180px;
    background: linear-gradient(135deg, 
        rgba(164, 142, 255, 0.4) 0%,
        rgba(164, 142, 255, 0.6) 50%,
        rgba(164, 142, 255, 0.4) 100%
    );
    clip-path: polygon(50% 0%, 80% 20%, 100% 50%, 80% 80%, 50% 100%, 20% 80%, 0% 50%, 20% 20%);
    animation: cristal-treasures-1 8s ease-in-out infinite;
    z-index: 0;
    box-shadow: 0 0 50px rgba(164, 142, 255, 0.5);
    filter: drop-shadow(0 0 30px rgba(164, 142, 255, 0.4));
    pointer-events: none;
}


/* Cristaux supplémentaires dans la zone boosters */
.boosters-showcase {
    position: relative;
}

.boosters-showcase::before {
    content: '';
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 100px;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.5) 0%,
        rgba(255, 215, 0, 0.7) 50%,
        rgba(255, 215, 0, 0.5) 100%
    );
    clip-path: polygon(50% 0%, 80% 20%, 100% 50%, 80% 80%, 50% 100%, 20% 80%, 0% 50%, 20% 20%);
    animation: cristal-boosters 6s ease-in-out infinite;
    z-index: 0;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.4));
    pointer-events: none;
}

@keyframes cristal-boosters {
    0%, 100% { 
        transform: translateX(-50%) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: translateX(-50%) rotate(360deg) scale(1.2);
        opacity: 1;
    }
}

/* ═══════════════════════════════════════════════════════════
   SECTION TRANSPARENCY - ÉCLAIRS + CRISTAUX 💎
   ═══════════════════════════════════════════════════════════ */

.section-transparency {
    position: relative;
}


/* Cristaux transparency */
.transparency-grid::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 70px;
    height: 85px;
    background: linear-gradient(135deg, 
        rgba(164, 142, 255, 0.5) 0%,
        rgba(164, 142, 255, 0.7) 50%,
        rgba(164, 142, 255, 0.5) 100%
    );
    clip-path: polygon(50% 0%, 80% 20%, 100% 50%, 80% 80%, 50% 100%, 20% 80%, 0% 50%, 20% 20%);
    animation: cristal-transparency-1 5s ease-in-out infinite;
    z-index: 0;
    box-shadow: 0 0 30px rgba(164, 142, 255, 0.5);
    pointer-events: none;
}

.transparency-grid::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 8%;
    width: 60px;
    height: 75px;
    background: linear-gradient(135deg, 
        rgba(0, 246, 255, 0.5) 0%,
        rgba(0, 246, 255, 0.7) 50%,
        rgba(0, 246, 255, 0.5) 100%
    );
    clip-path: polygon(50% 0%, 80% 20%, 100% 50%, 80% 80%, 50% 100%, 20% 80%, 0% 50%, 20% 20%);
    animation: cristal-transparency-2 6s ease-in-out infinite 2s;
    z-index: 0;
    box-shadow: 0 0 30px rgba(0, 246, 255, 0.5);
    pointer-events: none;
}

@keyframes cristal-transparency-1 {
    0%, 100% { 
        transform: rotate(0deg) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: rotate(180deg) scale(1.15);
        opacity: 1;
    }
}

@keyframes cristal-transparency-2 {
    0%, 100% { 
        transform: rotate(0deg) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: rotate(-180deg) scale(1.2);
        opacity: 1;
    }
}

/* ═══════════════════════════════════════════════════════════
   SECTION HOW IT WORKS - CRISTAUX 💎
   ═══════════════════════════════════════════════════════════ */

.section-how-it-works {
    position: relative;
}

.section-how-it-works::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 65px;
    height: 80px;
    background: linear-gradient(135deg, 
        rgba(255, 20, 147, 0.5) 0%,
        rgba(255, 20, 147, 0.7) 50%,
        rgba(255, 20, 147, 0.5) 100%
    );
    clip-path: polygon(50% 0%, 80% 20%, 100% 50%, 80% 80%, 50% 100%, 20% 80%, 0% 50%, 20% 20%);
    animation: cristal-how-1 5s ease-in-out infinite;
    z-index: 0;
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.5);
    pointer-events: none;
}

.section-how-it-works::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 70px;
    height: 85px;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.5) 0%,
        rgba(255, 215, 0, 0.7) 50%,
        rgba(255, 215, 0, 0.5) 100%
    );
    clip-path: polygon(50% 0%, 80% 20%, 100% 50%, 80% 80%, 50% 100%, 20% 80%, 0% 50%, 20% 20%);
    animation: cristal-how-2 6s ease-in-out infinite 1.5s;
    z-index: 0;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    pointer-events: none;
}

@keyframes cristal-how-1 {
    0%, 100% { 
        transform: rotate(0deg) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: rotate(180deg) scale(1.15);
        opacity: 1;
    }
}

@keyframes cristal-how-2 {
    0%, 100% { 
        transform: rotate(0deg) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: rotate(-180deg) scale(1.2);
        opacity: 1;
    }
}

/* ═══════════════════════════════════════════════════════════
   SECTION DROP - ÉCLAIRS + CRISTAUX 🔥
   ═══════════════════════════════════════════════════════════ */

.section-drop {
    position: relative;
}

/* Éclair diagonal gauche - DERRIÈRE */
.section-drop::before {
    content: '';
    position: absolute;
    top: -5%;
    left: 15%;
    width: 5px;
    height: 110%;
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(255, 235, 59, 0.4) 20%,
        rgba(255, 235, 59, 0.7) 50%,
        rgba(255, 235, 59, 0.4) 80%,
        transparent 100%
    );
    transform: rotate(-22deg);
    box-shadow: 0 0 35px rgba(255, 235, 59, 0.7);
    animation: eclair-drop-1 5s ease-in-out infinite;
    z-index: 0;
}

/* Éclair diagonal droit - DERRIÈRE */
.section-drop::after {
    content: '';
    position: absolute;
    top: -5%;
    right: 15%;
    width: 5px;
    height: 110%;
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(255, 235, 59, 0.4) 20%,
        rgba(255, 235, 59, 0.7) 50%,
        rgba(255, 235, 59, 0.4) 80%,
        transparent 100%
    );
    transform: rotate(22deg);
    box-shadow: 0 0 35px rgba(255, 235, 59, 0.7);
    animation: eclair-drop-2 5s ease-in-out infinite 2s;
    z-index: 0;
}

@keyframes eclair-drop-1 {
    0%, 100% { 
        opacity: 0.5;
        transform: rotate(-22deg) translateX(0);
    }
    50% { 
        opacity: 1;
        transform: rotate(-22deg) translateX(-10px);
    }
}

@keyframes eclair-drop-2 {
    0%, 100% { 
        opacity: 0.5;
        transform: rotate(22deg) translateX(0);
    }
    50% { 
        opacity: 1;
        transform: rotate(22deg) translateX(10px);
    }
}

/* Cristaux section drop */
.drop-content::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 10%;
    width: 60px;
    height: 75px;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.5) 0%,
        rgba(255, 215, 0, 0.7) 50%,
        rgba(255, 215, 0, 0.5) 100%
    );
    clip-path: polygon(50% 0%, 80% 20%, 100% 50%, 80% 80%, 50% 100%, 20% 80%, 0% 50%, 20% 20%);
    animation: cristal-drop-1 5s ease-in-out infinite;
    z-index: 0;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    pointer-events: none;
}

.drop-content::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: 10%;
    width: 55px;
    height: 70px;
    background: linear-gradient(135deg, 
        rgba(255, 20, 147, 0.5) 0%,
        rgba(255, 20, 147, 0.7) 50%,
        rgba(255, 20, 147, 0.5) 100%
    );
    clip-path: polygon(50% 0%, 80% 20%, 100% 50%, 80% 80%, 50% 100%, 20% 80%, 0% 50%, 20% 20%);
    animation: cristal-drop-2 6s ease-in-out infinite 1.5s;
    z-index: 0;
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.5);
    pointer-events: none;
}

@keyframes cristal-drop-1 {
    0%, 100% { 
        transform: rotate(0deg) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: rotate(180deg) scale(1.2);
        opacity: 1;
    }
}

@keyframes cristal-drop-2 {
    0%, 100% { 
        transform: rotate(0deg) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: rotate(-180deg) scale(1.15);
        opacity: 1;
    }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER - ÉCLAIRS VRAIS (pas d'émojis) + CRISTAUX ⚡
   ═══════════════════════════════════════════════════════════ */

.prehome-footer {
    position: relative;
}

/* Éclair montant gauche - DERRIÈRE */
.prehome-footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 3px;
    height: 200px;
    background: linear-gradient(180deg, 
        rgba(255, 235, 59, 0.7) 0%,
        rgba(255, 235, 59, 0.5) 30%,
        rgba(255, 235, 59, 0.3) 60%,
        transparent 100%
    );
    box-shadow: 0 0 25px rgba(255, 235, 59, 0.7);
    animation: eclair-montant-1 4s ease-in-out infinite;
    z-index: 0;
}

/* Éclair montant droit - DERRIÈRE */
.prehome-footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 20%;
    width: 3px;
    height: 200px;
    background: linear-gradient(180deg, 
        rgba(255, 235, 59, 0.7) 0%,
        rgba(255, 235, 59, 0.5) 30%,
        rgba(255, 235, 59, 0.3) 60%,
        transparent 100%
    );
    box-shadow: 0 0 25px rgba(255, 235, 59, 0.7);
    animation: eclair-montant-2 4s ease-in-out infinite 2s;
    z-index: 0;
}

@keyframes eclair-montant-1 {
    0% { 
        opacity: 0;
        transform: translateY(50px) scaleY(0.5);
    }
    50% { 
        opacity: 1;
        transform: translateY(0) scaleY(1);
    }
    100% { 
        opacity: 0;
        transform: translateY(-50px) scaleY(0.8);
    }
}

@keyframes eclair-montant-2 {
    0% { 
        opacity: 0;
        transform: translateY(50px) scaleY(0.5);
    }
    50% { 
        opacity: 1;
        transform: translateY(0) scaleY(1);
    }
    100% { 
        opacity: 0;
        transform: translateY(-50px) scaleY(0.8);
    }
}

/* Cristaux footer */
.footer-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 50px;
    height: 65px;
    background: linear-gradient(135deg, 
        rgba(0, 246, 255, 0.5) 0%,
        rgba(0, 246, 255, 0.7) 50%,
        rgba(0, 246, 255, 0.5) 100%
    );
    clip-path: polygon(50% 0%, 80% 20%, 100% 50%, 80% 80%, 50% 100%, 20% 80%, 0% 50%, 20% 20%);
    animation: cristal-footer-1 5s ease-in-out infinite;
    z-index: 0;
    box-shadow: 0 0 25px rgba(0, 246, 255, 0.5);
    pointer-events: none;
}

.footer-content::after {
    content: '';
    position: absolute;
    top: 0;
    right: 10%;
    width: 55px;
    height: 70px;
    background: linear-gradient(135deg, 
        rgba(164, 142, 255, 0.5) 0%,
        rgba(164, 142, 255, 0.7) 50%,
        rgba(164, 142, 255, 0.5) 100%
    );
    clip-path: polygon(50% 0%, 80% 20%, 100% 50%, 80% 80%, 50% 100%, 20% 80%, 0% 50%, 20% 20%);
    animation: cristal-footer-2 6s ease-in-out infinite 1.5s;
    z-index: 0;
    box-shadow: 0 0 25px rgba(164, 142, 255, 0.5);
    pointer-events: none;
}

@keyframes cristal-footer-1 {
    0%, 100% { 
        transform: rotate(0deg) scale(1);
        opacity: 0.5;
    }
    50% { 
        transform: rotate(180deg) scale(1.2);
        opacity: 1;
    }
}

@keyframes cristal-footer-2 {
    0%, 100% { 
        transform: rotate(0deg) scale(1);
        opacity: 0.5;
    }
    50% { 
        transform: rotate(-180deg) scale(1.15);
        opacity: 1;
    }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    /* Réduction de la taille des cristaux sur mobile */
    .prehome-hero .hero-content::before,
    .prehome-hero .hero-content::after {
        width: 60px;
        height: 75px;
    }
    
    .section-treasures::before,
    .section-treasures::after {
        width: 80px;
        height: 100px;
    }
    
    /* Réduction intensité des éclairs sur mobile */
    .prehome-hero::before,
    .prehome-hero::after {
        width: 3px;
        opacity: 0.6;
    }
}

.btn-hero {
    margin:30px;
}
