        :root {
            --primary: #1C0770;
            --accent: #B4E50D;
            --secondary: #A3CCDA;
            --white: #ffffff;
            --dark: #0a0424;
            --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* --- GLOBAL --- */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { 
            font-family: 'Comic Neue', cursive; 
            background: var(--dark); 
            color: var(--white);
            overflow-x: hidden;
            line-height: 1.6;
            scroll-behavior: smooth;
        }

        /* Multipage State */
        .page { display: none; min-height: 100vh; animation: pageFade 0.6s ease-out forwards; }
        .page.active { display: block; }
        @keyframes pageFade { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

        /* --- TYPOGRAPHY --- */
        h1, h2, h3 { font-weight: 700; text-transform: uppercase; letter-spacing: -1px; }
        p { font-weight: 400; font-size: 1.1rem; }
        .accent-text { color: var(--accent); }

        /* --- REVEAL ANIMATIONS --- */
        .reveal { opacity: 0; transform: translateY(50px); transition: 1s cubic-bezier(0.16, 1, 0.3, 1); }
        .reveal.active { opacity: 1; transform: translateY(0); }

        /* --- BUTTONS --- */
        .btn {
            padding: 18px 36px; border-radius: 50px; border: none;
            font-family: inherit; font-weight: 700; font-size: 1.1rem;
            cursor: pointer; transition: var(--transition);
            display: inline-flex; align-items: center; gap: 12px;
            text-decoration: none;
        }
        .btn-neon { background: var(--accent); color: var(--primary); }
        .btn-neon:hover { transform: scale(1.05) translateY(-5px); box-shadow: 0 15px 30px rgba(180, 229, 13, 0.4); }
        .btn-outline { background: transparent; border: 3px solid var(--accent); color: var(--accent); }
        .btn-outline:hover { background: var(--accent); color: var(--primary); }

        /* --- HEADER --- */
        header {
            position: fixed; top: 0; width: 100%;
            padding: 25px 8%;
            background: var(--primary);
            display: flex; justify-content: space-between; align-items: center;
            z-index: 1000; transition: 0.4s;
            border-bottom: 3px solid var(--accent);
        }
        header.scrolled { padding: 15px 8%; box-shadow: 0 10px 40px rgba(0,0,0,0.6); }
        .logo { font-size: 2.2rem; font-weight: 700; color: var(--accent); cursor: pointer; }
        
        nav ul { display: flex; list-style: none; gap: 40px; }
        nav ul li a { 
            text-decoration: none; color: var(--accent); font-weight: 700; 
            font-size: 1.1rem; transition: 0.3s; position: relative;
        }
        nav ul li a:hover { color: var(--white); }

        /* --- MARQUEE --- */
        .marquee {
            background: var(--primary); color: var(--accent);
            padding: 15px 0; overflow: hidden; white-space: nowrap;
            border-top: 1px solid rgba(180, 229, 13, 0.3);
        }
        .marquee-content {
            display: inline-block; animation: marquee-scroll 40s linear infinite;
            font-weight: 700; text-transform: uppercase; font-size: 1rem; letter-spacing: 4px;
        }
        @keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

        /* --- HERO --- */
        .hero { display: flex; height: 100vh; overflow: hidden; }
        .hero-left { 
            width: 35%; background: var(--accent); color: var(--primary); 
            padding: 80px 5%; display: flex; flex-direction: column; justify-content: center;
            z-index: 10; position: relative;
        }
        .hero-right { width: 65%; position: relative; background: #000; }
        .hero-right video, .hero-img-fallback { 
            width: 100%; height: 100%; object-fit: cover; opacity: 0.7; 
            filter: contrast(1.2) saturate(1.2);
        }
        .hero-left h1 { font-size: 5rem; line-height: 0.85; margin-bottom: 25px; }
        .hero-left p { font-size: 1.4rem; margin-bottom: 40px; font-weight: 700; opacity: 0.9; }

        /* --- INFO SECTION --- */
        .info-section { background: var(--secondary); color: var(--primary); padding: 120px 8%; }
        .info-split { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
        .info-section h2 { font-size: 4.5rem; line-height: 0.9; margin-bottom: 30px; }
        .info-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 80px; }
        .info-card-img { 
            height: 500px; border-radius: 40px; overflow: hidden; 
            border: 10px solid var(--primary); transition: var(--transition);
        }
        .info-card-img:hover { transform: translateY(-15px) rotate(2deg); }
        .info-card-img img { width: 100%; height: 100%; object-fit: cover; }

        /* --- FEATURE CARDS --- */
        .features-section { background: var(--accent); color: var(--primary); padding: 120px 8%; }
        .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
        .f-card { 
            background: var(--primary); color: var(--accent); padding: 60px 40px; 
            border-radius: 50px; transition: var(--transition);
        }
        .f-card:hover { transform: translateY(-20px) scale(1.02); box-shadow: 0 30px 60px rgba(0,0,0,0.4); }
        .f-card i { margin-bottom: 30px; display: block; }
        .f-card h3 { font-size: 2.2rem; margin-bottom: 20px; }

        /* --- PARALLAX SECTION --- */
        .parallax { 
            height: 900px; background-image: url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?q=80&w=2000');
            background-attachment: fixed; background-position: center; background-size: cover;
            position: relative; display: flex; align-items: flex-end; padding: 100px 8%;
        }
        .parallax-overlay { position: absolute; inset: 0; background: linear-gradient(transparent, rgba(28, 7, 112, 0.9)); }
        .parallax-box { 
            background: var(--secondary); color: var(--primary); padding: 60px; 
            border-radius: 40px; max-width: 700px; position: relative; z-index: 5;
        }
        .parallax-box .marquee { margin: -60px -60px 40px -60px; border-radius: 40px 40px 0 0; }

        /* --- GALLERY SECTION --- */
        .gallery-section { background: var(--secondary); padding: 100px 0; }
        .gallery-row { 
            display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 80px; 
            padding: 80px 8%; align-items: center; 
        }
        .gallery-row:nth-child(even) { direction: rtl; }
        .gallery-row:nth-child(even) .gallery-text { direction: ltr; }
        .gallery-row img { 
            width: 100%; height: 600px; object-fit: cover; border-radius: 60px; 
            box-shadow: 0 40px 80px rgba(0,0,0,0.2); 
        }
        .gallery-text h3 { font-size: 3.5rem; margin-bottom: 25px; line-height: 0.9; }

        /* --- SHOWCASE --- */
        .showcase { background: var(--accent); color: var(--primary); padding: 120px 8%; }
        .showcase-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 80px; }
        .showcase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
        .s-card { 
            background: var(--white); border-radius: 40px; padding: 40px; 
            text-align: center; transition: var(--transition); border: 4px solid transparent;
        }
        .s-card:hover { border-color: var(--primary); transform: translateY(-15px); }
        .s-card img { width: 100%; border-radius: 30px; margin-bottom: 25px; height: 250px; object-fit: cover; }

        /* --- MODAL (QUICK VIEW) --- */
        .modal { 
            position: fixed; inset: 0; background: rgba(10, 4, 36, 0.98); 
            z-index: 2000; display: none; align-items: center; justify-content: center; 
            padding: 40px; backdrop-filter: blur(15px);
        }
        .modal-content { 
            background: var(--secondary); color: var(--primary); max-width: 1200px; 
            width: 100%; border-radius: 60px; padding: 80px; position: relative; 
            max-height: 90vh; overflow-y: auto; 
        }
        .close-btn { 
            position: absolute; top: 40px; right: 40px; cursor: pointer; 
            background: var(--primary); color: var(--accent); border: none; 
            width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
        }

        /* --- FILTER BAR --- */
        .filter-container { background: var(--primary); padding: 80px 8% 40px; text-align: center; }
        .filter-btn {
            background: transparent; border: 3px solid var(--accent); color: var(--accent);
            padding: 15px 35px; border-radius: 50px; cursor: pointer; font-family: inherit;
            font-weight: 700; font-size: 1.1rem; margin: 10px; transition: 0.3s;
        }
        .filter-btn.active { background: var(--accent); color: var(--primary); }

        /* --- FOOTER --- */
        footer { background: var(--primary); color: var(--accent); padding: 120px 8% 60px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 80px; margin-bottom: 80px; }
        .footer-col h4 { font-size: 1.5rem; margin-bottom: 30px; color: var(--white); }
        .footer-col a { display: block; color: var(--accent); text-decoration: none; margin-bottom: 20px; font-weight: 700; transition: 0.3s; font-size: 1.1rem; }
        .footer-col a:hover { transform: translateX(10px); color: var(--white); }
        .social-row { display: flex; gap: 30px; margin-top: 30px; }
        .social-row i { transition: 0.3s; cursor: pointer; }
        .social-row i:hover { transform: scale(1.5) rotate(15deg); color: var(--white); }

        /* --- RESPONSIVE --- */
        @media (max-width: 1024px) {
            .hero, .info-split, .features-grid, .gallery-row, .showcase-grid, .footer-grid { grid-template-columns: 1fr !important; }
            .hero-left { width: 100%; order: 2; padding: 60px 8%; text-align: center; }
            .hero-right { width: 100%; height: 50vh; }
            .hero-left h1 { font-size: 3.5rem; }
            .info-cards { grid-template-columns: 1fr; }
            .modal-content { padding: 40px; }
        }

        
        
/* Navigation */
nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.btn-neon {
    padding: 10px 20px;
    border: none;
    background: #0ff;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
}

/* Hamburger Menu for Mobile */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
}

/* Responsive Styles */
@media (max-width: 768px) {
    nav {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #111;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
        padding: 15px 0;
        text-align: center;
    }

    .hamburger {
        display: flex;
    }

    nav.active {
        display: block;
    }

    .btn-neon {
        display: none; /* Optional: hide or move button inside nav */
    }
}
