
/* ============================================================
   UNBOX'IN — STYLESHEET PRINCIPAL
   Sections :
     1. Reset & Variables
     2. Base (html, body, main)
     3. Background (orbs)
     4. Navigation & Logo
     5. Footer
     6. Mobile Menu
     7. Animations & Scroll Reveal
     8. Page : Accueil (welcome)
     9. Page : Concept
    10. Page : Événements (timeline)
    11. Page : Contact
    12. Page : Mentions légales
    13. Page : Téléchargement (download)
   ============================================================ */

/* --- 1. RESET & VARIABLES --- */

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

        :root {
            --purple: #7c3aed;
            --pink: #db2777;
            --dark: #0d0d14;
            --dark2: #13131f;
            --card: #1a1a2e;
            --text: #e8e8f0;
            --muted: #8888aa;
        }

        html {
            scroll-behavior: smooth;
            background: var(--dark);
            overflow-x: hidden;
            max-width: 100vw;
        }

        body {
            font-family: 'Outfit', sans-serif;
            background: var(--dark);
            color: var(--text);
            overflow-x: hidden;
            max-width: 100vw;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        main {
            flex: 1;
        }

        /* ── BACKGROUND ── */
        .bg-orbs {
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
        }

        .orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(120px);
            opacity: 0.18;
        }

        .orb-1 {
            width: 600px;
            height: 600px;
            background: var(--purple);
            top: -200px;
            left: -150px;
            animation: drift 12s ease-in-out infinite alternate;
        }

        .orb-2 {
            width: 500px;
            height: 500px;
            background: var(--pink);
            bottom: -150px;
            right: -100px;
            animation: drift 15s ease-in-out infinite alternate-reverse;
        }

        @keyframes drift {
            from {
                transform: translate(0, 0);
            }

            to {
                transform: translate(40px, 30px);
            }
        }

        /* ── NAV ── */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            height: 64px;
            padding: 0 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(13, 13, 20, 0.7);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 900;
            letter-spacing: -0.03em;
            text-decoration: none;
        }

        .logo span {
            background: linear-gradient(135deg, #a78bfa, #f472b6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            display: block;
        }

        .nav-links {
            display: flex;
            gap: 1.5rem;
        }

        .nav-link {
            color: var(--text);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: color 0.2s;
        }

        .nav-link:hover {
            color: #f472b6;
        }

        .nav-link.active {
            color: #f472b6;
        }

        /* ── FOOTER PRO ── */
        .site-footer {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 4rem 2rem 2rem;
            position: relative;
            z-index: 10;
            width: 100%;
            box-sizing: border-box;
            background: linear-gradient(to bottom, transparent, rgba(13, 13, 20, 0.9));
            margin: 0;
        }

        .footer-inner {
            max-width: 1100px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
            text-align: left;
        }

        .footer-brand .logo {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            display: inline-block;
        }

        .footer-brand p {
            color: var(--muted);
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .footer-title {
            color: #fff;
            font-weight: 700;
            font-size: 1.05rem;
            margin-bottom: 1.2rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

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

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: var(--muted);
            text-decoration: none;
            transition: color 0.2s;
            font-size: 0.95rem;
        }

        .footer-links a:hover {
            color: #f472b6;
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.85rem;
        }

        .footer-contact-btn {
            display: inline-block;
            padding: 0.6rem 1.2rem;
            border-radius: 999px;
            background: rgba(244, 114, 182, 0.1);
            border: 1px solid rgba(244, 114, 182, 0.3);
            color: #f472b6;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            transition: all 0.2s;
        }

        .footer-contact-btn:hover {
            background: rgba(244, 114, 182, 0.2);
            transform: scale(1.02);
        }

        .footer-eno-link {
            color: #f472b6;
            text-decoration: none;
            font-weight: 600;
        }

        /* ── MOBILE MENU (OVERLAY) ── */
        .mobile-btn {
            display: none;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 200;
            position: relative;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 5px;
            padding: 0;
            transition: background 0.3s, border-color 0.3s;
        }

        .mobile-btn .bar {
            width: 18px;
            height: 2px;
            background: #fff;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border-radius: 2px;
        }

        .mobile-btn.open {
            background: rgba(244, 114, 182, 0.15);
            border-color: rgba(244, 114, 182, 0.4);
        }

        .mobile-btn.open .bar:nth-child(1) {
            transform: translateY(3.5px) rotate(45deg);
        }

        .mobile-btn.open .bar:nth-child(2) {
            transform: translateY(-3.5px) rotate(-45deg);
        }

        @media (max-width: 768px) {
            nav {
                padding: 0 1.25rem;
                height: 60px;
            }



            .mobile-btn {
                display: flex;
                margin-left: auto;
            }

            .nav-links {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: rgba(13, 13, 20, 0.95);
                backdrop-filter: blur(25px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 3rem;
                z-index: 150;
                clip-path: circle(0px at calc(100% - 40px) 40px);
                transition: clip-path 0.6s cubic-bezier(0.77, 0, 0.175, 1);
            }

            .nav-links.open {
                clip-path: circle(150% at calc(100% - 40px) 40px);
            }

            .nav-links .nav-link {
                font-size: 2.2rem;
                font-weight: 800;
                color: #fff;
                opacity: 0;
                transform: translateY(30px);
                transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s;
            }

            .nav-links.open .nav-link {
                opacity: 1;
                transform: translateY(0);
            }
            .nav-links.open .nav-link:nth-child(1) { transition-delay: 0.15s; }
            .nav-links.open .nav-link:nth-child(2) { transition-delay: 0.25s; }
            .nav-links.open .nav-link:nth-child(3) { transition-delay: 0.35s; }
            .nav-links.open .nav-link:nth-child(4) { transition-delay: 0.45s; }

            .site-footer {
                padding: 3rem 1.5rem 1.5rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
                margin-bottom: 2rem;
            }

            .footer-brand .logo {
                display: block;
                margin: 0 auto 1rem;
            }
        }

        /* ── SCROLL REVEAL ── */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
    

/* --- 8. PAGE : ACCUEIL --- */

        /* ── HEROS ── */
        .hero {
            position: relative;
            z-index: 1;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 8rem 1.5rem 5rem;
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #a78bfa;
            margin-bottom: 1.5rem;
            padding: 0.4rem 1rem;
            border-radius: 999px;
            border: 1px solid rgba(167, 139, 250, 0.3);
            background: rgba(124, 58, 237, 0.1);
        }

        .hero-eyebrow span {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #a78bfa;
            animation: blink 1.5s ease-in-out infinite;
        }

        @keyframes blink {

            0%,
            100% {
                opacity: 1
            }

            50% {
                opacity: 0.2
            }
        }

        .page-home h1 {
            font-size: clamp(3rem, 8vw, 6.5rem);
            font-weight: 900;
            line-height: 1.0;
            letter-spacing: -0.04em;
            margin-bottom: 1.5rem;
        }

        .gradient-text {
            background: linear-gradient(135deg, #c084fc 0%, #f472b6 50%, #fb923c 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-sub {
            font-size: clamp(1rem, 2.5vw, 1.3rem);
            font-weight: 300;
            color: var(--muted);
            max-width: 560px;
            line-height: 1.7;
            margin-bottom: 2.5rem;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            padding: 1rem 2.2rem;
            border-radius: 999px;
            font-size: 1.05rem;
            font-weight: 600;
            background: linear-gradient(135deg, var(--purple), var(--pink));
            color: white;
            text-decoration: none;
            box-shadow: 0 0 40px rgba(219, 39, 119, 0.35);
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .hero-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 60px rgba(219, 39, 119, 0.5);
        }

        /* ── CAMERAS VISUAL ── */
        .cameras-visual {
            position: relative;
            z-index: 1;
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin: 4rem auto 0;
            max-width: 700px;
            padding: 0 1.5rem;
        }

        .cam-card {
            flex: 1;
            background: var(--card);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 1.5rem;
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.8rem;
            backdrop-filter: blur(10px);
            transition: transform 0.3s, border-color 0.3s;
        }

        .cam-card:hover {
            transform: translateY(-6px);
            border-color: rgba(167, 139, 250, 0.4);
        }

        .cam-icon {
            width: 56px;
            height: 56px;
            border-radius: 1rem;
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(219, 39, 119, 0.3));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
        }

        .cam-label {
            font-size: 0.95rem;
            font-weight: 600;
        }

        .cam-desc {
            font-size: 0.8rem;
            color: var(--muted);
            text-align: center;
        }

        /* ── SECTION ── */
        .page-home section {
            position: relative;
            z-index: 1;
            padding: 6rem 1.5rem;
        }

        @media (max-width: 768px) {
            .hero {
                padding: 5rem 1rem 3rem;
                min-height: auto;
            }
            .page-home h1 {
                font-size: 2.2rem;
            }
            .hero-sub {
                font-size: 1rem;
            }
            .page-home section {
                padding: 4rem 1.25rem;
            }
            .page-home h2 {
                font-size: 2rem;
            }
            .video-demo {
                max-width: 100%;
                border-radius: 1rem;
            }
        }

        .section-inner {
            max-width: 900px;
            margin: 0 auto;
        }

        .section-tag {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: #f472b6;
            margin-bottom: 1rem;
        }

        .page-home h2, .page-concept h2, .page-events h2 {
            font-size: clamp(1.8rem, 4vw, 3rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1.15;
            margin-bottom: 1.2rem;
        }

        .section-lead {
            font-size: 1.1rem;
            color: var(--muted);
            line-height: 1.8;
            max-width: 640px;
        }

        /* ── HOW IT WORKS ── */
        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .step {
            background: var(--card);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 1.25rem;
            padding: 1.8rem 1.5rem;
            transition: transform 0.3s, border-color 0.3s;
        }

        .step:hover {
            transform: translateY(-4px);
            border-color: rgba(167, 139, 250, 0.3);
        }

        .step-num {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--purple), var(--pink));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .step h3 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 0.4rem;
        }

        .step p {
            font-size: 0.85rem;
            color: var(--muted);
            line-height: 1.6;
        }

        /* ── TCG CARDS ── */
        .tcg-section {
            text-align: center;
        }

        .tcg-cards {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }

        .tcg-chip {
            padding: 0.6rem 1.4rem;
            border-radius: 999px;
            font-size: 0.9rem;
            font-weight: 600;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(255, 255, 255, 0.05);
            transition: all 0.2s;
        }

        .tcg-chip:hover {
            background: rgba(167, 139, 250, 0.15);
            border-color: rgba(167, 139, 250, 0.4);
            transform: scale(1.05);
        }

        @media (max-width: 600px) {
            .cameras-visual {
                flex-direction: column;
                max-width: 320px;
            }
        }
    

/* --- 9. PAGE : CONCEPT --- */

        .concept-hero {
            position: relative;
            z-index: 10;
            text-align: center;
            padding: 10rem 1.5rem 5rem;
        }

        .concept-hero h1 {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 900;
            line-height: 1.1;
            letter-spacing: -0.03em;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #fff, #c084fc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .concept-hero p {
            font-size: clamp(1.1rem, 2.5vw, 1.4rem);
            color: var(--muted);
            max-width: 700px;
            margin: 0 auto 3rem;
            line-height: 1.6;
        }

        .features-grid {
            max-width: 1000px;
            margin: 0 auto 6rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            padding: 0 1.5rem;
            position: relative;
            z-index: 10;
        }

        .feature-card {
            background: rgba(26, 26, 46, 0.5);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 1.5rem;
            padding: 2.5rem;
            transition: transform 0.3s, border-color 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            border-color: rgba(167, 139, 250, 0.4);
        }

        .feature-icon {
            width: 64px;
            height: 64px;
            border-radius: 1rem;
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(219, 39, 119, 0.2));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }

        .feature-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #fff;
        }

        .feature-card p {
            color: var(--muted);
            line-height: 1.7;
            font-size: 0.95rem;
        }

        .cta-section {
            max-width: 800px;
            margin: 0 auto 8rem;
            padding: 0 1.5rem;
            text-align: center;
            position: relative;
            z-index: 10;
        }

        .cta-box {
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(219, 39, 119, 0.15));
            border: 1px solid rgba(244, 114, 182, 0.3);
            border-radius: 2rem;
            padding: 4rem 2rem;
            backdrop-filter: blur(10px);
        }

        @media (max-width: 768px) {
            .concept-hero {
                padding: 6rem 1.5rem 3rem;
                min-height: auto;
            }
            .concept-hero h1 {
                font-size: 2.5rem;
            }
            .benefits-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                margin-top: 2rem;
            }
            .cta-box {
                padding: 2.5rem 1.5rem;
            }
            .concept-section {
                padding: 4rem 1.5rem;
            }
        }

        .cta-box h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .cta-box p {
            color: var(--text);
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            padding: 1.2rem 2.5rem;
            border-radius: 999px;
            font-size: 1.1rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--purple), var(--pink));
            color: white;
            text-decoration: none;
            box-shadow: 0 0 30px rgba(219, 39, 119, 0.4);
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 50px rgba(219, 39, 119, 0.6);
        }
    

/* --- 10. PAGE : ÉVÉNEMENTS --- */

        .events-hero {
            position: relative;
            z-index: 10;
            text-align: center;
            padding: 10rem 1.5rem 2rem;
        }

        .events-hero h1 {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 900;
            line-height: 1.1;
            letter-spacing: -0.03em;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #fff, #a78bfa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .events-hero p {
            font-size: clamp(1.1rem, 2.5vw, 1.3rem);
            color: var(--muted);
            max-width: 600px;
            margin: 0 auto 4rem;
            line-height: 1.6;
        }

        /* ── TIMELINE ── */
        .timeline {
            max-width: 900px;
            margin: 0 auto 8rem;
            padding: 0 1.5rem;
            position: relative;
            z-index: 10;
        }

        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 2px;
            background: linear-gradient(to bottom, rgba(219, 39, 119, 0), rgba(219, 39, 119, 0.4), rgba(124, 58, 237, 0.4), rgba(124, 58, 237, 0));
            transform: translateX(-50%);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 4rem;
            width: 50%;
            padding-right: 3rem;
        }

        .timeline-item:nth-child(even) {
            margin-left: auto;
            padding-right: 0;
            padding-left: 3rem;
        }

        /* Glow point */
        .timeline-dot {
            position: absolute;
            top: 2rem;
            right: -10px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--pink);
            box-shadow: 0 0 20px 5px rgba(219, 39, 119, 0.5);
            z-index: 2;
        }

        .timeline-item:nth-child(even) .timeline-dot {
            right: auto;
            left: -10px;
            background: var(--purple);
            box-shadow: 0 0 20px 5px rgba(124, 58, 237, 0.5);
        }

        .timeline-item:nth-child(odd) .timeline-card {
            transform-origin: right center;
        }

        .timeline-item:nth-child(even) .timeline-card {
            transform-origin: left center;
        }

        .timeline-card {
            background: rgba(26, 26, 46, 0.6);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 1.5rem;
            padding: 2.5rem;
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s;
        }

        .timeline-card:hover {
            transform: scale(1.03);
            box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.4);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .timeline-date {
            display: inline-block;
            padding: 0.4rem 1rem;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.05);
            color: #fff;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            margin-bottom: 1.2rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .timeline-item:nth-child(even) .timeline-date {
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(124, 58, 237, 0.05));
            border-color: rgba(124, 58, 237, 0.3);
            color: #d8b4fe;
        }

        .timeline-item:nth-child(odd) .timeline-date {
            background: linear-gradient(135deg, rgba(219, 39, 119, 0.2), rgba(219, 39, 119, 0.05));
            border-color: rgba(219, 39, 119, 0.3);
            color: #fbcfe8;
        }

        .timeline-title {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 0.8rem;
            color: #fff;
            line-height: 1.2;
        }

        .timeline-location {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--muted);
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .timeline-desc {
            color: var(--muted);
            line-height: 1.6;
            font-size: 1rem;
        }

        /* ── FUTURE DATES INDICATOR ── */
        .timeline-future-dates {
            position: relative;
            z-index: 10;
            display: flex;
            justify-content: center;
            margin-top: -2rem;
            margin-bottom: 5rem;
        }

        .future-badge-wrapper {
            position: relative;
            display: inline-block;
        }

        .future-badge {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.8rem 1.8rem;
            background: rgba(26, 26, 46, 0.9);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(244, 114, 182, 0.4);
            border-radius: 999px;
            color: #fff;
            font-weight: 700;
            font-size: 1.05rem;
            box-shadow: 0 0 25px rgba(244, 114, 182, 0.3);
        }

        .future-badge svg {
            width: 22px;
            height: 22px;
            color: #f472b6;
        }

        .pulse-ring, .pulse-ring.delay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            border-radius: 999px;
            border: 2px solid rgba(244, 114, 182, 0.6);
            animation: pulsate 3s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
            z-index: -1;
            pointer-events: none;
        }

        .pulse-ring.delay {
            animation-delay: 1.5s;
        }

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

        @media (max-width: 768px) {
            .events-hero {
                padding: 6rem 1rem 1rem;
            }

            .events-hero h1 {
                font-size: 2rem;
            }

            .timeline::before {
                left: 20px;
            }

            .timeline-future-dates {
                justify-content: flex-start;
                padding-left: 45px;
                margin-top: 0;
            }

            .future-badge {
                font-size: 0.85rem;
                padding: 0.6rem 1rem;
            }

            .timeline-item,
            .timeline-item:nth-child(even) {
                width: 100%;
                padding-left: 55px;
                padding-right: 0;
                margin-bottom: 2.5rem;
            }

            .timeline-item:nth-child(even) .timeline-card,
            .timeline-item:nth-child(odd) .timeline-card {
                transform-origin: left center;
            }

            .timeline-dot,
            .timeline-item:nth-child(even) .timeline-dot {
                left: 10px;
                right: auto;
            }

            .timeline-card {
                padding: 1.25rem;
            }

            .timeline-title {
                font-size: 1.3rem;
            }
            
            .timeline-date {
                font-size: 0.75rem;
                padding: 0.3rem 0.8rem;
                margin-bottom: 0.8rem;
            }
        }
    

/* --- 11. PAGE : CONTACT --- */

    /* ── CONTENT ── */
    .container {
        position: relative;
        z-index: 10;
        max-width: 800px;
        margin: 8rem auto 4rem;
        padding: 0 1.5rem;
        flex: 1;
    }

    @media (max-width: 768px) {
        .container {
            margin-top: 6rem;
            margin-bottom: 2rem;
        }
        .page-contact-show .card {
            padding: 1.25rem 1rem;
        }
    }

    .page-contact-show h1 {
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 900;
        line-height: 1.1;
        letter-spacing: -0.03em;
        margin-bottom: 1rem;
        background: linear-gradient(135deg, #fff, #9ca3af);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-align: center;
    }

    .page-contact-show p.subtitle {
        text-align: center;
        color: var(--muted);
        margin-bottom: 3rem;
        font-size: 1.1rem;
    }

    .card {
        background: rgba(26, 26, 46, 0.6);
        backdrop-filter: blur(16px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 1.5rem;
        padding: 2.5rem;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        animation: fade-in-up 0.5s ease forwards;
    }

    @keyframes fade-in-up {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .alert-success {
        background: rgba(52, 211, 153, 0.15);
        color: #6ee7b7;
        padding: 1rem 1.5rem;
        border-radius: 0.75rem;
        border: 1px solid rgba(52, 211, 153, 0.3);
        margin-bottom: 2rem;
        text-align: center;
        font-weight: 600;
    }

    .alert-error {
        background: rgba(248, 113, 113, 0.15);
        color: #fca5a5;
        padding: 1rem 1.5rem;
        border-radius: 0.75rem;
        border: 1px solid rgba(248, 113, 113, 0.3);
        margin-bottom: 2rem;
        font-size: 0.9rem;
    }

    .alert-error ul {
        margin-top: 0.5rem;
        margin-left: 1.5rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group label {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
        font-weight: 600;
        font-size: 0.95rem;
    }

    .form-group label span.optional {
        font-size: 0.8rem;
        color: var(--muted);
        font-weight: normal;
    }

    .form-control {
        width: 100%;
        padding: 0.9rem 1.2rem;
        background: rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 0.75rem;
        color: white;
        font-family: inherit;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    .form-control:focus {
        outline: none;
        border-color: #f472b6;
        box-shadow: 0 0 0 3px rgba(244, 114, 182, 0.2);
    }

    textarea.form-control {
        min-height: 120px;
        resize: vertical;
    }

    .grid-2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .submit-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 1.1rem;
        margin-top: 1rem;
        border-radius: 0.75rem;
        font-size: 1.1rem;
        font-weight: 700;
        background: linear-gradient(135deg, var(--purple), var(--pink));
        color: white;
        border: none;
        cursor: pointer;
        transition: transform 0.2s, box-shadow 0.2s;
        box-shadow: 0 4px 15px rgba(219, 39, 119, 0.3);
    }

    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(219, 39, 119, 0.4);
    }

    @media (max-width: 600px) {
        .grid-2 {
            grid-template-columns: 1fr;
            gap: 0;
        }
    }


/* --- 12. PAGE : MENTIONS LÉGALES --- */
        .page-legal h1 {
            margin-bottom: 2rem;
            font-size: 2.5rem;
        }

        .page-legal h2 {
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            color: #fff;
            font-size: 1.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 0.5rem;
        }

        .page-legal p {
            color: var(--muted);
            margin-bottom: 1rem;
            line-height: 1.7;
        }

        .page-legal ul {
            color: var(--muted);
            margin-left: 1.5rem;
            margin-bottom: 1rem;
            line-height: 1.7;
        }
    

/* --- 13. PAGE : TÉLÉCHARGEMENT --- */

        .page-download-show .card,
        .page-download-file .card {
            position: relative;
            z-index: 10;
            width: 90%;
            max-width: 600px;
            text-align: center;
            animation: fade-in-up 0.8s ease backwards;
        }

        .page-download-show .logo,
        .page-download-file .logo {
            font-size: 1.5rem;
            font-weight: 900;
            letter-spacing: -0.03em;
            background: linear-gradient(135deg, #a78bfa, #f472b6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 2rem;
            display: inline-block;
        }

        .page-download-show h1, .page-download-file h1 {
            font-size: clamp(2rem, 5vw, 2.5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #fff, #9ca3af);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -0.02em;
        }

        .page-download-show p.subtitle, .page-download-file p.subtitle {
            color: var(--muted);
            font-size: 1.1rem;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .video-wrapper {
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.4);
            border: 1px solid rgba(255,255,255,0.05);
            margin-bottom: 2rem;
            background: #000;
            position: relative;
        }

        .video-wrapper video {
            width: 100%;
            display: block;
            outline: none;
        }

        .download-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            padding: 1rem 2.2rem;
            border-radius: 999px;
            font-size: 1.1rem;
            font-weight: 600;
            background: linear-gradient(135deg, var(--purple), var(--pink));
            color: white;
            text-decoration: none;
            box-shadow: 0 0 30px rgba(219, 39, 119, 0.3);
            transition: transform 0.2s, box-shadow 0.2s;
            border: none;
            cursor: pointer;
        }

        .download-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 50px rgba(219, 39, 119, 0.5);
        }

        .download-btn svg {
            width: 20px;
            height: 20px;
        }

        .error-message {
            color: #f87171;
            background: rgba(248, 113, 113, 0.05);
            border: 1px solid rgba(248, 113, 113, 0.15);
            padding: 1.5rem;
            border-radius: 1rem;
            margin-top: 1rem;
        }

        .page-download-show footer,
        .page-download-file footer {
            margin-top: 2.5rem;
            font-size: 0.85rem;
            color: var(--muted);
        }
    