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

:root {
    /* Font Families */
    --font-primary: 'Poppins', sans-serif;

    /* Font Sizes */
    --fs-h1: clamp(1.3rem, 2.5vw, 3rem);
    --fs-h2: clamp(1.25rem, 2.25vw, 2.5rem);
    --fs-h3: clamp(1.2rem, 2vw, 2rem);
    --fs-h4: clamp(1.15rem, 1.75vw, 1.75rem);
    --fs-h5: clamp(1.1rem, 1.5vw, 1.5rem);
    --fs-h6: clamp(1rem, 1.25vw, 1.25rem);
    --fs-p-normal: 1rem;
    --fs-p-small: 0.875rem;

    /* Background Colors */
    --color-bg-main: #180a32;
    --color-bg-surface: #12082b;
    --color-bg-offcanvas: #0f0727;

    /* Primary Colors */
    --color-primary: #7b00ff;
    --color-primary-light: #9a3dff;

    /* Text Colors */
    --color-text-light: #ffffff;
    --color-text-muted: #d1d1d1;
    --color-text-highlight: #5ce495;

    /* Border Colors */
    --color-border-dark: #3d1c7a;

    /* Gradients */
    --gradient-highlight: linear-gradient(to right, #54aadf, #5ce495);
    --gradient-divider: linear-gradient(to right, #00d2ff, #7a00ff);
    --gradient-tab: linear-gradient(to right, #54aadf, #9046fe);
}

body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: var(--font-primary);
    background-color: var(--color-bg-main);
}

/* Typography */
h1,
.h1 {
    font-size: var(--fs-h1);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

h2,
.h2 {
    font-size: var(--fs-h2);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.5em;
}

h3,
.h3 {
    font-size: var(--fs-h3);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5em;
}

h4,
.h4 {
    font-size: var(--fs-h4);
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0.5em;
}

h5,
.h5 {
    font-size: var(--fs-h5);
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 0.5em;
}

h6,
.h6 {
    font-size: var(--fs-h6);
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 0.5em;
}

p,
.p-normal {
    font-size: var(--fs-p-normal);
    line-height: 1.6;
    margin-bottom: 1em;
}

.p-small,
small {
    font-size: var(--fs-p-small);
    line-height: 1.5;
}

/* Buttons */
.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    border: 1px solid var(--color-primary);
    padding: 10px 24px;
    font-size: var(--fs-p-normal);
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: var(--color-primary-light);
    border-color: var(--color-primary-light);
    color: var(--color-text-light);
    box-shadow: 0 4px 15px rgba(123, 0, 255, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    padding: 10px 24px;
    font-size: var(--fs-p-normal);
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    box-shadow: 0 4px 15px rgba(123, 0, 255, 0.2);
}

.logo-area img {
    height: 80px;
    transition: height 0.35s ease;
}

.main-container {
    /* height: 100vh; */
    width: 100%;
    overflow: hidden;
    position: relative;
}

.master-banner {
    min-height: 60vh;
    height: auto;
    width: 100%;
    background-image: url('assets/images/master-banner3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    flex-shrink: 0;
}

/* Gradient line separator */
.master-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-divider);
    z-index: 2;
}

.master-content {
    min-height: 40vh;
    width: 100%;
    background-color: var(--color-bg-main);
    position: relative;
    padding-bottom: 80px;
    box-sizing: border-box;
}

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

.highlight-text-h2 {
    font-size: var(--fs-h4) !important;
}

.text-desc {
    color: var(--color-text-muted);
    max-width: 500px;
}

/* Register Button */
.register-btn-wrap {
    display: inline-flex;
    border: 1px solid var(--color-border-dark);
    background-color: var(--color-bg-surface);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;

}

.register-btn-wrap:hover {
    box-shadow: 0 0 15px rgba(123, 0, 255, 0.4);
    border-color: var(--color-primary);
}

.register-btn {
    background: transparent;
    color: var(--color-text-light);
    border: none;
    padding: 10px 30px;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.register-btn-wrap:hover .register-btn {
    color: var(--color-text-light);
}

.register-icon {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.register-btn-wrap:hover .register-icon {
    background-color: var(--color-primary-light);
}

.register-icon i {
    transition: transform 0.3s ease;
}

.register-btn-wrap:hover .register-icon i {
    transform: translateX(5px);
}

/* Light / white variant — used on light-background sections */
.register-btn-wrap--light {
    background-color: #ffffff;
    border-color: rgba(123, 0, 255, 0.35);
}

.register-btn-wrap--light .register-btn {
    color: #1a1a2e;
}

.register-btn-wrap--light:hover {
    background-color: #f8f4ff;
    border-color: var(--color-primary);
    box-shadow: 0 0 18px rgba(123, 0, 255, 0.2);
}

.register-btn-wrap--light:hover .register-btn {
    color: #1a1a2e;
}

/* Marquee */
.bottom-marquee {
    height: 80px;
    width: 100%;
    background-color: var(--color-primary);
    bottom: 0;
    left: 0;
    z-index: 10;
    white-space: nowrap;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    height: 100%;
    animation: marquee 20s linear infinite;
    color: var(--color-text-highlight);
    font-size: 2rem;
    font-weight: 600;
}

.marquee-content span {
    padding: 0 15px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Navbar toggler custom */
.custom-toggler {
    font-size: 2.5rem;
    color: var(--color-text-light);
    cursor: pointer;
    transition: color 0.3s ease;
}

.custom-toggler:hover {
    color: var(--color-text-highlight);
}

/* Offcanvas custom */
.offcanvas.text-bg-dark {
    background-color: var(--color-bg-offcanvas) !important;
}

.nav-link {
    color: var(--color-text-light) !important;
    padding: 10px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--color-text-highlight) !important;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .master-content {
        text-align: center;
    }

    .text-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .col-lg-6 {
        display: flex;
        flex-direction: column;
        align-items: left;
        justify-content: left;
    }
}

@media (max-width: 768px) {
    .main-container {
        height: auto;
        min-height: 100vh;
        overflow: auto;
    }

    .master-banner {
        height: 50vh;
    }

    .master-content {
        height: auto;
        padding-top: 40px;
        padding-bottom: 110px;
    }

    .bottom-marquee {
        position: fixed;
    }

    h2.fw-normal {
        font-size: 1.8rem !important;
    }

    .highlight-text {}

    img[alt="Changemakers World Cup 2026"] {
        max-height: 180px !important;
    }
}

/* =============================================
   Rewards Section
   ============================================= */
.rewards-section {
    background: #fff;
    padding: 90px 0 110px;
    position: relative;
    overflow: hidden;
}

.rewards-section::before {
    content: '';
    position: absolute;
    top: -120px;
    left: -200px;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(123, 0, 255, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.rewards-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(92, 228, 149, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.rewards-section .container {
    position: relative;
    z-index: 1;
}

.rewards-header {
    text-align: left;
    margin-bottom: 48px;
}

.rewards-h2 {
    background: var(--gradient-highlight);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.rewards-tagline {
    margin: 0 auto;
}

.rewards-sub-header {
    margin-bottom: 28px;
}

.rewards-h3 {
    color: #1a1a2e;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 0;
}

/* .rewards-h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 3px;
    background: linear-gradient(to right, #54aadf, #5ce495);
    border-radius: 2px;
} */

/* --- Reward Tiles --- */
.rewards-tile {
    position: relative;
    border-radius: 20px;
    padding: 30px 26px 26px;
    height: 100%;
    min-height: 220px;
    overflow: hidden;
    cursor: default;
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.rewards-tile:hover {
    transform: translateY(-10px);
}


.rewards-tile-rank {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    align-self: flex-start;
}

.rewards-tile-icon {
    font-size: 2.2rem;
    line-height: 1;
}

.rewards-tile-body p {
    margin: 0;
}

/* Top 3 — Gold */
.rewards-tile--top3 {
    background: #fff;
    border: 1.5px solid rgba(255, 200, 50, 0.5);
    box-shadow: 0 4px 32px rgba(255, 180, 0, 0.12);
}

.rewards-tile--top3:hover {
    box-shadow: 0 20px 64px rgba(255, 180, 0, 0.28);
    border-color: rgba(255, 200, 50, 0.7);
}

.rewards-tile--top3 .rewards-tile-rank {
    background: rgba(255, 200, 50, 0.14);
    color: #232323;
    border: 1px solid rgba(255, 200, 50, 0.3);
}

.rewards-tile--top3 .rewards-tile-icon {
    color: #ffd700;
}

/* Top 5 — Sky Blue */
.rewards-tile--top5 {
    background: #fff;
    border: 1.5px solid rgba(79, 195, 247, 0.5);
    box-shadow: 0 4px 32px rgba(79, 195, 247, 0.1);
}

.rewards-tile--top5:hover {
    box-shadow: 0 20px 64px rgba(79, 195, 247, 0.24);
    border-color: rgba(79, 195, 247, 0.65);
}

.rewards-tile--top5 .rewards-tile-rank {
    background: rgba(79, 195, 247, 0.12);
    color: #4fc3f7;
    border: 1px solid rgba(79, 195, 247, 0.28);
}

.rewards-tile--top5 .rewards-tile-icon {
    color: #4fc3f7;
}

/* Top 50 — Green */
.rewards-tile--top50 {
    background: #fff;
    border: 1.5px solid rgba(92, 228, 149, 0.5);
    box-shadow: 0 4px 32px rgba(92, 228, 149, 0.1);
}

.rewards-tile--top50:hover {
    box-shadow: 0 20px 64px rgba(92, 228, 149, 0.24);
    border-color: rgba(92, 228, 149, 0.65);
}

.rewards-tile--top50 .rewards-tile-rank {
    background: rgba(92, 228, 149, 0.12);
    color: #5ce495;
    border: 1px solid rgba(92, 228, 149, 0.28);
}

.rewards-tile--top50 .rewards-tile-icon {
    color: #5ce495;
}

/* ── Image Background Tiles (Row 1: Top 3 / Top 5 / Top 50) ────── */
.rewards-tile--img {
    padding: 0;
    gap: 0;
    min-height: 410px;
    overflow: hidden;
    background: #0a0418 !important;
    cursor: pointer;
}

/* Suppress plain hover lift — GSAP handles it */
.rewards-tile--img:hover {
    transform: translateY(-8px);
}

/* Parallax background layer (GSAP moves this on mousemove) */
.rt-bg1 {
    position: absolute;
    inset: 0%;
    background: #07122e url('assets/images/impact-summit.png');
    background-size: contain;
    background-position: right top;
    background-repeat: no-repeat;
    z-index: 0;
    will-change: transform;
}

.rt-bg2 {
    position: absolute;
    inset: -9%;
    background-image: url('assets/images/podcast.png');
    background-size: cover;
    background-position: center top;
    z-index: 0;
    will-change: transform;
}

.rt-bg3 {
    position: absolute;
    inset: -9%;
    background-image: url('assets/images/delhi-bangalore.png');
    background-size: cover;
    background-position: center top;
    z-index: 0;
    will-change: transform;
}

/* Cinematic gradient overlay — bright at top, very dark at bottom */
.rewards-tile--top3::before {
    background: linear-gradient(270deg,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0) 50%,
            rgba(0, 0, 0, 0) 100%) !important;
}

.rewards-tile--img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(175deg,
            rgba(0, 0, 0, 0.08) 0%,
            rgba(0, 0, 0, 0.45) 50%,
            rgba(0, 0, 0, 0.92) 100%);
    z-index: 1;
    pointer-events: none;
    border-radius: inherit;
    transition: background 0.2s ease;
}

.rewards-tile--img:hover::before {
    background: linear-gradient(175deg,
            rgba(0, 0, 0, 0.04) 0%,
            rgba(0, 0, 0, 0.35) 45%,
            rgba(0, 0, 0, 0.88) 100%);
}

/* Responsive: slightly taller tiles on mobile stack */
@media (max-width: 991px) {
    .rewards-tile--top3::before {
        background: linear-gradient(175deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.92) 100%) !important;
    }
}


/* Content wrapper: rank → top, body → bottom */
.rt-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    min-height: inherit;
    padding: 22px 22px 24px;
}

/* Rank badge — frosted glass, sits at top */
.rewards-tile--img .rewards-tile-rank {
    align-self: flex-start;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: var(--fs-h4);
    letter-spacing: 2px;
    padding: 5px 16px;
}

.rewards-tile--top3 .rewards-tile-body {
    width: 100%;
    max-width: 520px;
}

.rewards-tile--img .rewards-tile-body p {
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.5;
    font-weight: 100;
    margin: 0;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.7);
}

/* Per-tier border + glow overrides for image cards */
.rewards-tile--img.rewards-tile--top3 {
    border-color: rgba(255, 200, 50, 0.55) !important;
    box-shadow: 0 6px 36px rgba(255, 180, 0, 0.22) !important;
}

.rewards-tile--img.rewards-tile--top3:hover {
    box-shadow: 0 28px 70px rgba(255, 180, 0, 0.45) !important;
    border-color: rgba(255, 200, 50, 0.8) !important;
}

.rewards-tile--img.rewards-tile--top3 .rewards-tile-rank {
    background: rgb(255, 200, 50);
    color: #232323;
    border: 1px solid rgba(255, 200, 50, 0.3);
}

.rewards-tile--img.rewards-tile--top5 {
    border-color: rgba(79, 195, 247, 0.55) !important;
    box-shadow: 0 6px 36px rgba(79, 195, 247, 0.18) !important;
}

.rewards-tile--img.rewards-tile--top5:hover {
    box-shadow: 0 28px 70px rgba(79, 195, 247, 0.42) !important;
    border-color: rgba(79, 195, 247, 0.8) !important;
}

.rewards-tile--img.rewards-tile--top5 .rewards-tile-rank {
    background: rgb(79, 194, 247);
    border-color: rgba(79, 195, 247, 0.4);
    color: #232323;
}

.rewards-tile--img.rewards-tile--top50 {
    border-color: rgba(92, 228, 149, 0.55) !important;
    box-shadow: 0 6px 36px rgba(92, 228, 149, 0.18) !important;
}

.rewards-tile--img.rewards-tile--top50:hover {
    box-shadow: 0 28px 70px rgba(92, 228, 149, 0.42) !important;
    border-color: rgba(92, 228, 149, 0.8) !important;
}

.rewards-tile--img.rewards-tile--top50 .rewards-tile-rank {
    background: rgb(92, 228, 149);
    border-color: rgba(92, 228, 149, 0.4);
    color: #232323;
}

/* Responsive: slightly taller tiles on mobile stack */
@media (max-width: 767.98px) {
    .rewards-tile--img {
        min-height: 260px;
    }
}

/* Top 100 — Purple */
.rewards-tile--top100 {
    background: #fff;
    border: 1.5px solid rgba(154, 61, 255, 0.4);
    box-shadow: 0 4px 32px rgba(154, 61, 255, 0.1);
}

.rewards-tile--top100:hover {
    box-shadow: 0 20px 64px rgba(154, 61, 255, 0.28);
    border-color: rgba(154, 61, 255, 0.65);
}

.rewards-tile--top100 .rewards-tile-rank {
    background: rgba(154, 61, 255, 0.14);
    color: #9a3dff;
    border: 1px solid rgba(154, 61, 255, 0.28);
}

.rewards-tile--top100 .rewards-tile-icon {
    color: #9a3dff;
}

/* Top 500 — Cyan */
.rewards-tile--top500 {
    background: #fff;
    border: 1.5px solid rgba(34, 211, 238, 0.5);
    box-shadow: 0 4px 32px rgba(34, 211, 238, 0.1);
}

.rewards-tile--top500:hover {
    box-shadow: 0 20px 64px rgba(34, 211, 238, 0.22);
    border-color: rgba(34, 211, 238, 0.6);
}

.rewards-tile--top500 .rewards-tile-rank {
    background: rgba(34, 211, 238, 0.1);
    color: #22d3ee;
    border: 1px solid rgba(34, 211, 238, 0.24);
}

.rewards-tile--top500 .rewards-tile-icon {
    color: #22d3ee;
}

/* All Participants — Soft */
.rewards-tile--all {
    background: #fff;
    border: 1.5px solid rgba(130, 130, 170, 0.35);
    box-shadow: 0 4px 32px rgba(130, 130, 170, 0.08);
}

.rewards-tile--all:hover {
    box-shadow: 0 20px 64px rgba(180, 180, 210, 0.16);
    border-color: rgba(180, 180, 210, 0.44);
}

.rewards-tile--all .rewards-tile-rank {
    background: rgba(130, 130, 170, 0.1);
    color: #6b6b9a;
    border: 1px solid rgba(130, 130, 170, 0.28);
}

.rewards-tile--all .rewards-tile-icon {
    color: #6b6b9a;
}

/* --- School & Teacher Cards --- */
.rewards-school-wrap {
    padding-top: 56px;
}

.rewards-school-card {
    border-radius: 20px;
    padding: 36px 30px;
    display: flex;
    gap: 22px;
    align-items: flex-start;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.rewards-school-card:hover {
    transform: translateY(-8px);
}

.rewards-school-card--school {
    background: #fff;
    border: 1.5px solid rgba(217, 70, 239, 0.4);
    box-shadow: 0 4px 32px rgba(217, 70, 239, 0.08);
}

.rewards-school-card--school:hover {
    box-shadow: 0 20px 64px rgba(217, 70, 239, 0.24);
    border-color: rgba(217, 70, 239, 0.65);
}

.rewards-school-card--school .rsc-icon {
    color: #d946ef;
    background: rgba(217, 70, 239, 0.12);
    border: 1px solid rgba(217, 70, 239, 0.24);
}

.rewards-school-card--teacher {
    background: #fff;
    border: 1.5px solid rgba(84, 170, 223, 0.45);
    box-shadow: 0 4px 32px rgba(84, 170, 223, 0.08);
}

.rewards-school-card--teacher:hover {
    box-shadow: 0 20px 64px rgba(84, 170, 223, 0.24);
    border-color: rgba(84, 170, 223, 0.65);
}

.rewards-school-card--teacher .rsc-icon {
    color: #54aadf;
    background: rgba(84, 170, 223, 0.12);
    border: 1px solid rgba(84, 170, 223, 0.24);
}

.rsc-icon {
    font-size: 1.55rem;
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.35s ease;
}

.rsc-title {
    color: #1a1a2e;
    margin-bottom: 10px;
}

.rsc-body {
    margin: 0;
}

@media (max-width: 991px) {
    .rewards-h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 767.98px) {
    .rewards-section {
        padding: 64px 0 84px;
    }

    .rewards-h2 {
        font-size: 2.2rem;
    }

    .rewards-header {
        margin-bottom: 44px;
    }

    .rewards-school-card {
        flex-direction: column;
        gap: 16px;
    }

    .rsc-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        border-radius: 14px;
    }
}

/* Footer */
.main-footer {
    background-color: #0a0418;
    color: var(--color-text-light);
}

.footer-links {
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 25px;
}

.footer-links a {
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-links a:hover {
    color: var(--color-text-highlight);
    opacity: 1;
}

/* What We Are Building Section */
.building-section {
    background-color: #f3e8ff;
    position: relative;
}

.building-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-highlight);
}

.bee-w-25 {
    width: clamp(80px, 10%, 15%);
}

.highlight-text-purple {
    background: linear-gradient(to right, #df73ff, #803afb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* The 5 Tracks Section */
.tracks-section {
    background-color: #f3e8ff;
    position: relative;
}

.tracks-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-highlight);
}

.track-slide-content {
    height: 550px;
    background-color: #0a0418;
}

.track-bg {
    background-size: cover;
    background-position: center;
    opacity: 0.6;
}

.track-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 70%);
}

.thumb-slider {
    padding-top: 10px;
    padding-bottom: 20px;
}

.thumb-card {
    position: relative;
    z-index: 1;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 120px;
}

/* Base glowing effect inside thumbnail */
.thumb-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--thumb-glow) 0%, transparent 60%);
    opacity: 0.5;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.thumb-bg-1 {
    background: url(assets/images/gradient-1.png);
    background-size: cover;
}

.thumb-bg-2 {
    background: url(assets/images/gradient-2.png);
    background-size: cover;
}

.thumb-bg-3 {
    background: url(assets/images/gradient-3.png);
    background-size: cover;
}

.thumb-bg-4 {
    background: url(assets/images/gradient-4.png);
    background-size: cover;
}

.thumb-bg-5 {
    background: url(assets/images/gradient-5.png);
    background-size: cover;
}

.thumb-title {
    color: var(--color-text-light);
}

.thumb-hashtag {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
    transition: color 0.3s ease;
}

.thumb-card:hover::before {
    opacity: 0.8;
}

/* Active State Border Gradient */
.swiper-slide-thumb-active .thumb-card {}

.swiper-slide-thumb-active .thumb-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, #df73ff, #803afb);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}

.swiper-slide-thumb-active .thumb-title {
    color: var(--color-primary-light);
}

.swiper-slide-thumb-active .thumb-hashtag {
    color: var(--color-primary-light);
}

/* Mobile nav row above thumb cards */
.main-slider-nav {
    display: none;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    position: absolute;
    padding: 0px 10px;
    width: 100%;
    top: 50%;
    z-index: 99;
    margin-top: -25px;
}

.main-nav-btn {
    background: rgba(0, 0, 0, 0.35);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background 0.2s;
}

.main-nav-btn:hover {
    background: rgba(0, 0, 0, 0.6);
}

.main-nav-btn.swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
}

/* Pagination on the main image */
.main-slider-pagination {
    bottom: 12px;
}

.main-slider-pagination .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.6;
}

.main-slider-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--color-primary-light, #a855f7);
}

@media (min-width: 992px) {
    .main-slider-pagination {
        display: none !important;
    }
}

@media (max-width: 991.98px) {
    .main-slider-nav {
        display: flex;
    }
}

/* =============================================
   How It Works Section
   ============================================= */
.how-it-works-section {
    background-color: #fdfaff;
    position: relative;
}

/* Intro card */
.hiw-intro-card {
    width: 100%;
    margin: 0 auto;
    border: 1.5px solid rgba(168, 85, 247, 0.28);
    border-radius: 20px;
    overflow: visible;
    background: #ffffff;
    position: relative;
}

/* Bee column */
.hiw-bee-area {
    position: relative;
    min-height: 340px;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0 20px;
    overflow: visible;
}

/* Glowing platform ring under bee */
.hiw-bee-area::before {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 40%;
    transform: translateX(-50%);
    width: 300px;
    height: 70px;
    background: radial-gradient(ellipse at center,
            rgba(99, 102, 241, 0.38) 0%,
            rgba(59, 130, 246, 0.18) 50%,
            transparent 75%);
    border-radius: 50%;
    filter: blur(8px);
    pointer-events: none;
}

.hiw-bee-img {
    position: relative;
    z-index: 2;
    max-height: 480px;
    width: auto;
    display: block;
    transform: translateX(-50px);
}

/* Text side */
.hiw-text-area {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hiw-eyebrow {
    color: #1a1a2e;
    margin-bottom: 6px;
}

.hiw-heading {
    background: linear-gradient(to right, #d946ef, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}

.hiw-body-text {
    color: #555;
    margin: 0;
}

@media (max-width: 991px) {
    .hiw-intro-card {
        width: 100%;
    }
}

/* ── Tabs ─────────────────────────────────── */
.hiw-tabs {
    display: flex;
    position: relative;
    border-bottom: 1px solid #e2d9f3;
}

.hiw-tab {
    flex: 1;
    padding: 16px 12px 20px;
    text-align: center;
    cursor: pointer;
}

.hiw-tab-label {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    transition: color 0.3s ease;
}

.hiw-tab-sub {
    margin-top: 5px;
    transition: color 0.3s ease;
}

.hiw-tab.active .hiw-tab-label {
    color: var(--color-primary);
}

.hiw-tab.active .hiw-tab-sub {
    color: var(--color-primary-light);
}

.hiw-tab:not(.hiw-tab-disabled):not(.active):hover .hiw-tab-label {
    color: var(--color-primary);
}

.hiw-tab-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

/* Sliding underline indicator (GSAP-driven) */
.hiw-tab-indicator {
    position: absolute;
    bottom: -1px;
    height: 3px;
    background: linear-gradient(to right, var(--color-primary), var(--color-primary-light));
    border-radius: 2px 2px 0 0;
    pointer-events: none;
}

/* ── Tab Panels ───────────────────────────── */
.hiw-panels-wrap {
    margin-top: 38px;
}

.hiw-panel {
    display: none;
}

.hiw-panel.active {
    display: block;
}

.hiw-content-card {
    border: 1.5px solid rgba(168, 85, 247, 0.22);
    border-radius: 16px;
    overflow: visible;
    background: #ffffff;
    position: relative;
}

.hiw-panel-img-wrap {
    width: 250px;
    flex-shrink: 0;
    background: var(--gradient-tab);
    border-radius: 14px 0 0 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 14px;
    overflow: visible;
    position: relative;
    z-index: 2;
    height: 100%;
}

.hiw-panel-img {
    width: 200px;
    height: auto;
    display: block;
    margin-top: -50px;
    margin-bottom: -50px;
    position: relative;
    z-index: 3;
}

.hiw-mission-title {
    color: var(--color-primary);
    margin-bottom: 12px;
}

.hiw-mission-body {
    color: #555;
    margin: 0;
}

/* ── Responsive ───────────────────────────── */
@media (max-width: 991px) {
    .hiw-heading {
        font-size: 2rem;
    }

    .hiw-bee-area {
        min-height: 260px;
        padding-top: 20px;
    }

    .hiw-bee-img {
        width: 70%;
        max-height: auto;
        transform: translateX(0px);
    }

    .hiw-bee-area::before {
        left: 50%;
    }
}

@media (max-width: 768px) {
    .hiw-heading {
        font-size: 1.7rem;
    }

    .hiw-tab-label {
        font-size: 0.88rem;
    }

    .hiw-panel-img-wrap {
        width: 100%;
        padding: 16px 12px;
        border-radius: 0px !important;
    }

    .hiw-panel-img {
        width: 50%;
        height: auto;
        display: block;
        margin-top: 0px;
        margin-bottom: -40px;
        position: relative;
        z-index: 3;
    }

    .hiw-tab {
        padding: 12px 8px 16px;
    }
}

/* ── Mission Accordion (mobile) ───────────────── */
.hiw-accordion {
    display: none;
}

.hiw-acc-item {
    border: 1.5px solid rgba(168, 85, 247, 0.22);
    border-radius: 12px !important;
    overflow: hidden;
    margin-bottom: 10px;
    background: #fff;
}

.hiw-acc-btn {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    background: #fff;
    color: #1a1a2e;
    padding: 16px 20px;
    box-shadow: none !important;
}

.hiw-acc-btn:not(.collapsed) {
    background: #faf5ff;
    color: var(--color-primary);
}

.hiw-acc-btn::after {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
}

.hiw-acc-btn:not(.collapsed)::after {
    transform: translateY(-50%) rotate(-180deg);
}

.hiw-acc-label {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
}

.hiw-acc-sub {
    font-size: 0.85rem;
    color: var(--color-primary-light);
    font-weight: 400;
}

.hiw-acc-btn.collapsed .hiw-acc-sub {
    color: #888;
}

.hiw-acc-item .hiw-content-card {
    border: none;
    border-radius: 0;
    border-top: 1px solid rgba(168, 85, 247, 0.15);
}

@media (max-width: 767.98px) {

    .hiw-tabs-wrap,
    .hiw-panels-wrap {
        display: none;
    }

    .hiw-accordion {
        display: block;
    }
}

/* =============================================
   YouTube Channel CTA — How It Works Section
   ============================================= */
.yt-cta-wrap {
    padding: 0 0 20px;
}

.yt-cta-box {
    display: block;
    background-color: var(--color-bg-main);
    border: 1.5px solid rgba(223, 115, 255, 0.35);
    border-radius: 20px;
    padding: 36px 40px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 40px rgba(128, 58, 251, 0.18), inset 0 1px 0 rgba(223, 115, 255, 0.08);
}

.yt-cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(128, 58, 251, 0.08) 0%, rgba(223, 115, 255, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
    pointer-events: none;
}

.yt-cta-box:hover {
    transform: translateY(-3px);
    border-color: rgba(223, 115, 255, 0.6);
    box-shadow: 0 20px 64px rgba(128, 58, 251, 0.3), inset 0 1px 0 rgba(223, 115, 255, 0.12);
}

.yt-cta-box:hover::before {
    opacity: 1;
}

.yt-cta-inner {
    position: relative;
    z-index: 1;
}

.yt-icon-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff1a1a 0%, #cc0000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 28px rgba(255, 0, 0, 0.38);
    flex-shrink: 0;
}

.yt-icon-circle i {
    font-size: 2rem;
    color: #fff;
    line-height: 1;
}

.yt-cta-eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: rgba(223, 115, 255, 0.85);
    font-weight: 600;
    margin: 0;
}

.yt-cta-heading {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
}

.yt-cta-body {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.65;
    margin: 0;
}

.yt-subscribe-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #ff2020 0%, #cc0000 100%);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 14px 26px;
    border-radius: 50px;
    white-space: nowrap;
    letter-spacing: 0.02em;
    box-shadow: 0 6px 22px rgba(255, 0, 0, 0.32);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.yt-cta-box:hover .yt-subscribe-btn {
    box-shadow: 0 12px 34px rgba(255, 0, 0, 0.48);
    transform: scale(1.04);
}

@media (max-width: 767.98px) {
    .yt-cta-box {
        padding: 24px 20px;
    }

    .yt-cta-action-col {
        width: 100%;
    }

    .yt-subscribe-btn {
        width: 100%;
        justify-content: center;
    }
}

/* =============================================
   CWC — What is the Changemakers World Cup?
   ============================================= */
.cwc-what-section {
    position: relative;
    background-image: url('assets/images/what-is-the-changemakers-bg.png');
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
}

/* --- Hero background image strip --- */
.cwc-hero-area {
    position: relative;
    height: 460px;
    overflow: visible;
    z-index: 2;
}

.cwc-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('assets/images/what-is-the-changemakers-bg.png');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

/* Gradient fade: bg image → dark content */
.cwc-hero-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 240px;
    background: linear-gradient(to bottom, transparent 0%, #0a0418 100%);
    z-index: 1;
    pointer-events: none;
}

/* --- Bee --- */
.cwc-bee-wrap {
    position: absolute;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    text-align: center;
}

.cwc-bee {
    height: 380px;
    width: auto;
    display: block;
    filter: drop-shadow(0 24px 60px rgba(123, 0, 255, 0.35));
}

/* --- Dark content area --- */
.cwc-content-area {
    position: relative;
    z-index: 1;
    padding-top: 160px;
    /* background-color: #0a0418; */
}

.cwc-body-text {
    color: rgba(255, 255, 255, 0.68);
}

/* --- Stat cards --- */
.cwc-stat-card {
    background: rgba(61, 28, 122, 0.18);
    border: 1px solid rgba(61, 28, 122, 0.65);
    border-radius: 12px;
    padding: 22px 18px 68px 22px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 100%;
    min-height: 160px;
    transition:
        transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.4s ease,
        border-color 0.4s ease,
        background-color 0.4s ease;
}

/* Inner radial glow — fades in on hover */
.cwc-stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(ellipse at 85% 90%, rgba(123, 0, 255, 0.2) 0%, transparent 65%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.cwc-stat-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary-light);
    background-color: rgba(61, 28, 122, 0.38);
    box-shadow: 0 16px 48px rgba(123, 0, 255, 0.28);
}

.cwc-stat-card:hover::before {
    opacity: 1;
}

.cwc-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary-light);
    line-height: 1.2;
    transition: color 0.35s ease;
}

.cwc-stat-card:hover .cwc-stat-number {
    color: #c084fc;
}

.cwc-stat-desc {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
    transition: color 0.35s ease;
}

.cwc-stat-card:hover .cwc-stat-desc {
    color: rgba(255, 255, 255, 0.9);
}

.cwc-stat-icon {
    position: absolute;
    bottom: 14px;
    right: 14px;
}

.cwc-stat-icon img {
    height: 54px;
    width: auto;
    display: block;
    opacity: 0.72;
    transition: opacity 0.35s ease;
}

.cwc-stat-card:hover .cwc-stat-icon img {
    opacity: 1;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .cwc-hero-area {
        height: 360px;
    }

    .cwc-bee {
        height: 280px;
    }

    .cwc-bee-wrap {
        bottom: -90px;
    }

    .cwc-content-area {
        padding-top: 120px;
    }
}

@media (max-width: 768px) {
    .cwc-hero-area {
        height: 280px;
    }

    .cwc-bee {
        height: 210px;
    }

    .cwc-bee-wrap {
        bottom: -65px;
    }

    .cwc-content-area {
        padding-top: 88px;
    }

    .cwc-stat-number {
        font-size: 1.65rem;
    }
}

/* =============================================
   Sticky Header
   ============================================= */
#siteHeader {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050 !important;
    transition: background-color 0.35s ease, padding-top 0.35s ease, padding-bottom 0.35s ease;
}

#siteHeader.scrolled {
    background-color: #180a32 !important;
    padding-top: 0.4rem !important;
    padding-bottom: 0.4rem !important;
}

#siteHeader.scrolled .logo-area img {
    height: 70px;
}

@media (max-width: 767.98px) {
    .logo-area img {
        height: 55px;
    }

    #siteHeader.scrolled .logo-area img {
        height: 50px;
    }
}

/* =============================================
   Floating Side Buttons
   ============================================= */
.floating-side-btns {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) translateX(calc(100% + 2px));
    z-index: 1040;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.5s cubic-bezier(0.34, 1.4, 0.64, 1), opacity 0.4s ease;
}

.floating-side-btns.visible {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
    pointer-events: all;
}

.fsb-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 18px 13px 16px;
    text-decoration: none;
    border-radius: 12px 0 0 12px;
    border: 1px solid rgba(154, 61, 255, 0.45);
    border-right: none;
    min-width: 170px;
    transition: min-width 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.fsb-btn--outline {
    background: rgba(15, 7, 39, 0.82);
}

.fsb-btn--solid {
    background: linear-gradient(135deg, #7b00ff 0%, #5514d6 100%);
    border-color: rgba(154, 61, 255, 0.6);
}

.fsb-btn:hover {
    min-width: 192px;
    box-shadow: -6px 0 28px rgba(123, 0, 255, 0.5);
    text-decoration: none;
}

.fsb-btn--outline:hover {
    background: rgba(24, 10, 50, 0.95);
}

.fsb-btn--solid:hover {
    background: linear-gradient(135deg, #9a3dff 0%, #7b00ff 100%);
}

.fsb-icon {
    font-size: 1.15rem;
    flex-shrink: 0;
    line-height: 1;
}

.fsb-btn--outline .fsb-icon {
    color: #ff2020;
}

.fsb-btn--solid .fsb-icon {
    color: #fff;
}

.fsb-label {
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.35;
    color: #fff;
    letter-spacing: 0.2px;
}

@media (max-width: 575.98px) {
    .fsb-btn {
        min-width: 140px;
        padding: 11px 14px 11px 13px;
    }

    .fsb-btn:hover {
        min-width: 158px;
    }

    .fsb-label {
        font-size: 0.72rem;
    }

    .fsb-icon {
        font-size: 1rem;
    }
}


/* =============================================
   INDEX-2 PAGE — Hero Landing (100vh)
   ============================================= */

/* Reset body for index-2 */
.index2-body {
    overflow: hidden;
    height: 100vh;
    background: #0d0624;
}

/* ── Page Loader (logo only) ─────────────────── */
.page-loader {
    position: fixed;
    inset: 0;
    background: #0d0624;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-logo-img {
    height: 90px;
    width: auto;
}

/* ── Main Page Shell ─────────────────────────── */
.index2-page {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    background:
        radial-gradient(ellipse at 25% 45%, rgba(60, 10, 180, 0.22) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 55%, rgba(20, 5, 100, 0.2) 0%, transparent 50%),
        #0d0624;
}

/* ── Header ──────────────────────────────────── */
.index2-header {
    flex-shrink: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 48px;
    position: relative;
    z-index: 100;
}

.index2-header .logo-area img {
    height: 72px;
    transition: height 0.3s ease;
}

/* ── Main Content Row — 50 / 50 ──────────────── */
.index2-main {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 48px;
    gap: 0;
    min-height: 0;
    overflow: hidden;
}

/* LEFT: 50% — desktop banner image */
.index2-left {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    height: 100%;
    overflow: hidden;
}

.index2-banner-img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    mix-blend-mode: lighten;
}

/* RIGHT: 50% — bee + speech card */
.index2-right {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Bee wrapper — in front of card */
.index2-bee-wrap {
    position: relative;
    z-index: 5;
    flex-shrink: 0;
    margin-right: -55px;
    display: flex;
    align-items: flex-end;
}

.index2-bee-img {
    display: block;
    max-height: 370px;
    width: auto;
    filter: drop-shadow(0 20px 52px rgba(123, 0, 255, 0.45));
}

/* Speech card — behind bee */
.index2-speech-card {
    flex: 1;
    position: relative;
    z-index: 3;
    background: rgba(8, 3, 38, 0.78);
    border: 1.5px solid rgba(80, 175, 255, 0.65);
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow:
        0 0 35px rgba(80, 175, 255, 0.18),
        inset 0 0 24px rgba(80, 175, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    min-width: 240px;
    max-width: 320px;
}

.speech-title {
    color: #ffffff;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(80, 175, 255, 0.25);
}

/* Typing dots */
.speech-dots {
    display: flex;
    gap: 6px;
    align-items: center;
    margin-bottom: 10px;
    opacity: 0;
    min-height: 14px;
}

.sd-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(80, 175, 255, 0.8);
    animation: sd-bounce 1.1s ease-in-out infinite;
}

.sd-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.sd-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes sd-bounce {

    0%,
    80%,
    100% {
        transform: scale(0.7);
        opacity: 0.5;
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.speech-body-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin: 0;
    min-height: 100px;
}

/* ── Bottom Text ──────────────────────────────── */
.index2-bottom {
    flex-shrink: 0;
    text-align: center;
    padding: 0 20px 50px;
}

.index2-welcome {
    font-size: clamp(1.3rem, 2.2vw, 3rem);
    margin-bottom: 6px;
    background: var(--gradient-highlight);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.index2-tagline-text {
    color: rgba(255, 255, 255, 0.62);
    font-size: var(--fs-h4);
    margin: 0;
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 991px) {
    .index2-header {
        padding: 14px 28px;
    }

    .index2-header .logo-area img {
        height: 58px;
    }

    .index2-main {
        padding: 0 20px;
    }

    .index2-bee-img {
        max-height: 290px;
    }

    .index2-speech-card {
        padding: 20px 18px;
        min-width: 190px;
    }
}

@media (max-width: 767px) {
    .index2-body {
        overflow: hidden;
    }

    .index2-header {
        padding: 10px 16px;
    }

    .index2-header .logo-area img {
        height: 50px;
    }

    .index2-main {
        flex-direction: column;
        padding: 0 12px;
        gap: 6px;
        justify-content: center;
    }

    /* Left: full width, fixed height for banner */
    .index2-left {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
        height: 40vh;
    }

    /* Right: full width, fixed height for bee + card */
    .index2-right {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
        height: 32vh;
        justify-content: center;
    }

    .index2-bee-wrap {
        margin-right: -28px;
    }

    .index2-bee-img {
        max-height: 28vh;
    }

    .index2-speech-card {
        min-width: 0;
        max-width: 55vw;
        padding: 12px 14px;
    }

    .speech-title {
        font-size: 0.88rem;
        margin-bottom: 8px;
        padding-bottom: 7px;
    }

    .speech-body-text {
        font-size: 0.76rem;
        min-height: 55px;
    }

    .sd-dot {
        width: 6px;
        height: 6px;
    }

    .index2-bottom {
        padding-bottom: 14px;
    }

    .index2-welcome {
        font-size: clamp(1rem, 4.5vw, 1.35rem);
        margin-bottom: 3px;
    }

    .index2-tagline-text {
        font-size: clamp(0.76rem, 3vw, 0.92rem);
    }
}

@media (max-width: 480px) {
    .index2-left {
        height: 36vh;
    }

    .index2-right {
        height: 35vh;
    }

    .index2-bee-img {
        max-height: 26vh;
    }

    .index2-speech-card {
        max-width: 58vw;
        padding: 10px 12px;
    }
}


/* =============================================
   Discord Community Section
   ============================================= */
.discord-section {
    position: relative;
    width: 100%;
    padding: 100px 0;
    background-image: url('assets/images/master-banner2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.discord-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(10, 4, 24, 0.88) 0%,
            rgba(88, 101, 242, 0.22) 50%,
            rgba(10, 4, 24, 0.92) 100%);
    z-index: 1;
}

.discord-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(88, 101, 242, 0.18) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.discord-cta {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.discord-icon-wrap {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: #5865F2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    box-shadow: 0 0 0 12px rgba(88, 101, 242, 0.15), 0 16px 48px rgba(88, 101, 242, 0.45);
}

.discord-logo-svg {
    width: 46px;
    height: auto;
}

.discord-eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #5865F2;
    font-weight: 700;
    margin: 0 0 14px;
}

.discord-heading {
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin: 0 0 16px;
}

.discord-body {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.65;
    margin: 0 0 40px;
    max-width: 560px;
}

.discord-join-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #5865F2;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 0.02em;
    box-shadow: 0 8px 32px rgba(88, 101, 242, 0.45);
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.discord-btn-icon {
    width: 22px;
    height: auto;
    flex-shrink: 0;
}

.discord-join-btn:hover {
    background: #4752c4;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 14px 44px rgba(88, 101, 242, 0.6);
}

@media (max-width: 767.98px) {
    .discord-section {
        padding: 72px 0;
    }

    .discord-heading {
        font-size: clamp(1.4rem, 6vw, 1.9rem);
    }

    .discord-join-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }
}

/* =============================================
   FAQs PAGE
   ============================================= */

/* ── Page wrapper ─────────────────────────── */
.faqs-page {
    background-color: var(--color-bg-main);
    min-height: 100vh;
    padding-top: 96px;
}

/* ── Hero section ─────────────────────────── */
.faqs-hero {
    position: relative;
    padding: 60px 0 52px;
    text-align: center;
    overflow: hidden;
}

.faqs-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 760px;
    height: 460px;
    background: radial-gradient(ellipse at center, rgba(123, 0, 255, 0.13) 0%, transparent 68%);
    pointer-events: none;
    z-index: 0;
}

.faqs-hero-inner {
    position: relative;
    z-index: 1;
}

.faqs-hero-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--color-text-highlight);
    background: rgba(92, 228, 149, 0.1);
    border: 1px solid rgba(92, 228, 149, 0.28);
    border-radius: 20px;
    padding: 5px 18px;
    margin-bottom: 18px;
}

.faqs-hero-title {
    color: #fff;
    margin-bottom: 14px;
}

.faqs-hero-title .faqs-highlight {
    background: var(--gradient-highlight);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faqs-hero-sub {
    color: rgba(255, 255, 255, 0.836);
    margin: 0 auto;
}

/* ── Section divider ──────────────────────── */
.faqs-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(61, 28, 122, 0.7), transparent);
    margin: 0 0 52px;
    transform-origin: center;
}

/* ── FAQ content body ─────────────────────── */
.faqs-body {
    padding-bottom: 100px;
}

/* ── FAQ group (one per category) ─────────── */
.faq-group {
    margin-bottom: 56px;
}

.faq-group-label-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
}

.faq-group-label-row::before,
.faq-group-label-row::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(61, 28, 122, 0.5);
}

.faq-cat-badge {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}

.faq-cat-badge--students {
    background: rgba(154, 61, 255, 0.13);
    color: var(--color-primary-light);
    border: 1px solid rgba(154, 61, 255, 0.3);
}

.faq-cat-badge--schools {
    background: rgba(84, 170, 223, 0.12);
    color: #54aadf;
    border: 1px solid rgba(84, 170, 223, 0.28);
}

.faq-cat-badge--parents {
    background: rgba(92, 228, 149, 0.1);
    color: var(--color-text-highlight);
    border: 1px solid rgba(92, 228, 149, 0.24);
}

/* ── Bootstrap Accordion overrides ─────────── */
.faq-accordion .accordion-item {
    background: rgba(61, 28, 122, 0.1) !important;
    border: 1px solid rgba(61, 28, 122, 0.4) !important;
    border-radius: 12px !important;
    margin-bottom: 8px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
    border-color: rgba(123, 0, 255, 0.55) !important;
    box-shadow: 0 0 30px rgba(123, 0, 255, 0.07);
}

.faq-accordion .accordion-button {
    background: transparent !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-family: var(--font-primary);
    padding: 18px 22px;
    box-shadow: none !important;
    transition: color 0.25s ease, background 0.25s ease;
}

.faq-accordion .accordion-button::after {
    filter: invert(1) brightness(0.65);
    transition: filter 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(123, 0, 255, 0.1) !important;
    color: var(--color-text-highlight) !important;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    filter: invert(80%) sepia(35%) saturate(450%) hue-rotate(95deg) brightness(1.1);
}

.faq-accordion .accordion-collapse {
    border-top: 1px solid rgba(61, 28, 122, 0.28);
}

.faq-accordion .accordion-body {
    background: rgba(12, 5, 30, 0.45) !important;
    color: rgba(255, 255, 255, 0.62);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    line-height: 1.9;
    padding: 18px 22px;
}

.faq-accordion .accordion-body a {
    color: var(--color-text-highlight);
    text-underline-offset: 3px;
}

.faq-accordion .accordion-body a:hover {
    color: #fff;
}

/* ── CTA block ────────────────────────────── */
.faqs-cta {
    text-align: center;
    padding: 60px 0 0;
    border-top: 1px solid rgba(61, 28, 122, 0.38);
}

.faqs-cta-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 6px;
}

.faqs-cta-sub {
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.88rem;
    margin-bottom: 28px;
}

.faqs-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.faqs-cta-sep {
    color: rgba(255, 255, 255, 0.18);
    font-size: 1rem;
    line-height: 1;
}

.faq-email-link {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.88rem;
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.01em;
}

.faq-email-link:hover {
    color: var(--color-text-highlight);
}

/* ── Responsive ───────────────────────────── */
@media (max-width: 991.98px) {
    .faqs-page {
        padding-top: 86px;
    }
}

@media (max-width: 767.98px) {
    .faqs-hero {
        padding: 44px 0 36px;
    }

    .faqs-hero-title {
        font-size: 1.85rem;
    }

    .faq-group-label-row::before,
    .faq-group-label-row::after {
        display: none;
    }

    .faq-group-label-row {
        justify-content: flex-start;
    }

    .faq-accordion .accordion-button {
        font-size: 0.88rem;
        padding: 15px 16px;
    }

    .faq-accordion .accordion-body {
        font-size: 0.86rem;
        padding: 14px 16px;
    }

    .faq-group {
        margin-bottom: 40px;
    }

    .faqs-cta {
        padding: 44px 0 0;
    }
}

@media (max-width: 480px) {
    .faqs-hero-title {
        font-size: 1.6rem;
    }

    .faqs-cta-actions {
        flex-direction: column;
        gap: 12px;
    }

    .faqs-cta-sep {
        display: none;
    }
}


/* =============================================
   TERMS & CONDITIONS — Content
   ============================================= */

.tnc-content {}

.tnc-intro {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
    padding-bottom: 28px;
}

.tnc-section {
    margin-bottom: 32px;
}

.tnc-section-title {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(61, 28, 122, 0.38);
    letter-spacing: 0.01em;
}

.tnc-content p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.tnc-content ul {
    padding-left: 22px;
    margin-bottom: 10px;
}

.tnc-content ul li {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 7px;
}

.tnc-content ul li::marker {
    color: rgba(154, 61, 255, 0.7);
}

.tnc-content ul ul {
    margin-top: 7px;
    padding-left: 20px;
}

.tnc-content ul ul li::marker {
    color: rgba(84, 170, 223, 0.7);
}

.tnc-content a {
    color: var(--color-text-highlight);
    text-underline-offset: 3px;
    transition: color 0.25s ease;
}

.tnc-content a:hover {
    color: #fff;
}

.tnc-contact-block {
    margin-top: 10px;
    padding: 30px;
    background: rgba(61, 28, 122, 0.12);
    border: 1px solid rgba(61, 28, 122, 0.4);
    border-radius: 8px;
}

.tnc-contact-block p {
    margin-bottom: 5px !important;
}

.tnc-contact-block p:last-child {
    margin-bottom: 0 !important;
}

.tnc-subhead {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
    font-size: 0.88rem;
}


/* =============================================
   CONSENT FOR REGISTRATION
   ============================================= */

.consent-card {
    background: rgba(61, 28, 122, 0.1);
    border: 1px solid rgba(61, 28, 122, 0.42);
    border-radius: 18px;
    padding: 44px 48px;
    box-shadow: 0 0 70px rgba(123, 0, 255, 0.07);
}

/* ── Input fields ─────────────────────────── */
.consent-field-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
}

.consent-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.62);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.consent-required {
    color: var(--color-text-highlight);
    margin-left: 3px;
}

.consent-input {
    width: 100%;
    background: rgba(12, 5, 30, 0.5);
    border: 1px solid rgba(61, 28, 122, 0.5);
    border-radius: 8px;
    padding: 14px 18px;
    color: #fff;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}

.consent-input::placeholder {
    color: rgba(255, 255, 255, 0.22);
}

.consent-input:focus {
    border-color: rgba(123, 0, 255, 0.65);
    box-shadow: 0 0 0 3px rgba(123, 0, 255, 0.1);
}

/* ── Checkbox block ───────────────────────── */
.consent-check-wrap {
    margin-bottom: 28px;
    padding: 0px;
    border-radius: 10px;
}

.consent-check-label {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    cursor: pointer;
    margin: 0;
}

.consent-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.consent-check-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border: 2px solid rgba(92, 228, 149, 0.38);
    border-radius: 5px;
    background: transparent;
    margin-top: 2px;
    transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
    color: transparent;
    font-size: 0.8rem;
}

.consent-checkbox:checked~.consent-check-box {
    background: var(--color-text-highlight);
    border-color: var(--color-text-highlight);
    color: #0d0624;
}

.consent-check-text {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    line-height: 1.78;
}

/* ── Legal body paragraphs ────────────────── */
.consent-body-text {
    border-top: 1px solid rgba(61, 28, 122, 0.35);
    padding-top: 24px;
    margin-bottom: 32px;
}

.consent-body-text p {
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.88rem;
    line-height: 1.88;
    margin-bottom: 14px;
}

.consent-body-text p:last-child {
    margin-bottom: 0;
}

.consent-policy-line {
    color: rgba(255, 255, 255, 0.65) !important;
    font-weight: 500;
}

.consent-body-text a {
    color: var(--color-text-highlight);
    text-underline-offset: 3px;
    transition: color 0.25s ease;
}

.consent-body-text a:hover {
    color: #fff;
}

/* ── Submit row ───────────────────────────── */
.consent-submit-wrap {}

/* ── Responsive ───────────────────────────── */
@media (max-width: 767.98px) {
    .consent-card {
        padding: 28px 22px;
        border-radius: 14px;
    }

    .consent-submit-wrap {
        justify-content: center;
    }

    .consent-check-wrap {
        padding: 16px 16px;
    }
}

@media (max-width: 480px) {
    .consent-card {
        padding: 20px 14px;
    }

    .consent-check-box {
        width: 20px;
        height: 20px;
    }
}


/* =============================================
   CWC 2025 — The Year It All Began
   ============================================= */

.cwc25-page {
    background-color: var(--color-bg-main);
    min-height: 60vh;
    padding-top: 100px;
}

/* Section */
.cwc25-section {
    position: relative;
    padding: 80px 0px;
    overflow: hidden;
}

/* Background glow orbs */
.cwc25-glow-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* ── Section Header ─────────────────────────── */
.cwc25-header {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    padding-bottom: 0;
}

.cwc25-eyebrow {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--color-text-highlight);
    background: rgba(92, 228, 149, 0.1);
    border: 1px solid rgba(92, 228, 149, 0.28);
    border-radius: 20px;
    padding: 5px 18px;
    margin-bottom: 22px;
}

.cwc25-title {
    font-size: clamp(1.65rem, 3.5vw, 3rem);
    font-weight: 700;
    background: var(--gradient-highlight);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
    margin-bottom: 10px;
}

.cwc25-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.58);
    margin-bottom: 28px;
}

.cwc25-divider {
    width: 72px;
    height: 3px;
    background: var(--gradient-divider);
    border-radius: 2px;
    margin-bottom: 30px;
}

.cwc25-body-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.97rem;
    line-height: 1.88;
    margin: 0 auto 14px;
}

/* ── Stats Row ─────────────────────────────── */
.cwc25-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background: rgba(61, 28, 122, 0.18);
    border: 1px solid rgba(61, 28, 122, 0.5);
    border-radius: 16px;
    padding: 20px 8px;
}

.cwc25-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 22px;
    text-align: center;
    flex: 1 1 auto;
}

.cwc25-stat-num {
    font-size: clamp(1.15rem, 1.8vw, 1.6rem);
    font-weight: 700;
    background: var(--gradient-highlight);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.cwc25-stat-label {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 5px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 600;
    white-space: nowrap;
}

.cwc25-stat-divider {
    width: 1px;
    height: 44px;
    background: rgba(61, 28, 122, 0.8);
    flex-shrink: 0;
    align-self: center;
}

/* ── Event Cards ────────────────────────────── */
.cwc25-cards-row {
    position: relative;
    z-index: 1;
    margin-top: 64px;
}

.cwc25-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 480px;
    cursor: pointer;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: border-color 0.45s ease, box-shadow 0.45s ease;
}

.cwc25-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.6);
}

/* Background image layer */
.cwc25-card-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.72s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.cwc25-card:hover .cwc25-card-img {
    transform: scale(1.09);
}

/* Gradient overlay */
.cwc25-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(178deg,
            rgba(0, 0, 0, 0.04) 0%,
            rgba(0, 0, 0, 0.22) 42%,
            rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
    transition: background 0.45s ease;
}

.cwc25-card:hover .cwc25-card-overlay {
    background: linear-gradient(178deg,
            rgba(0, 0, 0, 0.02) 0%,
            rgba(0, 0, 0, 0.18) 38%,
            rgba(0, 0, 0, 0.93) 100%);
}

/* Content area */
.cwc25-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 34px 30px 30px;
    z-index: 2;
    transition: transform 0.52s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cwc25-card:hover .cwc25-card-content {
    transform: translateY(-12px);
}

.cwc25-card-badge {
    display: inline-block;
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    padding: 4px 14px;
    margin-bottom: 14px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.cwc25-card-title {
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.2;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
    transition: color 0.38s ease;
}

.cwc25-card:hover .cwc25-card-title {
    color: var(--color-text-highlight);
}

.cwc25-card-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.65;
    margin-bottom: 18px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.42s ease 0.06s, transform 0.42s ease 0.06s;
    display: none;
}

.cwc25-card:hover .cwc25-card-desc {
    opacity: 1;
    transform: translateY(0);
    display: block;
}

.cwc25-card-cta {
    display: none;
    align-items: center;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-highlight);
    background: rgba(92, 228, 149, 0.1);
    border: 1px solid rgba(92, 228, 149, 0.32);
    border-radius: 6px;
    padding: 8px 16px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.42s ease 0.14s, transform 0.42s ease 0.14s,
        background 0.3s ease, border-color 0.3s ease;
}

.cwc25-card:hover .cwc25-card-cta {
    opacity: 1;
    transform: translateY(0);
    display: inline-flex;
}

.cwc25-card-cta:hover {
    background: rgba(92, 228, 149, 0.2);
    border-color: rgba(92, 228, 149, 0.6);
}

/* ── Gallery Lightbox ─────────────────────────── */
.cwc25-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    visibility: hidden;
}

.cwc25-lightbox.is-open {
    pointer-events: all;
    visibility: visible;
}

.cwc25-lb-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 1, 18, 0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
}

.cwc25-lightbox.is-open .cwc25-lb-backdrop {
    opacity: 1;
}

.cwc25-lb-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1080px;
    height: 100dvh;
    max-height: 100dvh;
    display: flex;
    flex-direction: column;
    padding: 18px 20px 16px;
    box-sizing: border-box;
    opacity: 0;
}

.cwc25-lightbox.is-open .cwc25-lb-container {
    opacity: 1;
}

/* Close button */
.cwc25-lb-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    color: #fff;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.35s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.cwc25-lb-close:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg) scale(1.1);
}

/* Gallery header row */
.cwc25-lb-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 14px;
    flex-shrink: 0;
    margin-top: 2px;
    padding-right: 60px;
}

.cwc25-lb-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
}

.cwc25-lb-counter {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.06em;
}

/* Main image area */
.cwc25-lb-main-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 0;
    overflow: hidden;
    border-radius: 14px;
}

.cwc25-lb-main {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cwc25-lb-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    display: block;
    will-change: transform, opacity;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

/* Prev / Next navigation */
.cwc25-lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: rgba(8, 3, 30, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    color: #fff;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.cwc25-lb-nav:hover {
    background: rgba(123, 0, 255, 0.55);
    border-color: rgba(154, 61, 255, 0.65);
    transform: translateY(-50%) scale(1.1);
}

.cwc25-lb-nav.is-disabled {
    opacity: 0.22;
    cursor: default;
    pointer-events: none;
}

.cwc25-lb-prev {
    left: 12px;
}

.cwc25-lb-next {
    right: 12px;
}

/* Thumbnails strip */
.cwc25-lb-thumbs {
    display: flex;
    gap: 10px;
    padding: 14px 0 2px;
    overflow-x: auto;
    flex-shrink: 0;
    justify-content: center;
    scrollbar-width: thin;
    scrollbar-color: rgba(123, 0, 255, 0.4) transparent;
}

.cwc25-lb-thumbs::-webkit-scrollbar {
    height: 4px;
}

.cwc25-lb-thumbs::-webkit-scrollbar-track {
    background: transparent;
}

.cwc25-lb-thumbs::-webkit-scrollbar-thumb {
    background: rgba(123, 0, 255, 0.4);
    border-radius: 2px;
}

.cwc25-lb-thumb {
    width: 76px;
    height: 54px;
    flex-shrink: 0;
    border-radius: 7px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.1);
    opacity: 0.5;
    transition: opacity 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.cwc25-lb-thumb:hover {
    opacity: 0.82;
    transform: scale(1.06);
}

.cwc25-lb-thumb.is-active {
    border-color: var(--color-text-highlight);
    opacity: 1;
    transform: scale(1.06);
}

.cwc25-lb-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 767.98px) {
    .cwc25-page {
        padding-top: 80px;
    }

    .cwc25-section {
        padding: 56px 0 72px;
    }

    .cwc25-stat-divider {
        display: none;
    }

    .cwc25-stat-item {
        padding: 8px 14px;
        width: 50%;
        border-bottom: 1px solid rgba(61, 28, 122, 0.3);
    }

    .cwc25-stat-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .cwc25-card {
        min-height: 380px;
    }

    .cwc25-lb-container {
        padding: 12px 12px 10px;
    }

    .cwc25-lb-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }

    .cwc25-lb-nav {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .cwc25-lb-prev {
        left: 6px;
    }

    .cwc25-lb-next {
        right: 6px;
    }

    .cwc25-lb-thumb {
        width: 60px;
        height: 44px;
    }

    .cwc25-cards-row {
        margin-top: 44px;
    }
}

@media (max-width: 480px) {
    .cwc25-card-content {
        padding: 26px 22px 24px;
    }

    .cwc25-stats-row {
        border-radius: 12px;
    }
}