@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@500;700;800&display=swap');

:root {
    --primary: #0a0813; /* Deep cosmic indigo background */
    --primary-dark: #05040a; /* Deepest black-violet */
    --primary-light: #151125; /* Glassmorphic card background */
    --primary-lighter: #201b38; /* Hover card state */
    --accent: #00ff9d; /* Neon Mint Green - ultra vibrant and youthful */
    --accent-pink: #ff007f; /* Electric Coral/Pink - energetic highlight */
    --accent-purple: #8b5cf6; /* Vibrant violet */
    --accent-glow: rgba(0, 255, 157, 0.25);
    --accent-pink-glow: rgba(255, 0, 127, 0.25);
    --accent-purple-glow: rgba(139, 92, 246, 0.25);
    --text-light: #f3f0ff; /* Pastel lavender white */
    --text-dim: #9b95b8; /* Muted lavender grey */
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Snappy bouncy feel! */
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --max-width: 1200px;
    --border-radius: 20px;
    --border-radius-pill: 50px;
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--primary);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* --- Ambient Light Blobs (Neo-Aesthetic) --- */
body::before, body::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-purple-glow) 0%, transparent 70%);
    filter: blur(100px);
    z-index: -2;
    opacity: 0.8;
    pointer-events: none;
    animation: float-glow 20s infinite alternate ease-in-out;
}

body::before {
    top: 5%;
    left: -200px;
}

body::after {
    bottom: 15%;
    right: -200px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    animation-delay: -8s;
}

@keyframes float-glow {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    100% {
        transform: translate(80px, 120px) scale(1.15) rotate(45deg);
    }
}

/* --- Layout --- */

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 9rem 0;
    position: relative;
}

/* --- Navigation (Glassmorphic Floating Capsule) --- */

nav {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 3rem);
    max-width: var(--max-width);
    z-index: 1000;
    padding: 0.9rem 2rem;
    border-radius: var(--border-radius-pill);
    background: rgba(21, 17, 37, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

nav.scrolled {
    background: rgba(10, 8, 19, 0.85);
    padding: 0.7rem 2rem;
    border-color: rgba(0, 255, 157, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 255, 157, 0.05);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.logo span {
    background: linear-gradient(135deg, var(--accent) 30%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.nav-links {
    display: flex;
    gap: 2.2rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.75;
    position: relative;
    padding: 0.3rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-pink));
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--accent);
}

.nav-links a:hover::after {
    width: 100%;
}

.lang-switch {
    display: flex;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(5, 4, 10, 0.3);
    padding: 0.35rem 0.8rem;
    border-radius: var(--border-radius-pill);
    font-size: 0.75rem;
    transition: var(--transition);
}

.lang-switch:hover {
    border-color: rgba(0, 255, 157, 0.4);
    box-shadow: 0 0 12px rgba(0, 255, 157, 0.1);
}

.lang-switch span {
    cursor: pointer;
    opacity: 0.5;
    font-weight: 600;
    padding: 0 0.2rem;
    transition: var(--transition);
}

.lang-switch span:hover {
    opacity: 0.9;
    color: var(--accent);
}

.lang-switch span.active {
    opacity: 1;
    color: var(--accent);
    text-shadow: 0 0 8px var(--accent-glow);
}

/* --- Hero Section (Premium Vector Logo & Cosmic Background) --- */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    background: radial-gradient(circle at 10% 20%, rgba(21, 17, 37, 0.4) 0%, rgba(10, 8, 19, 1) 90%);
}

.hero-canvas-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(0, 255, 157, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(255, 0, 127, 0.05) 0%, transparent 50%);
    filter: blur(80px);
    z-index: -1;
}

.hero-container-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 4rem;
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2.8rem, 6.5vw, 4.4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white) 30%, var(--accent) 70%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(30px);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(30px);
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* --- Buttons (Super Bouncy and Glowy) --- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.1rem 2.8rem;
    background: linear-gradient(135deg, var(--accent) 0%, #00d2ff 100%);
    color: var(--primary-dark);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.8px;
    border-radius: var(--border-radius-pill);
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px var(--accent-glow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.6s;
}

.btn:hover {
    transform: translateY(-6px) scale(1.03) !important;
    box-shadow: 0 15px 35px rgba(0, 255, 157, 0.45);
    color: var(--primary-dark);
}

.btn:hover::before {
    left: 100%;
}

.btn:active {
    transform: translateY(-2px) scale(0.97) !important;
}

.btn-secondary {
    background: transparent;
    border: 2px solid rgba(0, 255, 157, 0.4);
    color: var(--text-light);
    box-shadow: none;
}

.btn-secondary:hover {
    background: rgba(0, 255, 157, 0.08);
    border-color: var(--accent);
    color: var(--accent) !important;
    box-shadow: 0 10px 25px rgba(0, 255, 157, 0.15);
}

.btn-secondary::before {
    display: none; /* No shine for secondary button */
}

/* --- Features Section (Bouncy Cards) --- */

.section-title {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title h2 {
    font-size: clamp(2.5rem, 5vw, 3.6rem);
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-top: 0.5rem;
    background: linear-gradient(135deg, var(--white) 50%, var(--text-dim) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title p {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.8rem;
    display: inline-block;
    background: rgba(0, 255, 157, 0.1);
    padding: 0.35rem 1.1rem;
    border-radius: var(--border-radius-pill);
    border: 1px solid rgba(0, 255, 157, 0.2);
}

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

.card {
    background: var(--primary-light);
    padding: 3.5rem 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-pink) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(0, 255, 157, 0.3);
    box-shadow: 0 25px 45px rgba(0, 255, 157, 0.08);
    background: var(--primary-lighter);
}

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

.card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--white);
    letter-spacing: -0.5px;
}

.card p {
    color: var(--text-dim);
    font-size: 1rem;
    line-height: 1.7;
}

/* --- Affiliates Slider (Smooth & Dynamic) --- */

.affiliates-slider {
    display: flex;
    overflow-x: auto;
    gap: 2.5rem;
    padding: 2rem 0.5rem;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.affiliates-slider::-webkit-scrollbar {
    display: none;
}

.affiliate-item {
    min-width: 320px;
    height: 430px;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.affiliate-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    transition: var(--transition);
    pointer-events: none;
}

.affiliate-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.25);
}

.affiliate-item:hover::after {
    border-color: var(--accent-purple);
}

.affiliate-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.affiliate-item:hover img {
    transform: scale(1.08);
}

.affiliate-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 2rem;
    background: linear-gradient(to top, rgba(10, 8, 19, 0.95) 0%, rgba(10, 8, 19, 0.4) 70%, transparent 100%);
    z-index: 1;
}

.affiliate-info h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 0.4rem;
    letter-spacing: -0.5px;
}

.affiliate-info p {
    color: var(--accent);
    font-size: 0.95rem;
    font-weight: 600;
}

/* --- Membership Section & Subscription Form (Neo-Design) --- */

.membership {
    position: relative;
}

.subscription-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    max-width: 620px;
    margin: 0 auto;
    background: rgba(21, 17, 37, 0.65);
    padding: 0.5rem;
    border-radius: var(--border-radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition);
}

.subscription-form:focus-within {
    border-color: rgba(0, 255, 157, 0.5);
    box-shadow: 0 0 25px rgba(0, 255, 157, 0.15);
}

.subscription-form input {
    flex: 1;
    padding: 1rem 1.8rem;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
}

.subscription-form input::placeholder {
    color: rgba(243, 240, 255, 0.4);
}

.subscription-form .btn {
    opacity: 1;
    transform: none;
    cursor: pointer;
    padding: 0.9rem 2.2rem;
    font-size: 0.9rem;
    box-shadow: none;
}

.subscription-form .btn:hover {
    transform: scale(1.04) !important;
}

/* --- Reveal Animations --- */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* --- Modals (Glowy Glassmorphism) --- */

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 4, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    background-color: var(--primary-light);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--border-radius);
    padding: 3.5rem;
    max-width: 600px;
    width: 90%;
    position: relative;
    box-shadow: 0 25px 60px rgba(139, 92, 246, 0.15);
    transform: translateY(-40px) scale(0.95);
    transition: transform 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal.show .modal-content {
    transform: translateY(0) scale(1);
}

.modal-content h2 {
    font-size: 2.2rem;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--white) 30%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.modal-content p {
    margin-bottom: 1.5rem;
    color: var(--text-dim);
    font-size: 1.05rem;
}

.modal-content ul {
    margin-top: 1rem;
    padding-left: 0.5rem;
}

.modal-content ul li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.05rem;
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--text-dim);
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

.close-modal:hover {
    color: var(--accent-pink);
    background: rgba(255, 0, 127, 0.15);
    transform: rotate(90deg);
}

/* --- Mobile Responsiveness --- */

@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        justify-content: center;
        padding-top: 120px;
        text-align: center;
    }

    .hero-bg {
        width: 100%;
        height: 100%;
        clip-path: none;
        opacity: 0.25;
    }

    .hero::before {
        background: radial-gradient(circle, rgba(10, 8, 19, 0.95) 0%, rgba(10, 8, 19, 0.95) 100%);
    }

    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    section {
        padding: 6rem 0;
    }

    .section-title {
        margin-bottom: 3.5rem;
    }

    .subscription-form {
        flex-direction: column;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        border-radius: 0;
    }

    .subscription-form input {
        background: rgba(21, 17, 37, 0.85);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: var(--border-radius-pill);
        margin-bottom: 0.8rem;
        padding: 1.1rem 1.6rem;
    }

    .subscription-form input:focus {
        border-color: var(--accent);
    }

    .subscription-form .btn {
        width: 100%;
        padding: 1.1rem;
    }
}

/* --- Spotlight Mouse Glow & Interactive Depth --- */
.card, .affiliate-item, .gallery-card {
    position: relative;
    overflow: hidden;
}

.card::after, .affiliate-item::after, .gallery-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(350px circle at var(--mouse-x, -999px) var(--mouse-y, -999px), rgba(0, 255, 157, 0.12), transparent 80%);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card:hover::after, .affiliate-item:hover::after, .gallery-card:hover::after {
    opacity: 1;
}

.card *, .gallery-card * {
    position: relative;
    z-index: 3;
}

.affiliate-info {
    z-index: 3 !important;
}

/* ==========================================================================
   NEW STYLES: SVG Logos, Gallery, FAQs, and Timeline
   ========================================================================== */

/* --- SVG Logo Card (Hero Visual) --- */
.hero-logo-card {
    background: linear-gradient(135deg, rgba(21, 17, 37, 0.6) 0%, rgba(10, 8, 19, 0.85) 100%);
    padding: 3rem;
    border-radius: 30px;
    border: 1px solid rgba(0, 255, 157, 0.15);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5), 
        0 0 40px rgba(0, 255, 157, 0.05),
        inset 0 0 20px rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    text-align: center;
    width: 100%;
    max-width: 380px;
    transform: translateY(0);
    animation: floating-card 6s infinite ease-in-out;
    transition: var(--transition-smooth);
}

.hero-logo-card:hover {
    border-color: rgba(0, 255, 157, 0.4);
    box-shadow: 
        0 35px 65px rgba(0, 0, 0, 0.6), 
        0 0 50px rgba(0, 255, 157, 0.15);
}

.hero-logo {
    width: 100%;
    max-width: 220px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 255, 157, 0.2));
    transition: var(--transition);
}

.hero-logo-card:hover .hero-logo {
    transform: scale(1.04) rotate(1deg);
    filter: drop-shadow(0 15px 30px rgba(0, 255, 157, 0.35));
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--white);
    margin-top: 1.5rem;
}

.logo-text span {
    background: linear-gradient(135deg, var(--accent) 30%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-sub {
    font-size: 0.75rem;
    color: var(--text-dim);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 0.5rem;
}

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

/* --- Navbar SVG Logo --- */
.nav-logo-svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 5px rgba(0, 255, 157, 0.3));
    transition: var(--transition);
    margin-right: 0.5rem;
}

.logo:hover .nav-logo-svg {
    transform: rotate(-10deg) scale(1.1);
    filter: drop-shadow(0 0 10px rgba(0, 255, 157, 0.6));
}

/* --- Polaroid Gallery Grid (No Pixelation) --- */
.gallery {
    background: linear-gradient(to bottom, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-pink-glow) 0%, transparent 70%);
    bottom: -100px;
    left: -150px;
    filter: blur(120px);
    pointer-events: none;
}

.section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: -3.5rem auto 5rem auto;
    color: var(--text-dim);
    font-size: 1.05rem;
    line-height: 1.6;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.gallery-card {
    background: var(--primary-light);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 1.2rem;
    border-radius: 24px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.gallery-card:nth-child(odd) {
    transform: rotate(-1.5deg);
}

.gallery-card:nth-child(even) {
    transform: rotate(1.5deg);
}

.gallery-card:hover {
    transform: translateY(-12px) scale(1.03) rotate(0deg) !important;
    border-color: rgba(255, 0, 127, 0.25);
    box-shadow: 
        0 25px 50px rgba(255, 0, 127, 0.08),
        0 0 30px rgba(255, 0, 127, 0.03);
    background: var(--primary-lighter);
}

.gallery-image-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    filter: brightness(0.9) contrast(1.05) saturate(1.1);
}

.gallery-card:hover .gallery-image-wrapper img {
    transform: scale(1.06);
    filter: brightness(1) contrast(1.05) saturate(1.25);
}

.gallery-caption {
    padding: 0 0.5rem;
}

.gallery-caption h4 {
    font-size: 1.15rem;
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 0.25rem;
}

.gallery-caption span {
    font-size: 0.8rem;
    color: var(--accent-pink);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- FAQ Accordion Section --- */
.faq {
    background: var(--primary-dark);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--primary-light);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.faq-item:hover {
    border-color: rgba(0, 255, 157, 0.2);
    background: rgba(21, 17, 37, 0.8);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.8rem 2.2rem;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    text-align: left;
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    gap: 1rem;
    transition: var(--transition);
}

.faq-question span {
    line-height: 1.3;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(0, 255, 157, 0.05);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.faq-item.active {
    border-color: rgba(0, 255, 157, 0.35);
    box-shadow: 
        0 15px 35px rgba(0, 255, 157, 0.05),
        0 0 20px rgba(0, 255, 157, 0.02);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--accent);
    color: var(--primary-dark);
    font-weight: 700;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
    padding: 0 2.2rem;
    color: var(--text-dim);
    font-size: 1.02rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding-bottom: 2rem;
}

.faq-answer ul {
    margin-top: 1rem;
    padding-left: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.faq-answer li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.faq-answer li strong {
    color: var(--white);
}

/* --- Timeline Section --- */
.timeline {
    background: linear-gradient(to bottom, var(--primary-dark) 0%, var(--primary) 100%);
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--accent-purple-glow) 0%, transparent 70%);
    top: -100px;
    right: -150px;
    filter: blur(120px);
    pointer-events: none;
}

.timeline-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 45px;
    top: 20px;
    width: 2px;
    height: calc(100% - 40px);
    background: linear-gradient(to bottom, var(--accent) 0%, var(--accent-purple) 50%, var(--accent-pink) 100%);
    opacity: 0.25;
}

.timeline-item {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-number {
    width: 90px;
    height: 90px;
    background: var(--primary-light);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    z-index: 2;
    transition: var(--transition);
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.timeline-item:nth-child(1) .timeline-number { border-color: rgba(0, 255, 157, 0.3); color: var(--accent); }
.timeline-item:nth-child(2) .timeline-number { border-color: rgba(139, 92, 246, 0.3); color: var(--accent-purple); }
.timeline-item:nth-child(3) .timeline-number { border-color: rgba(255, 0, 127, 0.3); color: var(--accent-pink); }
.timeline-item:nth-child(4) .timeline-number { border-color: rgba(0, 210, 255, 0.3); color: #00d2ff; }

.timeline-item:hover .timeline-number {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.05);
}

.timeline-item:nth-child(1):hover .timeline-number { box-shadow: 0 0 25px rgba(0, 255, 157, 0.25); border-color: var(--accent); }
.timeline-item:nth-child(2):hover .timeline-number { box-shadow: 0 0 25px rgba(139, 92, 246, 0.25); border-color: var(--accent-purple); }
.timeline-item:nth-child(3):hover .timeline-number { box-shadow: 0 0 25px rgba(255, 0, 127, 0.25); border-color: var(--accent-pink); }
.timeline-item:nth-child(4):hover .timeline-number { box-shadow: 0 0 25px rgba(0, 210, 255, 0.25); border-color: #00d2ff; }

.timeline-badge {
    position: absolute;
    left: 120px;
    top: 0;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.3rem 0.9rem;
    border-radius: var(--border-radius-pill);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-item:nth-child(1) .timeline-badge { color: var(--accent); background: rgba(0, 255, 157, 0.08); border-color: rgba(0, 255, 157, 0.2); }
.timeline-item:nth-child(2) .timeline-badge { color: var(--accent-purple); background: rgba(139, 92, 246, 0.08); border-color: rgba(139, 92, 246, 0.2); }
.timeline-item:nth-child(3) .timeline-badge { color: var(--accent-pink); background: rgba(255, 0, 127, 0.08); border-color: rgba(255, 0, 127, 0.2); }
.timeline-item:nth-child(4) .timeline-badge { color: #00d2ff; background: rgba(0, 210, 255, 0.08); border-color: rgba(0, 210, 255, 0.2); }

.timeline-content {
    background: var(--primary-light);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 2.5rem 3rem 2.8rem 3rem;
    border-radius: var(--border-radius);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
    width: 100%;
    margin-top: 1.5rem;
}

.timeline-item:hover .timeline-content {
    background: var(--primary-lighter);
    border-color: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
}

.timeline-content h3 {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 0.8rem;
    letter-spacing: -0.5px;
}

.timeline-content p {
    color: var(--text-dim);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* --- Enhanced Responsive Layout Adjustments --- */
@media (max-width: 1024px) {
    .hero-container-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero {
        padding-top: 140px;
        min-height: auto;
        padding-bottom: 6rem;
    }

    .hero-container-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        order: -1; /* Place logo visual above titles on tablet/mobile for visual hierarchy */
    }

    .hero-logo-card {
        max-width: 320px;
        padding: 2.2rem;
    }

    .hero-logo {
        max-width: 170px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .faq-question {
        padding: 1.5rem 1.6rem;
        font-size: 1.05rem;
    }

    .faq-answer {
        padding: 0 1.6rem;
        font-size: 0.95rem;
    }

    .faq-item.active .faq-answer {
        padding-bottom: 1.6rem;
    }

    .timeline-container::before {
        left: 25px;
    }

    .timeline-item {
        gap: 1.5rem;
    }

    .timeline-number {
        width: 54px;
        height: 54px;
        font-size: 1.3rem;
    }

    .timeline-badge {
        left: 80px;
    }

    .timeline-content {
        padding: 2rem 2rem 2.2rem 2rem;
    }

    .timeline-item:hover .timeline-content {
        transform: translateY(-5px); /* On mobile tilt up instead of horizontal translation */
    }
}

/* --- Locked Videogame Style Club Cards --- */
.locked-item {
    position: relative;
    cursor: not-allowed !important;
    overflow: hidden;
}

.locked-item img {
    filter: grayscale(1) blur(3px) brightness(0.22);
    transition: var(--transition-smooth);
}

.locked-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.2rem 1.8rem;
    text-align: center;
    z-index: 5;
    background: rgba(10, 8, 19, 0.45);
}

.lock-icon {
    font-size: 2.6rem;
    margin-bottom: 0.8rem;
    filter: drop-shadow(0 0 8px rgba(255, 0, 127, 0.5));
    animation: lock-pulse 2s infinite alternate ease-in-out;
}

.locked-item h3 {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0.4rem;
    letter-spacing: -0.5px;
    font-family: 'Space Grotesk', sans-serif;
}

.locked-badge {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--accent-pink);
    border: 1px solid var(--accent-pink);
    padding: 0.25rem 0.8rem;
    border-radius: var(--border-radius-pill);
    background: rgba(255, 0, 127, 0.08);
    letter-spacing: 1.5px;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    box-shadow: 0 0 10px rgba(255, 0, 127, 0.15);
}

.locked-sub {
    font-size: 0.8rem;
    color: var(--text-dim);
    opacity: 0.75;
}

/* Shake animation on hover for locked items to represent locked status */
.locked-item:hover img {
    filter: grayscale(1) blur(4px) brightness(0.18);
}

.locked-item:hover {
    box-shadow: 0 15px 35px rgba(255, 0, 127, 0.08) !important;
    animation: locked-shake 0.4s ease;
}

@keyframes lock-pulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 4px rgba(255, 0, 127, 0.3));
    }
    100% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 12px rgba(255, 0, 127, 0.7));
    }
}

@keyframes locked-shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-6px); }
    40%, 80% { transform: translateX(6px); }
}

/* --- Active Badge for CSC Sol --- */
.active-badge {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 0.25rem 0.8rem;
    border-radius: var(--border-radius-pill);
    background: rgba(0, 255, 157, 0.15);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(0, 255, 157, 0.3);
    z-index: 5;
}
