/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
    /* Dark Premium Colors */
    --color-bg-primary: #0a0a0a;
    --color-bg-secondary: #111111;
    --color-bg-card: #1a1a1a;
    --color-text-primary: #ffffff;
    --color-text-secondary: #999999;
    
    /* Brand Colors */
    --color-nischay: #ff3366;
    --color-abhishek: #ffd700;
    --color-prerna: #ff66ff;
    --gradient-primary: linear-gradient(135deg, #ff3366 0%, #ff6b6b 100%);
    --gradient-accent: linear-gradient(90deg, #ff3366, #ffd700, #ff66ff);
    
    /* Typography */
    --font-display: 'Bebas Neue', 'Impact', sans-serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

/* =====================================================
   GLOBAL HORIZONTAL SCROLL PREVENTION
   Prevents the screen from moving left/right on mobile
   ===================================================== */
/* Only body gets overflow-x:hidden — applying it to html breaks
   position:fixed panels on iOS Safari */
body {
    overflow-x: hidden;
}

img,
video,
iframe,
embed,
object {
    max-width: 100%;
}

section,
footer,
header {
    max-width: 100vw;
    overflow-x: hidden;
}

/* NOTE: nav is intentionally excluded — overflow:hidden on nav
   clips the sliding mobile menu panel */

html {
    scroll-behavior: smooth;
}

body {
    background: var(--color-bg-primary);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* Disclaimer Popup */
.disclaimer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.disclaimer-overlay.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.disclaimer-popup {
    background: var(--color-bg-card);
    border: 2px solid #ff3366;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 0 0 2px rgba(255, 51, 102, 0.3),
        0 0 25px rgba(255, 51, 102, 0.4),
        0 20px 60px rgba(0, 0, 0, 0.8);
   
    animation: disclaimerSlideUp 0.6s ease;
}

@keyframes disclaimerSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.disclaimer-header {
    padding: 1.5rem 1.5rem 0.75rem;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer-icon {
    font-size: 1.8rem;
    margin-bottom: 0;
}

.disclaimer-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2rem);
    letter-spacing: 2px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.disclaimer-content {
    padding: 1.5rem;
    max-height: 60vh;
    overflow-y: auto;
}

.disclaimer-content::-webkit-scrollbar {
    width: 6px;
}

.disclaimer-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.disclaimer-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.disclaimer-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.disclaimer-text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
}

.disclaimer-text:last-child {
    margin-bottom: 0;
}

.disclaimer-text strong {
    color: var(--color-text-primary);
    font-weight: 600;
}

/* Domain acquisition line in popup */
.disclaimer-domain {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.07);
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
}

.disclaimer-email {
    color: #ff3366;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}
.disclaimer-email:hover {
    color: #ffd700;
    text-shadow: 0 0 12px rgba(255,215,0,0.4);
}

.disclaimer-footer {
    padding: 1rem 1.5rem 1.5rem;
    text-align: center;
}

.disclaimer-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.875rem 2.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 51, 102, 0.3);
}

.disclaimer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 51, 102, 0.4);
}

.disclaimer-btn:active {
    transform: translateY(0);
}

.disclaimer-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.disclaimer-btn:hover .disclaimer-arrow {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .disclaimer-popup {
        border-radius: 16px;
        margin: 1rem;
    }
    
    .disclaimer-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .disclaimer-content {
        padding: 1.5rem;
    }
    
    .disclaimer-text {
        font-size: 0.9rem;
    }
    
    .disclaimer-footer {
        padding: 1rem 1.5rem 1.5rem;
    }
    
    .disclaimer-btn {
        padding: 0.9rem 2.5rem;
        font-size: 0.95rem;
    }
}


@keyframes loadingProgress {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes gradientFlow {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 4vw, 1.8rem);
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientFlow 5s linear infinite;
}

.logo-icon {
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav-link {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--color-text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

/* Contact button in navbar */
.nav-links li:last-child .nav-link {
    padding: 0.45rem 1.2rem;
    background: var(--gradient-primary);
    color: #fff !important;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.3);
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    width: auto;
}

.nav-links li:last-child .nav-link::after {
    display: none;
}

.nav-links li:last-child .nav-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 51, 102, 0.45);
    color: #fff;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1200;
    width: 44px;
    height: 36px;
    padding: 4px 0;
    background: transparent;
    border: none;
    flex-shrink: 0;
    position: relative;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.35s ease;
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* ============================
   RESPONSIVE HAMBURGER MENU
   ============================ */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        left: auto;
        width: 75vw;
        max-width: 300px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 60px 1.5rem 1.5rem;
        gap: 0;
        list-style: none;
        z-index: 1150;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.7);
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .nav-links li:last-child {
        border-bottom: none;
        padding: 0.4rem 0;
    }

    .nav-links .nav-link {
        display: block;
        padding: 0.55rem 0;
        font-size: 0.9rem;
        letter-spacing: 1.5px;
        color: #ffffff;
        width: 100%;
    }

    /* overlay behind menu — only covers LEFT side so hamburger stays clickable */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 75vw;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1039;
        cursor: pointer;
    }
}

/* ============================================
   HERO SECTION - RESPONSIVE IMAGE HANDLING
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
}

/* ============================================
   YOUTUBE VIDEO BACKGROUND - HERO SECTION
   ============================================ */

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: #000000;
    overflow: hidden;
}

/* ── Hero poster — visible instantly on first paint ── */
/* .hero-video-poster {
    position: absolute;
    inset: 0;
    background-image: url('https://i.ytimg.com/vi/G5aLQSw33mM/maxresdefault.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 2;
    opacity: 1;
    transition: opacity 0.8s ease;
    will-change: opacity;
} */

/* JS adds this class once video state = PLAYING */
.hero-video-poster.hero-poster-hidden {
    opacity: 0;
    pointer-events: none;
}

/* ============================================
   MOBILE HERO SLIDESHOW (≤ 1024px)
   Two family photos crossfade every 4 s.
   Hero scrolls normally with the page.
   Desktop is unaffected — video plays instead.
   ============================================ */

/* Desktop: slideshow hidden */
.hero-mobile-slides { display: none; }
.hero-mobile-slide  { display: none; }

@media (max-width: 1024px) {

    /* ── Hero scrolls normally — NOT fixed ── */
    .hero {
        position: relative !important;
        width: 100% !important;
        height: 100dvh !important;
        min-height: 100dvh !important;
        overflow: hidden !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
    }

    /* ── Bg container fills the hero ── */
    .hero-video-bg {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        overflow: hidden !important;
        background: #000 !important;
    }

    /* ── Hide desktop YouTube poster & video ── */
    .hero-video-poster  { display: none !important; }
    .hero-video-wrapper { display: none !important; }

    /* ── Slideshow container fills bg ── */
    .hero-mobile-slides {
        display: block;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    /* ── Each slide — full-cover, fades in/out ── */
    .hero-mobile-slide {
        display: block;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        opacity: 0;
        transition: opacity 1.4s ease-in-out;
        will-change: opacity;
    }

    /* Image sources (set in CSS — no inline styles in HTML) */
    .hero-slide-1 { background-image: url('../images/imagehero.jpg');  background-position: center top; }
    .hero-slide-2 { background-image: url('../images/imagehero2.jpg'); background-position: center center; }
    .hero-slide-3 { background-image: url('../images/imagehero3.jpg');  background-position: center bottom; }
    .hero-slide-4 { background-image: url('../images/imagehero4.jpg'); background-position: 30% center; }

    /* Active slide is fully visible */
    .hero-mobile-slide--active { opacity: 1; }

    /* Slide dots — flows naturally below hero content */
    .hero-slide-dots {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 1.2rem;
        position: relative;
        z-index: 20;
    }
    .hero-slide-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255,255,255,0.4);
        transition: background 0.4s, transform 0.4s;
        cursor: pointer;
    }
    .hero-slide-dot--active {
        background: #fff;
        transform: scale(1.3);
    }

    /* ── Overlay sits above slides ── */
    .hero-video-overlay {
        position: absolute;
        inset: 0;
        z-index: 2;
    }

    /* ── Hero text pinned to bottom of slideshow ── */
    .hero-content {
        position: absolute !important;
        z-index: 10;
        text-align: center;
        width: 92% !important;
        max-width: 700px;
        padding: 1.5rem clamp(1rem, 5vw, 2rem) !important;
        bottom: 5% !important;
        top: auto !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        margin: 0 !important;
    }
}

/* ============================================
   HERO VIDEO WRAPPER — DESKTOP (cover/fill)
   ============================================ */
.hero-video-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Desktop: fill the whole viewport, cropping is fine */
    width: 100vw;
    height: 56.25vw;   /* 16:9 based on width */
    min-width: 177.78vh; /* 16:9 based on height */
    min-height: 100vh;
}

.hero-video-wrapper iframe,
.hero-video-wrapper #heroYoutubeVideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
}

/* ============================================
   HERO VIDEO RESPONSIVE — FULLSCREEN, NO CROP
   Strategy:
   • Portrait (phone/tablet): video fills full
     screen width at exact 16:9 ratio so the
     entire video is visible, zero cropping.
     Hero is 100dvh; content flows below video.
   • Landscape: video fills full viewport height
     at exact 16:9 ratio — again, no cropping.
   ============================================ */

/* ── Portrait: phones & tablets (≤ 1024px) ── */
@media (max-width: 1024px) and (orientation: portrait) {
    .hero {
        min-height: 100dvh;          /* full screen tall */
        align-items: flex-start;
        flex-direction: column;
        padding: 0;
    }

    .hero-video-bg {
        position: relative;
        width: 100%;
        height: auto;
        overflow: visible;
        z-index: 0;
    }

    .hero-video-wrapper {
        /* Exact 16:9 of the viewport width — shows every pixel, no crop */
        position: relative;
        top: auto; left: auto;
        transform: none;
        width: 100vw;
        height: 56.25vw;             /* 100vw ÷ 16 × 9 */
        min-width: unset;
        min-height: unset;
        aspect-ratio: 16 / 9;        /* belt-and-suspenders */
    }

    .hero-video-wrapper iframe,
    .hero-video-wrapper #heroYoutubeVideo {
        position: absolute;
        top: 0; left: 0;
        width: 100%;
        height: 100%;
        transform: none;
        border: none;
        pointer-events: none;
    }

    /* Overlay covers only the video area */
    .hero-video-overlay {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
    }

    /* Text/CTA content sits below the video */
    .hero-content {
        position: absolute !important;
        bottom: 5% !important;
        top: auto !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        width: 92% !important;
        max-width: 700px;
        margin: 0 !important;
        padding: 1.5rem clamp(1rem, 5vw, 2rem) !important;
        z-index: 10;
        text-align: center;
    }
}

/* ── Landscape: phones & tablets (≤ 1024px) ── */
@media (max-width: 1024px) and (orientation: landscape) {
    .hero {
        min-height: 100dvh;
        align-items: flex-start;
        flex-direction: column;
        padding: 0;
    }

    .hero-video-bg {
        position: relative;
        width: 100%;
        height: auto;
        overflow: visible;
        z-index: 0;
    }

    .hero-video-wrapper {
        /* In landscape, screen height is the constraint.
           Full viewport height × (16/9) gives the correct width.
           We cap at 100vw so it never overflows horizontally. */
        position: relative;
        top: auto; left: auto;
        transform: none;
        width: 100vw;
        height: 56.25vw;             /* exact 16:9 of current width */
        min-width: unset;
        min-height: unset;
        aspect-ratio: 16 / 9;
    }

    .hero-video-wrapper iframe,
    .hero-video-wrapper #heroYoutubeVideo {
        position: absolute;
        top: 0; left: 0;
        width: 100%;
        height: 100%;
        transform: none;
        border: none;
        pointer-events: none;
    }

    .hero-video-overlay {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
    }

    .hero-content {
        position: relative;
        top: auto; bottom: auto; left: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        margin-top: 1rem;
        padding: 1rem clamp(1rem, 4vw, 2rem) 1.5rem;
        z-index: 10;
        text-align: center;
    }
}

/* Dark gradient overlay over the video — matches old slider overlay */
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.3) 0%,
        rgba(10, 10, 10, 0.5) 50%,
        rgba(10, 10, 10, 0.75) 100%
    );
    z-index: 2;
}

/* On mobile, video is often blocked from autoplaying — keep a dark bg fallback */
@media (max-width: 1024px) {
    .hero-video-bg {
        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    }
}

/* Landscape mode fixes for mobile — full video, content below */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        flex-direction: column;
    }
    
    .hero-content {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 1rem;
        width: 100%;
    }
}

/* iPhone specific landscape fixes */
@media (max-width: 926px) and (max-height: 428px) and (orientation: landscape) {
    .hero-content {
        margin-top: 0.75rem;
    }
}




/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    padding: 2rem;
    width: 100%;
    margin-top: 380px;
}

.hero-badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInUp 1s ease-out;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-family: var(--font-display);
    line-height: 0.9;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.title-line {
    display: block;
    font-size: clamp(2.5rem, 10vw, 7rem);
}

.gradient-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientFlow 5s linear infinite;
    display: block;
    font-size: clamp(2.5rem, 10vw, 7rem);
}

.hero-description {
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.4s backwards;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* YouTube icon section - added this */
.creator-social {
    display: flex;
    justify-content: center;
    margin: 0 auto 2.5rem;
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

.creator-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: clamp(0.9rem, 2vw, 1.2rem) clamp(1.8rem, 4vw, 2.5rem);
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: clamp(0.8rem, 2vw, 0.95rem);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 51, 102, 0.3);
}

.creator-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 51, 102, 0.5);
}

.youtube-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.youtube-icon path {
    fill: white;
}

.arrow {
    transition: transform 0.3s ease;
}

.creator-link:hover .arrow {
    transform: translateX(4px);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--color-text-secondary);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 4rem);
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--color-text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* About Section */
.about {
    padding: var(--spacing-xl) 2rem;
    background: var(--color-bg-primary);
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;   /* two equal columns on desktop */
    gap: 2rem;
    margin-top: 4rem;
}

/* Stack to single column on tablet/mobile */
@media (max-width: 900px) {
    .about-content {
        grid-template-columns: 1fr;
    }
}

.about-story {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    letter-spacing: 1px;
}

.about-text p {
    color: var(--color-text-secondary);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    text-align: justify;          /* all lines end at the same right edge */
    hyphens: auto;                /* soft hyphenation keeps words readable */
    -webkit-hyphens: auto;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.about-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 3rem);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.about-stat-label {
    color: var(--color-text-secondary);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 400px;
    background: var(--color-bg-card);
}

.family-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.image-container:hover .family-photo {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 10, 10, 0.95) 0%,
        transparent 60%
    );
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    width: 100%;
}

.overlay-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.overlay-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.overlay-text {
    color: var(--color-text-secondary);
}

/* ============================================
   FAMILY MILESTONES + SOCIAL INITIATIVES
   Replaces old Core Values section.
   ============================================ */

.about-values {
    margin-top: 6rem;
}

/* ── Shared title styles ── */
.values-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.fm-header {
    text-align: center;
    margin-bottom: 3rem;
}

.fm-header .section-badge { margin-bottom: 1rem; }
.fm-header .section-description { margin-top: 0.5rem; }

/* ============================================
   MILESTONE CARDS — 4-up grid
   ============================================ */

.fm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 1.5rem;
    margin-bottom: 5rem;
}

/* Base card */
.fm-card {
    position: relative;
    border-radius: 20px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.07);
    background: var(--color-bg-card);
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
                box-shadow 0.3s ease,
                border-color 0.3s ease;
    cursor: default;
}

/* Radial ambient glow in corner */
.fm-glow {
    position: absolute;
    top: -40px; right: -40px;
    width: 180px; height: 180px;
    border-radius: 50%;
    filter: blur(55px);
    opacity: 0.15;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.fm-card:hover .fm-glow {
    opacity: 0.32;
    transform: scale(1.2);
}

/* Per-card colour themes */
.fm-card-red  { border-color: rgba(255,51,102,0.16); }
.fm-card-red  .fm-glow { background: #ff3366; }
.fm-card-red:hover {
    border-color: rgba(255,51,102,0.38);
    box-shadow: 0 20px 56px rgba(255,51,102,0.14),
                0 0 0 1px rgba(255,51,102,0.18);
}

.fm-card-gold { border-color: rgba(255,214,0,0.16); }
.fm-card-gold .fm-glow { background: #ffd700; }
.fm-card-gold:hover {
    border-color: rgba(255,214,0,0.38);
    box-shadow: 0 20px 56px rgba(255,214,0,0.12),
                0 0 0 1px rgba(255,214,0,0.18);
}

.fm-card-pink { border-color: rgba(255,107,157,0.16); }
.fm-card-pink .fm-glow { background: #ff6b9d; }
.fm-card-pink:hover {
    border-color: rgba(255,107,157,0.38);
    box-shadow: 0 20px 56px rgba(255,107,157,0.13),
                0 0 0 1px rgba(255,107,157,0.18);
}

.fm-card-purple { border-color: rgba(255,102,255,0.16); }
.fm-card-purple .fm-glow { background: #ff66ff; }
.fm-card-purple:hover {
    border-color: rgba(255,102,255,0.38);
    box-shadow: 0 20px 56px rgba(255,102,255,0.13),
                0 0 0 1px rgba(255,102,255,0.18);
}

/* Hover lift */
.fm-card:hover { transform: translateY(-7px); }

/* Animated gradient top bar */
.fm-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    border-radius: 20px 20px 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s ease;
}
.fm-card:hover::before { transform: scaleX(1); }

.fm-card-red::before    { background: linear-gradient(90deg, #ff3366, #ff6b6b); }
.fm-card-gold::before   { background: linear-gradient(90deg, #ffd700, #ffaa00); }
.fm-card-pink::before   { background: linear-gradient(90deg, #ff6b9d, #ff3366); }
.fm-card-purple::before { background: linear-gradient(90deg, #ff66ff, #cc44ff); }

/* Shimmer sweep on hover */
.fm-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        transparent 35%,
        rgba(255,255,255,0.04) 50%,
        transparent 65%
    );
    background-size: 200% 100%;
    background-position: -100% 0;
    transition: background-position 0.65s ease;
    pointer-events: none;
    border-radius: inherit;
}
.fm-card:hover::after { background-position: 200% 0; }

/* Top row: icon + badge */
.fm-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* Icon wrap */
.fm-icon-wrap {
    width: 50px; height: 50px;
    border-radius: 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
                background 0.3s ease;
}
.fm-card:hover .fm-icon-wrap {
    transform: scale(1.14) rotate(-5deg);
    background: rgba(255,255,255,0.1);
}

.fm-icon {
    font-size: 1.55rem;
    line-height: 1;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.35));
    transition: filter 0.3s ease;
}
.fm-card:hover .fm-icon {
    filter: drop-shadow(0 4px 10px rgba(255,51,102,0.3));
}

/* Metric heading */
.fm-metric {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.2rem);
    letter-spacing: 1px;
    color: var(--color-text-primary);
    margin: 0;
    line-height: 1.3;
    transition: background 0.3s, -webkit-text-fill-color 0.3s;
}
.fm-card:hover .fm-metric {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientFlow 3s linear infinite;
}

/* Description */
.fm-achievement {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.78;
    margin: 0;
    flex: 1;
    transition: color 0.3s ease;
}
.fm-card:hover .fm-achievement { color: rgba(255,255,255,0.75); }
.fm-achievement strong { color: var(--color-text-primary); font-weight: 700; }

/* Badge pills */
.fm-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.28rem 0.85rem;
    border-radius: 50px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: box-shadow 0.3s ease, background 0.3s ease;
    /* default red */
    background: rgba(255,51,102,0.1);
    border: 1px solid rgba(255,51,102,0.28);
    color: var(--color-nischay);
}
.fm-card:hover .fm-badge { box-shadow: 0 4px 14px rgba(255,51,102,0.22); background: rgba(255,51,102,0.18); }

.fm-badge-gold { background: rgba(255,214,0,0.1); border-color: rgba(255,214,0,0.3); color: #ffd700; }
.fm-card-gold:hover .fm-badge-gold { box-shadow: 0 4px 14px rgba(255,214,0,0.2); background: rgba(255,214,0,0.18); }

.fm-badge-pink { background: rgba(255,107,157,0.1); border-color: rgba(255,107,157,0.3); color: #ff6b9d; }
.fm-card-pink:hover .fm-badge-pink { box-shadow: 0 4px 14px rgba(255,107,157,0.2); background: rgba(255,107,157,0.18); }

.fm-badge-purple { background: rgba(255,102,255,0.1); border-color: rgba(255,102,255,0.3); color: var(--color-prerna); }
.fm-card-purple:hover .fm-badge-purple { box-shadow: 0 4px 14px rgba(255,102,255,0.2); background: rgba(255,102,255,0.18); }

/* ============================================
   SOCIAL INITIATIVES — 2-card horizontal
   ============================================ */

.si-section { margin-top: 0; }

.si-header { margin-top: 0; }

.si-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 1.5rem;
}

/* Card base */
.si-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.6rem;
    border-radius: 18px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.07);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
                border-color 0.3s ease,
                box-shadow 0.3s ease,
                background 0.3s ease;
    cursor: default;
}

/* Shimmer */
.si-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        transparent 35%,
        rgba(255,255,255,0.035) 50%,
        transparent 65%
    );
    background-size: 200% 100%;
    background-position: -100% 0;
    transition: background-position 0.65s ease;
    pointer-events: none;
}
.si-card:hover::before { background-position: 200% 0; }

/* Left stripe accent */
.si-card::after {
    content: '';
    position: absolute;
    left: 0; top: 20%; bottom: 20%;
    width: 3px;
    border-radius: 0 3px 3px 0;
    background: linear-gradient(to bottom, #ff3366, #ff6b6b);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}
.si-card:hover::after { transform: scaleY(1); }

.si-card:hover {
    transform: translateY(-6px) translateX(4px);
    border-color: rgba(255,51,102,0.3);
    background: rgba(255,51,102,0.04);
    box-shadow: 0 16px 48px rgba(255,51,102,0.12),
                0 0 0 1px rgba(255,51,102,0.15);
}

/* Icon ring */
.si-icon-ring {
    width: 60px; height: 60px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,51,102,0.08);
    border: 2px solid rgba(255,51,102,0.25);
    position: relative;
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
                box-shadow 0.3s ease,
                background 0.3s ease;
}

/* Pulsing outer ring */
.si-icon-ring::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1px solid rgba(255,51,102,0.3);
    animation: siOuterRing 2.8s ease-in-out infinite;
}
@keyframes siOuterRing {
    0%,100% { opacity: 0.6; transform: scale(1); }
    50%      { opacity: 0; transform: scale(1.35); }
}

/* Second ring pulse, offset */
.si-icon-ring::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1px solid rgba(255,51,102,0.12);
    animation: siOuterRing 2.8s ease-in-out infinite 0.7s;
}

.si-card:hover .si-icon-ring {
    transform: scale(1.12) rotate(10deg);
    background: rgba(255,51,102,0.15);
    box-shadow: 0 0 0 6px rgba(255,51,102,0.08),
                0 0 28px rgba(255,51,102,0.28);
}

/* Gold variant */
.si-ring-gold {
    background: rgba(255,215,0,0.08);
    border-color: rgba(255,215,0,0.28);
}
.si-ring-gold::before { border-color: rgba(255,215,0,0.25); }
.si-ring-gold::after  { border-color: rgba(255,215,0,0.1); }
.si-card:hover .si-ring-gold {
    background: rgba(255,215,0,0.15);
    box-shadow: 0 0 0 6px rgba(255,215,0,0.08),
                0 0 28px rgba(255,215,0,0.25);
}

.si-icon {
    font-size: 1.7rem;
    line-height: 1;
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), filter 0.3s ease;
    position: relative;
    z-index: 1;
}
.si-card:hover .si-icon {
    transform: scale(1.2) rotate(-6deg);
    filter: drop-shadow(0 4px 10px rgba(255,51,102,0.5));
}

.si-body { flex: 1; }

.si-title {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.25rem);
    letter-spacing: 1px;
    color: var(--color-text-primary);
    margin: 0 0 0.5rem;
    transition: color 0.3s ease;
}
.si-card:hover .si-title { color: #ff3366; }

.si-desc {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.78;
    margin: 0 0 0.9rem;
    transition: color 0.3s ease;
}
.si-card:hover .si-desc { color: rgba(255,255,255,0.75); }
.si-desc strong { color: var(--color-text-primary); font-weight: 600; }

.si-tag {
    display: inline-block;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.27rem 0.8rem;
    border-radius: 50px;
    background: rgba(255,51,102,0.1);
    border: 1px solid rgba(255,51,102,0.3);
    color: #ff3366;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
.si-card:hover .si-tag {
    background: rgba(255,51,102,0.2);
    box-shadow: 0 4px 14px rgba(255,51,102,0.25);
}

.si-tag-gold {
    background: rgba(255,215,0,0.1);
    border-color: rgba(255,215,0,0.3);
    color: #ffd700;
}
.si-card:hover .si-tag-gold {
    background: rgba(255,215,0,0.2);
    box-shadow: 0 4px 14px rgba(255,215,0,0.22);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .fm-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .fm-grid { grid-template-columns: 1fr; gap: 1.1rem; }
    .fm-card  { padding: 1.4rem 1.2rem; }
    .si-grid  { grid-template-columns: 1fr; }
    .si-card  { padding: 1.2rem; gap: 1rem; }
    .si-icon-ring { width: 50px; height: 50px; }
    .fm-icon-wrap { width: 44px; height: 44px; }
}
@media (max-width: 480px) {
    .fm-grid { margin-bottom: 3rem; }
    .si-icon  { font-size: 1.4rem; }
    .fm-icon  { font-size: 1.35rem; }
}


/* ============================================
   ABOUT — YOUTUBE JOURNEY TIMELINE
   Enhanced with rich CSS effects:
   • Animated shimmer on cards
   • Glowing gradient border on hover
   • Floating icon effect
   • Era label glow + particle dots
   • Scroll-reveal fade-in per card
   • Dot ripple + line glow animation
   • Pill hover shimmer
   ============================================ */

/* ── Section wrapper ── */
.about-journey {
    margin-top: 6rem;
    position: relative;
}

/* Ambient background glow behind the whole section */
.about-journey::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 20%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse,
        rgba(255,51,102,0.04) 0%,
        rgba(255,214,0,0.03) 40%,
        transparent 70%
    );
    pointer-events: none;
    filter: blur(40px);
}

.about-journey-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
}

.about-journey-header .section-description {
    margin-top: 0.75rem;
}

/* ── Timeline wrapper ── */
.abt-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Animated vertical line — scrolling gradient */
.abt-timeline::before {
    content: '';
    position: absolute;
    left: 90px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
        to bottom,
        transparent,
        #ff3366 8%,
        #ffd700 35%,
        #ff66ff 65%,
        #ff3366 92%,
        transparent
    );
    background-size: 100% 300%;
    animation: lineScroll 6s linear infinite;
    filter: drop-shadow(0 0 4px rgba(255,51,102,0.5));
}

@keyframes lineScroll {
    0%   { background-position: 0% 0%; }
    100% { background-position: 0% 100%; }
}

/* ── Era labels ── */
.abt-era-label {
    position: relative;
    margin: 2.2rem 0 1.4rem 120px;
    font-family: var(--font-display);
    font-size: clamp(0.85rem, 2vw, 1rem);
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 0.4rem 1.2rem 0.4rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 50px;
    /* Animated gradient border */
    background: rgba(255,255,255,0.03);
    border: 1px solid transparent;
    background-clip: padding-box;
    color: rgba(255,255,255,0.75);
    /* Glow */
    box-shadow: 0 0 0 1px rgba(255,51,102,0.2),
                0 0 16px rgba(255,51,102,0.08),
                inset 0 1px 0 rgba(255,255,255,0.06);
    transition: box-shadow 0.3s ease, color 0.3s ease;
    cursor: default;
}

.abt-era-label::before {
    /* Connector line to timeline */
    content: '';
    position: absolute;
    left: -31px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,51,102,0.6));
}

/* Decorative dot on era label */
.abt-era-label::after {
    content: '';
    position: absolute;
    left: -7px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gradient-primary);
    box-shadow: 0 0 6px rgba(255,51,102,0.7);
}

.abt-era-label:hover {
    box-shadow: 0 0 0 1px rgba(255,51,102,0.4),
                0 0 24px rgba(255,51,102,0.15),
                inset 0 1px 0 rgba(255,255,255,0.08);
    color: #fff;
}

/* ── Each row ── */
.abt-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding-bottom: 1.75rem;
    position: relative;
    /* Staggered entrance via reveal + nth-child delay */
}

.abt-item:last-child { padding-bottom: 0; }

/* ── Left col ── */
.abt-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 90px;
    padding-top: 3px;
    gap: 7px;
}

/* Year tag */
.abt-year-tag {
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 2px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientFlow 4s linear infinite;
    line-height: 1;
    white-space: nowrap;
    text-align: center;
    transition: letter-spacing 0.3s ease;
}

.abt-item:hover .abt-year-tag {
    letter-spacing: 3px;
}

.abt-year-now {
    font-size: 0.95rem;
    letter-spacing: 3px;
}

/* Timeline dot */
.abt-line-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: 2px solid rgba(255,51,102,0.5);
    box-shadow: 0 0 0 3px rgba(255,51,102,0.1),
                0 0 8px rgba(255,51,102,0.3);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.abt-item:hover .abt-line-dot {
    transform: scale(1.3);
    box-shadow: 0 0 0 5px rgba(255,51,102,0.15),
                0 0 16px rgba(255,51,102,0.5);
}

/* Ripple ring on dot */
.abt-line-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(255,51,102,0.3);
    animation: dotRipple 3s ease-in-out infinite;
    opacity: 0;
}

@keyframes dotRipple {
    0%   { opacity: 0; transform: scale(0.8); }
    40%  { opacity: 1; }
    100% { opacity: 0; transform: scale(2); }
}

/* Active / NOW dot */
.abt-dot-now {
    width: 18px;
    height: 18px;
    box-shadow: 0 0 0 4px rgba(255,51,102,0.2),
                0 0 20px rgba(255,51,102,0.6);
    animation: dotPulse 2s ease-in-out infinite;
}

.abt-dot-now::after {
    border-color: rgba(255,51,102,0.5);
    animation: dotRipple 1.8s ease-in-out infinite;
    opacity: 1;
}

@keyframes dotPulse {
    0%,100% { box-shadow: 0 0 0 4px rgba(255,51,102,0.2), 0 0 20px rgba(255,51,102,0.5); }
    50%      { box-shadow: 0 0 0 8px rgba(255,51,102,0.1), 0 0 36px rgba(255,51,102,0.75); }
}

/* ── Card ── */
.abt-card {
    flex: 1;
    background: var(--color-bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1),
                border-color 0.3s ease,
                box-shadow 0.3s ease;
}

/* Top accent bar — appears on hover */
.abt-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gradient-accent);
    background-size: 200% auto;
    animation: gradientFlow 4s linear infinite;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.abt-card:hover::before {
    transform: scaleX(1);
}

/* Shimmer sweep on hover */
.abt-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255,255,255,0.04) 50%,
        transparent 60%
    );
    background-size: 200% 100%;
    background-position: -100% 0;
    transition: background-position 0.6s ease;
    pointer-events: none;
    border-radius: inherit;
}

.abt-card:hover::after {
    background-position: 200% 0;
}

.abt-card:hover {
    transform: translateX(8px) translateY(-2px);
    border-color: rgba(255,51,102,0.28);
    box-shadow:
        0 12px 40px rgba(0,0,0,0.35),
        0 0 0 1px rgba(255,51,102,0.12),
        inset 0 1px 0 rgba(255,255,255,0.06);
}

/* NOW card — always glowing */
.abt-card-now {
    border-color: rgba(255,51,102,0.32);
    background: linear-gradient(
        135deg,
        rgba(255,51,102,0.08) 0%,
        rgba(255,214,0,0.03) 40%,
        var(--color-bg-card) 65%
    );
    box-shadow: 0 0 0 1px rgba(255,51,102,0.15),
                0 8px 32px rgba(255,51,102,0.1);
}

.abt-card-now::before {
    transform: scaleX(1);  /* Always show top bar on NOW card */
}

.abt-card-inner {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    padding: 1.3rem 1.5rem;
}

/* ── Icon — floats on hover ── */
.abt-icon {
    font-size: 1.9rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), filter 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.abt-card:hover .abt-icon {
    transform: translateY(-4px) scale(1.15) rotate(-3deg);
    filter: drop-shadow(0 6px 12px rgba(255,51,102,0.25));
}

/* ── Body ── */
.abt-body { flex: 1; }

.abt-title {
    font-family: var(--font-display);
    font-size: clamp(0.95rem, 1.8vw, 1.18rem);
    letter-spacing: 1px;
    color: var(--color-text-primary);
    margin: 0 0 0.28rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.abt-card:hover .abt-title {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientFlow 3s linear infinite;
}

.abt-date {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-nischay);
    margin-bottom: 0.55rem;
    opacity: 0.9;
    position: relative;
    width: fit-content;
}

/* Underline sweep on date */
.abt-date::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-nischay);
    transition: width 0.4s ease;
}

.abt-card:hover .abt-date::after { width: 100%; }

/* LIVE tag */
.abt-live-tag {
    font-size: 0.62rem;
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--color-nischay);
    background: rgba(255,51,102,0.12);
    border: 1px solid rgba(255,51,102,0.4);
    border-radius: 50px;
    padding: 0.14rem 0.55rem;
    animation: liveTagPulse 2s ease-in-out infinite;
}

@keyframes liveTagPulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(255,51,102,0.3); }
    50%      { box-shadow: 0 0 0 4px rgba(255,51,102,0); }
}

.abt-desc {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    line-height: 1.78;
    margin: 0 0 0.85rem;
    transition: color 0.3s ease;
}

.abt-card:hover .abt-desc { color: rgba(255,255,255,0.75); }

.abt-desc strong {
    color: var(--color-text-primary);
    font-weight: 600;
    position: relative;
}

/* Highlight strong text on hover */
.abt-card:hover .abt-desc strong {
    background: linear-gradient(135deg, #ff3366, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.abt-desc em {
    font-style: normal;
    color: rgba(255,255,255,0.6);
}

/* ── Pills ── */
.abt-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.abt-pill {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 0.26rem 0.7rem;
    border-radius: 50px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    color: var(--color-text-secondary);
    white-space: nowrap;
    transition: background 0.25s ease,
                border-color 0.25s ease,
                color 0.25s ease,
                transform 0.25s ease,
                box-shadow 0.25s ease;
    cursor: default;
}

.abt-pill:hover {
    background: rgba(255,51,102,0.12);
    border-color: rgba(255,51,102,0.35);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,51,102,0.2);
}

.abt-item-now .abt-pill {
    background: rgba(255,51,102,0.1);
    border-color: rgba(255,51,102,0.3);
    color: var(--color-text-primary);
}

.abt-item-now .abt-pill:hover {
    background: rgba(255,51,102,0.22);
    box-shadow: 0 4px 14px rgba(255,51,102,0.3);
}

/* ── Tablet (≤ 768px) ── */
@media (max-width: 768px) {
    .abt-timeline::before { left: 66px; }
    .abt-left { width: 66px; }
    .abt-year-tag { font-size: 0.72rem; letter-spacing: 1px; }
    .abt-era-label { margin-left: 90px; font-size: 0.78rem; }
    .abt-card-inner { padding: 1rem 1.1rem; gap: 0.85rem; }
    .abt-icon { font-size: 1.55rem; }
    .abt-item { gap: 1rem; }
    .abt-card:hover { transform: translateX(4px) translateY(-1px); }
}

/* ── Small mobile (≤ 480px) ── */
@media (max-width: 480px) {
    .about-journey { margin-top: 3.5rem; }
    .abt-timeline::before { left: 50px; }
    .abt-left { width: 50px; gap: 4px; }
    .abt-year-tag { font-size: 0.6rem; letter-spacing: 0.5px; }
    .abt-line-dot { width: 11px; height: 11px; }
    .abt-dot-now { width: 14px; height: 14px; }
    .abt-era-label { margin-left: 68px; font-size: 0.7rem; padding: 0.3rem 0.8rem; }
    .abt-item { gap: 0.7rem; padding-bottom: 1.4rem; }
    /* Keep icon inline but tighten — no column flip so text stays aligned */
    .abt-card-inner { flex-direction: row; align-items: flex-start; gap: 0.6rem; padding: 0.95rem 1rem; }
    .abt-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 1px; }
    /* Body fills remaining width — text always starts & ends at same edge */
    .abt-body { flex: 1; min-width: 0; width: 100%; }
    .abt-title { font-size: 0.9rem; white-space: normal; word-break: break-word; }
    .abt-date { font-size: 0.65rem; }
    .abt-desc { font-size: 0.8rem; line-height: 1.65; margin-bottom: 0.65rem; }
    .abt-pills { gap: 0.35rem; }
    .abt-pill { font-size: 0.62rem; padding: 0.2rem 0.55rem; }
    .abt-card:hover { transform: translateX(3px); }
    /* Disable heavy effects on small screens for perf */
    .abt-card::after { display: none; }
}

/* ── Tablet journey text uniform alignment (≤ 768px) ── */
@media (max-width: 768px) {
    .abt-body { flex: 1; min-width: 0; width: 100%; }
    .abt-desc  { text-align: left; }
    .abt-title { white-space: normal; word-break: break-word; }
}
/* Creators Section */
.creators {
    padding: var(--spacing-xl) 2rem;
    background: var(--color-bg-secondary);
    position: relative;
}

.creators-container {
    max-width: 1400px;
    margin: 0 auto;
}

.creators-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.creator-card {
    background: var(--color-bg-card);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.creator-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.creator-image-wrapper {
    position: relative;
    height: clamp(300px, 50vw, 400px);
    overflow: hidden;
}

.creator-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s ease;
}

.creator-card:hover .creator-image {
    transform: scale(1.1);
}

.creator-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(10, 10, 10, 0.95) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.creator-stats-mini {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.creator-stats-mini span {
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: clamp(0.75rem, 2vw, 0.85rem);
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.creator-content {
    padding: 2rem;
}

.creator-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: var(--badge-color, var(--color-nischay));
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.creator-name {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 5vw, 2rem);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.creator-role {
    color: var(--color-text-secondary);
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.creator-description {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: clamp(0.9rem, 2vw, 1rem);
    text-align: justify;
}

.creator-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.creator-stat {
    text-align: center;
}

.creator-stat .stat-number {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 5vw, 2rem);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.creator-stat .stat-label {
    color: var(--color-text-secondary);
    font-size: clamp(0.75rem, 2vw, 0.85rem);
    margin-top: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.creator-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    transition: all 0.3s ease;
}

.creator-link:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(255, 51, 102, 0.4);
}

.creator-link .youtube-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.creator-link:hover .youtube-icon {
    transform: scale(1.1);
}

.creator-link .arrow {
    transition: transform 0.3s ease;
}

.creator-link:hover .arrow {
    transform: translateX(5px);
}

/* Creator card: two social buttons side by side with gap */
.creator-content .creator-social {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 0;
    animation: none;
    justify-content: flex-start;
}

/* YouTube brand color */
.creator-link-yt {
    background: rgba(255, 0, 0, 0.55);
    box-shadow: 0 4px 14px rgba(255, 0, 0, 0.18);
    flex: 1;
    justify-content: center;
    padding: 0.9rem 1.2rem;
    min-width: 0;
}

.creator-link-yt:hover {
    background: rgba(255, 0, 0, 0.68);
    box-shadow: 0 8px 22px rgba(255, 0, 0, 0.28);
    transform: translateY(-3px);
}

/* Instagram brand gradient */
.creator-link-ig {
    background: linear-gradient(135deg, rgba(90, 30, 140, 0.75) 0%, rgba(170, 20, 20, 0.75) 50%, rgba(180, 110, 30, 0.75) 100%);
    box-shadow: 0 4px 14px rgba(150, 20, 20, 0.18);
    flex: 1;
    justify-content: center;
    padding: 0.9rem 1.2rem;
    min-width: 0;
}

.creator-link-ig:hover {
    background: linear-gradient(135deg, rgba(100, 35, 155, 0.88) 0%, rgba(185, 25, 25, 0.88) 50%, rgba(195, 125, 40, 0.88) 100%);
    box-shadow: 0 8px 22px rgba(150, 20, 20, 0.28);
    transform: translateY(-3px);
}

.ig-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.creator-link-ig:hover .ig-icon {
    transform: scale(1.1);
}

/* ============================================
   CREATOR SECTION — ENHANCED VISUAL EFFECTS
   ============================================ */

/* ── Animated background orbs for the section ── */
.creators {
    overflow: hidden;
}

.creators::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 51, 102, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: creator-orb-drift1 12s ease-in-out infinite alternate;
    z-index: 0;
}

.creators::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 213, 0, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: creator-orb-drift2 14s ease-in-out infinite alternate;
    z-index: 0;
}

.creators-container {
    position: relative;
    z-index: 1;
}

@keyframes creator-orb-drift1 {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(80px, 60px) scale(1.15); }
}
@keyframes creator-orb-drift2 {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-80px, -60px) scale(1.1); }
}

/* ── Card: floating lift + colored glow per creator ── */
.creator-card {
    --card-accent: 255, 51, 102; /* default: red */
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.4s ease,
                border-color 0.4s ease;
}

/* Assign per-card accent colors via nth-child */
.creator-card:nth-child(1) { --card-accent: 255, 51, 102;  }   /* Nischay – red   */
.creator-card:nth-child(2) { --card-accent: 255, 213, 0;   }   /* Abhishek – gold */
.creator-card:nth-child(3) { --card-accent: 255, 102, 255; }   /* Prerna – pink   */
.creator-card:nth-child(4) { --card-accent: 255, 140, 60;  }   /* Dimple – orange */

.creator-card:hover {
    transform: translateY(-14px) scale(1.015);
    border-color: rgba(var(--card-accent), 0.45);
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(var(--card-accent), 0.25),
        0 0 40px rgba(var(--card-accent), 0.15);
}

/* ── Top accent line that slides in on hover ── */
.creator-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        rgba(var(--card-accent), 0.9),
        transparent
    );
    border-radius: 16px 16px 0 0;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 3;
}

.creator-card:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

/* ── Shimmer sweep on hover ── */
.creator-card::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 55%;
    height: 100%;
    background: linear-gradient(
        110deg,
        transparent 35%,
        rgba(255, 255, 255, 0.045) 50%,
        transparent 65%
    );
    pointer-events: none;
    z-index: 2;
    transition: none;
}

.creator-card:hover::after {
    animation: creator-shimmer-sweep 0.7s ease forwards;
}

@keyframes creator-shimmer-sweep {
    0%   { left: -100%; }
    100% { left: 140%;  }
}

/* ── Image: color-tinted hover overlay ── */
.creator-overlay {
    transition: background 0.5s ease;
}

.creator-card:hover .creator-overlay {
    background: linear-gradient(
        to bottom,
        rgba(var(--card-accent), 0.05) 0%,
        rgba(0, 0, 0, 0.35) 45%,
        rgba(10, 10, 10, 0.96) 100%
    );
}

/* ── Mini stats chips: slide up on hover ── */
.creator-stats-mini {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s ease 0.1s, transform 0.35s ease 0.1s;
}

.creator-card:hover .creator-stats-mini {
    opacity: 1;
    transform: translateY(0);
}

.creator-stats-mini span {
    border-color: rgba(var(--card-accent), 0.35);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.creator-card:hover .creator-stats-mini span {
    background: rgba(var(--card-accent), 0.18);
}

/* ── Badge: pulsing glow ── */
.creator-badge {
    position: relative;
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.creator-card:hover .creator-badge {
    transform: translateY(-2px);
    box-shadow: 0 0 18px rgba(var(--card-accent), 0.55), 0 4px 12px rgba(0,0,0,0.3);
    animation: creator-badge-pulse 1.8s ease-in-out infinite;
}

@keyframes creator-badge-pulse {
    0%, 100% { box-shadow: 0 0 14px rgba(var(--card-accent), 0.5), 0 4px 10px rgba(0,0,0,0.25); }
    50%       { box-shadow: 0 0 28px rgba(var(--card-accent), 0.75), 0 6px 16px rgba(0,0,0,0.3); }
}

/* ── Creator name: gradient reveal on hover ── */
.creator-name {
    transition: background 0.35s ease, -webkit-text-fill-color 0.35s ease;
}

.creator-card:hover .creator-name {
    background: linear-gradient(90deg,
        #ffffff 0%,
        rgba(var(--card-accent), 1) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Stat numbers: animated glow ── */
.creator-stats {
    transition: border-color 0.4s ease, background 0.4s ease;
}

.creator-card:hover .creator-stats {
    border-color: rgba(var(--card-accent), 0.2);
    background: rgba(var(--card-accent), 0.04);
}

.creator-stat .stat-number {
    transition: filter 0.35s ease;
}

.creator-card:hover .creator-stat .stat-number {
    filter: drop-shadow(0 0 8px rgba(var(--card-accent), 0.5));
    animation: stat-number-glow 2s ease-in-out infinite;
}

@keyframes stat-number-glow {
    0%, 100% { filter: drop-shadow(0 0 6px rgba(255,51,102,0.45)); }
    50%       { filter: drop-shadow(0 0 14px rgba(255,51,102,0.7)); }
}

/* ── Staggered card entrance on page load ── */
@keyframes creator-card-enter {
    from { opacity: 0; transform: translateY(40px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0)    scale(1); }
}

.creators-grid .creator-card:nth-child(1) { animation: creator-card-enter 0.65s ease both 0.1s; }
.creators-grid .creator-card:nth-child(2) { animation: creator-card-enter 0.65s ease both 0.22s; }
.creators-grid .creator-card:nth-child(3) { animation: creator-card-enter 0.65s ease both 0.34s; }
.creators-grid .creator-card:nth-child(4) { animation: creator-card-enter 0.65s ease both 0.46s; }

/* ── Description text fade-in offset on hover ── */
.creator-description {
    transition: color 0.3s ease;
}

.creator-card:hover .creator-description {
    color: rgba(255, 255, 255, 0.72);
}

/* ── Role text colored on hover ── */
.creator-role {
    transition: color 0.35s ease;
}

.creator-card:hover .creator-role {
    color: rgba(var(--card-accent), 0.85);
}

/* ── Subtle inner glow layer inside card ── */
.creator-card .creator-content {
    position: relative;
    z-index: 1;
}

.creator-card .creator-content::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(var(--card-accent), 0.5), transparent);
    border-radius: 0 0 16px 16px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.creator-card:hover .creator-content::before {
    opacity: 1;
}

/* ============================================
   SECONDARY CHANNELS STRIP
   ============================================ */

.secondary-channels {
    margin-top: 3.5rem;
    padding-top: 2.5rem;
}

.secondary-channels-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.secondary-channels-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    white-space: nowrap;
}

.secondary-channels-divider {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
}

/* Secondary channels intro text */
.secondary-channels-intro {
    margin-bottom: 1.5rem;
}

.secondary-channels-desc {
    font-size: clamp(0.88rem, 2vw, 1rem);
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.secondary-channels-desc strong {
    color: var(--color-text-primary);
    font-weight: 600;
}

.secondary-channels-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.sc-tag {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.sc-tag:hover {
    background: rgba(255, 51, 102, 0.08);
    border-color: rgba(255, 51, 102, 0.2);
    color: var(--color-text-primary);
}

.secondary-channels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.9rem;
}

.secondary-channel-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    text-decoration: none;
    color: var(--color-text-secondary);
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.secondary-channel-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: 0;
}

.secondary-channel-card:hover {
    border-color: rgba(255, 51, 102, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 51, 102, 0.1);
    color: var(--color-text-primary);
}

.secondary-channel-card:hover::before {
    opacity: 0.05;
}

.secondary-channel-card > * {
    position: relative;
    z-index: 1;
}

.sc-icon-wrap {
    width: 34px;
    height: 34px;
    background: rgba(255, 51, 102, 0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.25s ease;
}

.secondary-channel-card:hover .sc-icon-wrap {
    background: rgba(255, 51, 102, 0.25);
}

.sc-icon-wrap svg {
    color: #ff3366;
}

.sc-info {
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
    flex: 1;
    min-width: 0;
}

.sc-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sc-meta {
    font-size: 0.72rem;
    color: var(--color-text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sc-arrow {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.secondary-channel-card:hover .sc-arrow {
    color: #ff3366;
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 1024px) {
    .secondary-channels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .secondary-channels-grid {
        grid-template-columns: 1fr;
    }
}

/* Content Section */
.content {
    padding: var(--spacing-xl) 2rem;
    background: var(--color-bg-primary);
    position: relative;
}

.content-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Popular Videos Grid */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.video-card {
    background: var(--color-bg-card);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.1);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
    background: var(--color-bg-secondary);
}

.thumbnail-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .thumbnail-image {
    transform: scale(1.05);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.live-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff0000;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    animation: pulse 2s ease-in-out infinite;
    z-index: 2;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
    opacity: 0;
    transition: all 0.3s ease;
    padding-left: 5px;
    z-index: 3;
}

.video-card:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 1.5rem;
}

.channel-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--badge-color, var(--gradient-primary));
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.video-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    color: var(--color-text-primary);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-description {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-stats {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
}

.video-stats .views {
    font-weight: 500;
}

.video-stats .dot {
    font-size: 0.6rem;
}

.video-stats .date {
    font-weight: 400;
}

.video-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    background: var(--gradient-primary);
    box-shadow: 0 4px 14px rgba(255,51,102,0.3);
    transition: gap 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.video-link:hover {
    gap: 0.8rem;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,51,102,0.5);
}

/* ── Video card action row ── */
.video-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Watch Now button — links directly to YouTube */
.video-play-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1.2rem;
    background: var(--gradient-primary);
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: var(--font-body);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    box-shadow: 0 4px 16px rgba(255, 51, 102, 0.3);
}

.video-play-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 24px rgba(255, 51, 102, 0.45);
    filter: brightness(1.1);
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.video-play-btn:active {
    transform: translateY(0) scale(0.98);
}

/* ============================================
   YOUTUBE VIDEO MODAL LIGHTBOX
   ============================================ */
.yt-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.yt-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.yt-modal {
    background: #111;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    max-width: 900px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8),
                0 0 0 1px rgba(255, 51, 102, 0.15),
                0 0 60px rgba(255, 51, 102, 0.07);
    transform: scale(0.92) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.yt-modal-overlay.active .yt-modal {
    transform: scale(1) translateY(0);
}

/* Modal header bar */
.yt-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.25rem;
    background: #0d0d0d;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    gap: 1rem;
}

.yt-modal-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

.yt-modal-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* "Watch on YouTube" button */
.yt-open-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 1rem;
    background: rgba(255, 0, 0, 0.75);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    font-family: var(--font-body);
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    box-shadow: 0 3px 12px rgba(255, 0, 0, 0.25);
}

.yt-open-btn:hover {
    background: rgba(255, 0, 0, 0.92);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.38);
}

/* Close button */
.yt-close-btn {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.yt-close-btn:hover {
    background: rgba(255, 51, 102, 0.25);
    border-color: rgba(255, 51, 102, 0.4);
    transform: scale(1.08);
}

/* 16:9 iframe wrapper */
.yt-modal-iframe-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
}

.yt-modal-iframe-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 600px) {
    .yt-modal {
        border-radius: 10px;
    }
    .yt-modal-header {
        padding: 0.7rem 1rem;
    }
    .yt-open-btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
    }
    .video-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    .video-play-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Content Stats Section */
.content-stats {
    margin-top: 5rem;
    padding: clamp(2rem, 5vw, 4rem);
    background: var(--color-bg-card);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number-large {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientFlow 5s linear infinite;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label-large {
    color: var(--color-text-secondary);
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .videos-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
        gap: 1.8rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .content {
        padding: 3rem 1rem;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .video-thumbnail {
        padding-top: 56.25%; /* Exact 16:9 — full thumbnail, no crop on mobile */
    }
    
    .video-info {
        padding: 1.2rem;
    }
    
    .video-title {
        font-size: 1rem;
    }
    
    .video-description {
        font-size: 0.85rem;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .content-stats {
        margin-top: 3rem;
        padding: 2rem 1.5rem;
    }
    
    .stats-row {
        gap: 2rem;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
    .video-thumbnail {
        padding-top: 56.25%; /* Exact 16:9 — full video visible, no crop */
    }
    
    .video-duration {
        font-size: 0.7rem;
        padding: 3px 6px;
    }
    
    .live-badge {
        font-size: 0.7rem;
        padding: 3px 10px;
    }
    
    .channel-badge {
        font-size: 0.65rem;
        padding: 0.35rem 0.9rem;
    }
    
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* ============================================
   TV SHOWS & APPEARANCES SECTION
   ============================================ */

/* ============================================
   TV SHOWS SECTION — BASE + RICH EFFECTS
   ============================================ */

/* ── Keyframes ── */
@keyframes show-orb-float-1 {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(50px, -40px) scale(1.12); }
    100% { transform: translate(0, 0) scale(1); }
}
@keyframes show-orb-float-2 {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(-60px, 50px) scale(1.08); }
    100% { transform: translate(0, 0) scale(1); }
}
@keyframes show-orb-float-3 {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(30px, 60px) scale(0.92); }
    100% { transform: translate(0, 0) scale(1); }
}
@keyframes show-shimmer {
    0%   { left: -120%; }
    100% { left: 150%; }
}
@keyframes show-card-enter {
    from { opacity: 0; transform: translateY(40px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0)    scale(1); }
}
@keyframes show-badge-pulse {
    0%, 100% { box-shadow: 0 4px 14px rgba(var(--show-accent), 0.4); }
    50%       { box-shadow: 0 4px 28px rgba(var(--show-accent), 0.75); }
}
@keyframes show-stat-pop {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.07); }
    100% { transform: scale(1); }
}
@keyframes show-accent-bar {
    from { transform: scaleX(0); opacity: 0; }
    to   { transform: scaleX(1); opacity: 1; }
}

/* ── Section shell ── */
.tv-shows {
    padding: var(--spacing-xl) 2rem;
    background: var(--color-bg-secondary);
    position: relative;
    overflow: hidden;
}

/* Ambient background orbs */
.tv-shows::before,
.tv-shows::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(70px);
}
.tv-shows::before {
    width: 520px; height: 520px;
    top: -160px; left: -120px;
    background: radial-gradient(circle, rgba(255,51,102,0.07) 0%, transparent 70%);
    animation: show-orb-float-1 16s ease-in-out infinite;
}
.tv-shows::after {
    width: 460px; height: 460px;
    bottom: -120px; right: -80px;
    background: radial-gradient(circle, rgba(255,215,0,0.06) 0%, transparent 70%);
    animation: show-orb-float-2 20s ease-in-out infinite;
}

/* Extra third orb via container pseudo */
.tv-shows-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.tv-shows-container::before {
    content: '';
    position: absolute;
    width: 340px; height: 340px;
    top: 40%; left: 55%;
    background: radial-gradient(circle, rgba(100,180,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(55px);
    pointer-events: none;
    z-index: 0;
    animation: show-orb-float-3 18s ease-in-out infinite;
}

/* ── Grid ── */
.shows-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

/* ── Card base ── */
.show-card {
    background: var(--color-bg-card);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    /* Per-card accent color — overridden by nth-child below */
    --show-accent: 255, 51, 102;
    transition:
        transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

/* Accent colours per card */
.show-card:nth-child(1) { --show-accent: 255, 51,  102; }  /* Bigg Boss   — red    */
.show-card:nth-child(2) { --show-accent: 255, 165,   0; }  /* Game Glory  — orange */
.show-card:nth-child(3) { --show-accent: 255, 102, 255; }  /* Game Greed  — purple-pink */

/* Staggered entrance */
.shows-grid .show-card:nth-child(1) { animation: show-card-enter 0.65s ease both 0.10s; }
.shows-grid .show-card:nth-child(2) { animation: show-card-enter 0.65s ease both 0.22s; }
.shows-grid .show-card:nth-child(3) { animation: show-card-enter 0.65s ease both 0.34s; }

/* ── Card hover — lift + colored glow ── */
.show-card:hover {
    transform: translateY(-14px) scale(1.016);
    border-color: rgba(var(--show-accent), 0.42);
    box-shadow:
        0 32px 72px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(var(--show-accent), 0.22),
        0 0 44px rgba(var(--show-accent), 0.14);
}

/* Top accent bar — slides in from center on hover */
.show-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(var(--show-accent), 1) 50%,
        transparent 100%
    );
    border-radius: 18px 18px 0 0;
    transform: scaleX(0);
    transform-origin: center;
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
    z-index: 4;
    pointer-events: none;
}
.show-card:hover::before {
    transform: scaleX(1);
    opacity: 1;
}

/* Shimmer sweep on hover */
.show-card::after {
    content: '';
    position: absolute;
    top: 0; left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        110deg,
        transparent 35%,
        rgba(255, 255, 255, 0.045) 50%,
        transparent 65%
    );
    pointer-events: none;
    z-index: 3;
}
.show-card:hover::after {
    animation: show-shimmer 0.75s ease forwards;
}

/* ── Image wrapper ── */
.show-image-wrapper {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
}

/* Gradient overlay — tints to card accent on hover */
.show-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(var(--show-accent), 0.04) 0%,
        transparent 40%,
        rgba(10, 10, 10, 0.72) 100%
    );
    transition: background 0.5s ease;
    pointer-events: none;
    z-index: 1;
}
.show-card:hover .show-image-wrapper::after {
    background: linear-gradient(
        to bottom,
        rgba(var(--show-accent), 0.15) 0%,
        transparent 40%,
        rgba(10, 10, 10, 0.84) 100%
    );
}

.show-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s ease, filter 0.5s ease;
    filter: brightness(0.9) saturate(1.05);
}
.show-card:hover .show-image {
    transform: scale(1.09);
    filter: brightness(1.0) saturate(1.18);
}

.shows-grid .show-card:nth-child(4) .show-image-wrapper {
    height: auto;
}
.shows-grid .show-card:nth-child(4) .show-image {
    height: auto;
    object-fit: contain;
}

/* ── Badge ── */
.show-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.45rem 1rem;
    background: rgba(var(--show-accent), 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    z-index: 2;
    box-shadow: 0 4px 14px rgba(var(--show-accent), 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.show-card:hover .show-badge {
    transform: translateY(-2px) scale(1.05);
    animation: show-badge-pulse 1.8s ease-in-out infinite;
}

/* ── Content area ── */
.show-content {
    padding: 1.6rem;
    position: relative;
    z-index: 1;
}

/* Bottom accent rule inside content */
.show-content::after {
    content: '';
    position: absolute;
    bottom: 0; left: 1.6rem; right: 1.6rem;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(var(--show-accent), 0.35),
        transparent
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.show-card:hover .show-content::after {
    opacity: 1;
}

/* ── Genre tag ── */
.show-tag {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: rgba(var(--show-accent), 0.1);
    border: 1px solid rgba(var(--show-accent), 0.28);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: rgb(var(--show-accent));
    transition: background 0.3s ease, border-color 0.3s ease;
}
.show-card:hover .show-tag {
    background: rgba(var(--show-accent), 0.18);
    border-color: rgba(var(--show-accent), 0.5);
}

/* ── Title ── */
.show-title {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    transition: background 0.35s ease;
}
.show-card:hover .show-title {
    background: linear-gradient(
        90deg,
        #ffffff 0%,
        rgb(var(--show-accent)) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Participant ── */
.show-participant {
    color: rgb(var(--show-accent));
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}
.show-card:hover .show-participant {
    opacity: 1;
}

/* ── Description ── */
.show-description {
    color: var(--color-text-secondary);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-size: 0.92rem;
    transition: color 0.3s ease;
    text-align: justify;
}
.show-card:hover .show-description {
    color: rgba(255, 255, 255, 0.68);
}

/* ── Stat chips ── */
.show-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}
.show-stat {
    padding: 0.4rem 0.88rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.show-card:hover .show-stat {
    background: rgba(var(--show-accent), 0.1);
    border-color: rgba(var(--show-accent), 0.3);
    color: rgba(255, 255, 255, 0.8);
}
/* Staggered pop on hover */
.show-card:hover .show-stat:nth-child(1) { animation: show-stat-pop 0.35s ease both 0.05s; }
.show-card:hover .show-stat:nth-child(2) { animation: show-stat-pop 0.35s ease both 0.13s; }
.show-card:hover .show-stat:nth-child(3) { animation: show-stat-pop 0.35s ease both 0.21s; }

/* ============================================
   AWARDS & ACHIEVEMENTS SECTION
   ============================================ */

/* Award keyframes */
@keyframes award-float-glow {
    0%,100% { transform: translateY(0) scale(1);    filter: drop-shadow(0 0 8px rgba(255,215,0,0.5))  drop-shadow(0 4px 12px rgba(255,51,102,0.3)); }
    50%      { transform: translateY(-10px) scale(1.1); filter: drop-shadow(0 0 22px rgba(255,215,0,0.9)) drop-shadow(0 8px 20px rgba(255,51,102,0.55)); }
}
@keyframes award-shimmer {
    0%   { left: -100%; }
    100% { left: 200%; }
}
@keyframes award-top-bar {
    0%   { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}
@keyframes award-glow-pulse {
    0%,100% { box-shadow: 0 8px 30px rgba(255,51,102,0.15), 0 0 0 1px rgba(255,51,102,0.2); }
    50%      { box-shadow: 0 20px 60px rgba(255,51,102,0.35), 0 0 0 1px rgba(255,215,0,0.3); }
}

.awards {
    padding: var(--spacing-xl) 2rem;
    background: var(--color-bg-primary);
    position: relative;
    overflow: hidden;
}

/* Background glow orbs */
.awards::before {
    content: '';
    position: absolute;
    width: 700px; height: 700px;
    top: -250px; left: -200px;
    background: radial-gradient(circle, rgba(255,51,102,0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.awards::after {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    bottom: -200px; right: -150px;
    background: radial-gradient(circle, rgba(255,215,0,0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.awards-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.award-card {
    background: var(--color-bg-card);
    padding: 0;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1),
                border-color 0.3s ease;
    border: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
    position: relative;
}

/* Animated gradient top bar */
.award-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff3366, #ffd700, #ff66ff, #ff3366);
    background-size: 200% auto;
    animation: award-top-bar 3s linear infinite;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 3;
}
.award-card:hover::before { opacity: 1; }

/* Shimmer sweep */
.award-card::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 55%; height: 100%;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.04) 50%, transparent 60%);
    pointer-events: none;
    z-index: 2;
}
.award-card:hover::after {
    animation: award-shimmer 0.75s ease forwards;
}

.award-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(255,51,102,0.4);
    animation: award-glow-pulse 2.2s ease-in-out infinite;
}

.award-image-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    background: #000;
}

/* Pink gradient image overlay on hover */
.award-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(255,51,102,0.35) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}
.award-card:hover .award-image-wrapper::after { opacity: 1; }

.award-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.award-card:hover .award-image { transform: scale(1.08); }

.award-icon {
    font-size: 3rem;
    margin: 1.5rem 0 0.5rem;
    display: block;
    animation: award-float-glow 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.award-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    padding: 0 1.5rem;
    margin-top: 1rem;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
    line-height: 1.4;
}
.award-card:hover .award-title {
    background: linear-gradient(90deg, #ff3366, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.award-recipient {
    color: var(--color-nischay);
    font-weight: 700;
    margin-bottom: 0.5rem;
    padding: 0 1.5rem;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    transition: text-shadow 0.3s ease;
}
.award-card:hover .award-recipient {
    text-shadow: 0 0 18px rgba(255,51,102,0.6);
}

.award-year {
    display: inline-block;
    font-size: 0.78rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0.22rem 0.9rem;
    border-radius: 50px;
    background: rgba(255,215,0,0.1);
    border: 1px solid rgba(255,215,0,0.28);
    color: #ffd700;
    position: relative;
    z-index: 1;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
.award-card:hover .award-year {
    background: rgba(255,215,0,0.2);
    box-shadow: 0 4px 14px rgba(255,215,0,0.25);
}

.award-description {
    color: var(--color-text-secondary);
    line-height: 1.7;
    font-size: 0.88rem;
    padding: 0.5rem 1.5rem 2rem;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
    text-align: justify;
}
.award-card:hover .award-description { color: rgba(255,255,255,0.7); }

/* ============================================
   GALLERY SECTION
   ============================================ */

@keyframes gallery-shimmer {
    0%   { left: -100%; }
    100% { left: 200%; }
}
@keyframes gallery-top-bar {
    0%   { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}
@keyframes gallery-glow-pulse {
    0%,100% { box-shadow: 0 8px 30px rgba(255,51,102,0.15); }
    50%      { box-shadow: 0 24px 60px rgba(255,51,102,0.35), 0 0 0 1px rgba(255,215,0,0.2); }
}

.gallery {
    padding: var(--spacing-xl) 2rem;
    background: var(--color-bg-primary);
    position: relative;
    overflow: hidden;
}

/* Background accent orbs */
.gallery::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    top: -200px; right: -150px;
    background: radial-gradient(circle, rgba(255,51,102,0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.gallery::after {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    bottom: -150px; left: -100px;
    background: radial-gradient(circle, rgba(255,215,0,0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 400px), 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    background: var(--color-bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1),
                border-color 0.3s ease;
    cursor: pointer;
}

/* Animated gradient top bar */
.gallery-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff3366, #ffd700, #ff66ff, #ff3366);
    background-size: 200% auto;
    animation: gallery-top-bar 3s linear infinite;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 3;
}
.gallery-item:hover::before { opacity: 1; }

/* Shimmer sweep */
.gallery-item::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 55%; height: 100%;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.04) 50%, transparent 60%);
    pointer-events: none;
    z-index: 2;
}
.gallery-item:hover::after {
    animation: gallery-shimmer 0.75s ease forwards;
}

.gallery-item:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(255,51,102,0.4);
    animation: gallery-glow-pulse 2.2s ease-in-out infinite;
}

/* Multi-image Grid Layout - SHOW ONLY FIRST IMAGE */
.gallery-images-grid {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #000;
}

/* First image - ONLY VISIBLE IMAGE */
.gallery-images-grid .gallery-grid-image:nth-child(1) {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Hide ALL other images */
.gallery-images-grid .gallery-grid-image:nth-child(n+2) {
    display: none;
}

.gallery-grid-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.gallery-item:hover .gallery-grid-image { transform: scale(1.08); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(255,51,102,0.15) 40%,
        rgba(10,10,10,0.88) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay-content {
    text-align: center;
    z-index: 2;
}

.gallery-count {
    display: block;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.gallery-view-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
    box-shadow: 0 6px 24px rgba(255,51,102,0.4);
}
.gallery-view-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 36px rgba(255,51,102,0.6);
}
.gallery-view-btn svg { width: 18px; height: 18px; }

.gallery-info {
    padding: 1.25rem 1.5rem;
    position: relative;
    z-index: 1;
}

.gallery-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--color-text-primary);
    transition: color 0.3s ease;
}
.gallery-item:hover .gallery-title {
    background: linear-gradient(90deg, #ff3366, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery-category {
    font-size: 0.82rem;
    color: var(--color-nischay);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: text-shadow 0.3s ease;
}
.gallery-item:hover .gallery-category {
    text-shadow: 0 0 14px rgba(255,51,102,0.5);
}

/* Gallery Lightbox */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: lightboxZoom 0.4s ease;
}

@keyframes lightboxZoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-image {
    max-width: 90vw;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
}

.lightbox-caption {
    margin-top: 1.5rem;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    padding: 0 2rem;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(255, 51, 102, 0.9);
    border-color: rgba(255, 51, 102, 1);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    z-index: 10001;
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 51, 102, 0.9);
    border-color: rgba(255, 51, 102, 1);
    transform: translateY(-50%) scale(1.1);
}

/* ============================================
   FOKUS BRAND SECTION
   ============================================ */

/* Fokus Brand Section */
.fokus-brand {
    padding: var(--spacing-xl) 2rem;
    background: var(--color-bg-secondary);
    position: relative;
    overflow: hidden;
}

.fokus-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-nischay), transparent);
}

.fokus-container {
    max-width: 1400px;
    margin: 0 auto;
}

.fokus-content {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Hero Product Section */
.fokus-hero-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--color-bg-card);
    padding: clamp(2rem, 5vw, 4rem);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.fokus-hero-product::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 51, 102, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.fokus-hero-image {
    position: relative;
    z-index: 1;
}

.hero-drink-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(255, 51, 102, 0.3));
    animation: floatImage 3s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.fokus-hero-text {
    position: relative;
    z-index: 1;
}

.fokus-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    line-height: 1.2;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fokus-hero-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    text-align: justify;
}

.fokus-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

/* Override global .hero-badge margin that bleeds into fokus section */
.fokus-hero-badges .hero-badge {
    margin-bottom: 0;
    animation: none;
    text-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255, 51, 102, 0.1);
    border: 1px solid rgba(255, 51, 102, 0.3);
    color: var(--color-nischay);
}

.hero-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 51, 102, 0.1);
    border: 1px solid rgba(255, 51, 102, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-nischay);
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(255, 51, 102, 0.2);
    transform: translateY(-2px);
}

@media (max-width: 968px) {
    .fokus-hero-product {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .fokus-hero-badges {
        justify-content: center;
    }
}

.fokus-logo-section {
    text-align: center;
    padding: 2rem;
    background: var(--color-bg-card);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.fokus-logo {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 6rem);
    letter-spacing: 8px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientFlow 5s linear infinite;
    margin-bottom: 1rem;
}

.fokus-tagline {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--color-text-secondary);
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.fokus-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

/* Founders Section */
/* Combined Story Box */
.fokus-story-box {
    background: var(--color-bg-card);
    padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.fokus-story-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
}

/* Logo Header */
.fokus-logo-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.fokus-logo {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 6rem);
    letter-spacing: 10px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientFlow 5s linear infinite;
    margin-bottom: 1rem;
    line-height: 1;
}

.fokus-tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--color-text-secondary);
    font-weight: 600;
    letter-spacing: 2px;
}

/* Description Text */
.fokus-description-text {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.fokus-description-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--color-text-secondary);
}

/* Divider */
.fokus-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    margin: 3rem 0;
}

/* Section Subtitle */
.fokus-section-subtitle {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    text-align: center;
    margin-bottom: 2.5rem;
    letter-spacing: 3px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Founders Section */
.fokus-founders-section {
    margin-bottom: 3rem;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    gap: 2rem;
}

.founder-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.founder-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 51, 102, 0.15);
}

.founder-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 3px;
}

.founder-avatar::before {
    content: '';
    position: absolute;
    inset: 3px;
    background: var(--color-bg-card);
    border-radius: 50%;
    z-index: 0;
}

/* Image support for founder avatars */
.founder-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.founder-initial {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: white;
    position: relative;
    z-index: 1;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.founder-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-text-primary);
}

.founder-role {
    font-size: 0.95rem;
    color: var(--color-nischay);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.founder-title {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

/* Benefits Section */
.fokus-benefits-section {
    margin-bottom: 0;
}

/* Fokus feature keyframes */
@keyframes fokus-icon-float {
    0%,100% { transform: translateY(0) scale(1); }
    50%      { transform: translateY(-7px) scale(1.1); }
}
@keyframes fokus-shimmer {
    0%   { left: -100%; }
    100% { left: 200%; }
}
@keyframes fokus-top-bar {
    0%   { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}
@keyframes fokus-glow-pulse {
    0%,100% { box-shadow: 0 8px 30px rgba(255,51,102,0.12), 0 0 0 1px rgba(255,51,102,0.15); }
    50%      { box-shadow: 0 20px 55px rgba(255,51,102,0.28), 0 0 0 1px rgba(255,215,0,0.25); }
}

.fokus-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: 2rem;
}

.fokus-feature {
    text-align: center;
    padding: 2.2rem 1.6rem 2rem;
    background: var(--color-bg-card);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.07);
    transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1),
                border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: default;
}

/* Animated gradient top bar */
.fokus-feature::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff3366, #ffd700, #ff66ff, #ff3366);
    background-size: 200% auto;
    animation: fokus-top-bar 3s linear infinite;
    opacity: 0;
    transition: opacity 0.35s ease;
    border-radius: 20px 20px 0 0;
    z-index: 2;
}
.fokus-feature:hover::before { opacity: 1; }

/* Shimmer sweep */
.fokus-feature::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.045) 50%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}
.fokus-feature:hover::after {
    animation: fokus-shimmer 0.7s ease forwards;
}

.fokus-feature:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: rgba(255,51,102,0.35);
    animation: fokus-glow-pulse 2s ease-in-out infinite;
}

.fokus-feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(255,51,102,0.3));
    transition: filter 0.3s ease;
    position: relative;
    z-index: 1;
}
.fokus-feature:hover .fokus-feature-icon {
    animation: fokus-icon-float 2s ease-in-out infinite;
    filter: drop-shadow(0 8px 22px rgba(255,51,102,0.6));
}

.fokus-feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--color-text-primary);
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}
.fokus-feature:hover .fokus-feature-title {
    background: linear-gradient(90deg, #ff3366, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fokus-feature-text {
    color: var(--color-text-secondary);
    line-height: 1.75;
    font-size: 0.92rem;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}
.fokus-feature:hover .fokus-feature-text {
    color: rgba(255,255,255,0.72);
}

/* Responsive */
@media (max-width: 768px) {
    .fokus-story-box {
        padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2rem);
    }
    
    .fokus-divider {
        margin: 2rem 0;
    }
    
    .fokus-founders-section,
    .fokus-benefits-section {
        margin-bottom: 2rem;
    }
    
    .founders-grid {
        gap: 1.5rem;
    }
    
    .founder-avatar {
        width: 100px;
        height: 100px;
    }
    
    .founder-avatar img {
        object-fit: cover;
        object-position: center;
    }
    
    .fokus-features-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .fokus-logo {
        letter-spacing: 6px;
    }
    
    .founder-avatar {
        width: 90px;
        height: 90px;
    }
    
    .founder-initial {
        font-size: 2rem;
    }
}

/* Flavors Section */
.fokus-flavors {
    background: var(--color-bg-card);
    padding: clamp(2rem, 5vw, 3rem);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.fokus-flavors-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 2.5rem;
    letter-spacing: 2px;
}

.fokus-flavors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    gap: 2rem;
}

.flavor-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.flavor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 51, 102, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.flavor-card:hover::before {
    opacity: 1;
}

.flavor-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(255, 51, 102, 0.2);
}

.flavor-image {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.drink-can {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(255, 51, 102, 0.25));
    transition: transform 0.3s ease;
}

.flavor-card:hover .drink-can {
    transform: scale(1.05) translateY(-5px);
}

.flavor-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 10px rgba(255, 51, 102, 0.3));
    position: relative;
    z-index: 1;
}

.flavor-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.flavor-desc {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

/* ===================================
   FOKUS INSTAGRAM SECTION - VIDEO PLAYER
   =================================== */

.fokus-instagram-wrapper {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Instagram Header */
.instagram-header {
    text-align: center;
    margin-bottom: 3rem;
}

.instagram-section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: 3px;
    background: linear-gradient(90deg, #ff3366, #ffd700, #ff66ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.instagram-section-subtitle {
    font-size: 1.1rem;
    color: #999999;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.instagram-sources {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    margin-top: 1.5rem;
}

.instagram-source-item {
    font-size: 1rem;
    color: #999999;
}

.instagram-source-item strong {
    color: #ffffff;
    font-weight: 600;
}

.instagram-source-link {
    color: #ff6b35;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.instagram-source-link:hover {
    color: #ff8c5a;
    text-decoration: underline;
}

/* Instagram Feed Grid */
.instagram-feed {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 3rem;
}

/* Remove all custom post styling - use pure Instagram embeds */
.instagram-post {
    display: none; /* Hide if any exist */
}

/* Instagram native blockquote embeds */
.instagram-media {
    margin: 0 auto !important;
    max-width: 540px !important;
}

/* Post Header */
.instagram-post-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.instagram-profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.instagram-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #8134af 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    border: 2px solid #1a1a1a;
}

.letsfokus-avatar {
    background: linear-gradient(135deg, #4f46e5 0%, #ec4899 50%, #f97316 100%);
}

.instagram-profile-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.instagram-username {
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff;
}

.instagram-location {
    font-size: 0.8rem;
    color: #999999;
}

.instagram-view-profile {
    background: transparent;
    border: none;
    color: #0095f6;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.instagram-view-profile:hover {
    background: rgba(0, 149, 246, 0.1);
}

/* Video Container */
.instagram-post-media {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #000000;
    overflow: hidden;
}

.instagram-video-container {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    background: #000;
}

.instagram-video {
    width: 100% !important;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
}

/* Instagram Reel Iframe Styles */
.instagram-reel-iframe {
    width: 100% !important;
    height: 800px !important;
    min-height: 500px;
    border: none !important;
    overflow: hidden;
    background: #000;
}

/* Video Overlay with Play Button */
.instagram-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: all;
}

.instagram-play-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s ease;
}

.instagram-play-btn:hover {
    transform: scale(1.1);
}

.instagram-play-btn:active {
    transform: scale(0.95);
}

/* Sound Button */
.instagram-video-sound {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    z-index: 10;
}

.instagram-sound-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.instagram-sound-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.instagram-sound-btn:active {
    transform: scale(0.95);
}

.instagram-sound-btn svg {
    width: 20px;
    height: 20px;
}

/* Post Actions */
.instagram-post-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.instagram-actions-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.instagram-action-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-action-btn svg {
    width: 24px;
    height: 24px;
}

.instagram-action-btn:hover {
    color: #999999;
    transform: scale(1.1);
}

.instagram-action-btn:active {
    transform: scale(0.95);
}

/* Post Info */
.instagram-post-info {
    padding: 0.75rem 1.25rem 1rem;
}

.instagram-likes {
    font-weight: 600;
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.instagram-username-caption {
    font-weight: 600;
    font-size: 0.9rem;
    color: #ffffff;
}

.instagram-view-more {
    display: block;
    padding: 0.75rem 1.25rem;
    color: #999999;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.instagram-view-more:hover {
    color: #ffffff;
}

/* Footer Follow Button */
.instagram-footer {
    text-align: center;
    padding-top: 2rem;
}

.instagram-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #8134af 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(245, 133, 41, 0.3);
}

.instagram-follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(245, 133, 41, 0.5);
}

.instagram-follow-btn svg {
    width: 24px;
    height: 24px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .fokus-instagram-wrapper {
        padding: 3rem 1rem;
    }
    
    .instagram-section-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .instagram-feed {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    
    .instagram-media {
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .instagram-sources {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .instagram-source-item {
        font-size: 0.9rem;
    }
    
    .instagram-follow-btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .instagram-section-title {
        font-size: 1.5rem;
    }
    
    .instagram-section-subtitle {
        font-size: 1rem;
    }
    
    .instagram-avatar {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .instagram-username {
        font-size: 0.9rem;
    }
    
    .instagram-location {
        font-size: 0.75rem;
    }
    
    /* Mobile responsive video/image fixes */
    .instagram-post-media {
        aspect-ratio: 1 / 1;
        width: 100%;
        max-height: 500px;
    }
    
    .instagram-video {
        object-fit: cover;
        object-position: center;
    }
    
    .instagram-play-btn svg {
        width: 45px;
        height: 45px;
    }
    
    .instagram-action-btn svg {
        width: 22px;
        height: 22px;
    }
}

/* Animation for liked heart */
@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.3); }
    50% { transform: scale(1.1); }
}

.instagram-like-btn.liked {
    animation: heartBeat 0.5s ease;
}

/* Bottom Section */
.fokus-bottom {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.fokus-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--color-bg-card);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.fokus-cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fokus-cta-text {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
}

.fokus-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.fokus-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.fokus-btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 5px 20px rgba(255, 51, 102, 0.3);
}

.fokus-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 51, 102, 0.5);
}

.fokus-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.fokus-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

@media (max-width: 640px) {
    .fokus-cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 1.5rem;
    }
    
    .fokus-btn {
        width: 100%;
        justify-content: center;
    }
}

.fokus-arrow {
    transition: transform 0.3s ease;
}

.fokus-btn:hover .fokus-arrow {
    transform: translateX(5px);
}

.fokus-note {
    margin-top: 1rem;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

.fokus-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr));
    gap: 2rem;
    padding: 2rem;
    background: var(--color-bg-card);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.fokus-stat-item {
    text-align: center;
}

.fokus-stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.fokus-stat-label {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .fokus-instagram-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .fokus-instagram-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .fokus-instagram-icon {
        width: 60px;
        height: 60px;
    }
    
    .fokus-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .instagram-feature-item {
        padding: 1.2rem 0.8rem;
    }
    
    .instagram-feature-item .feature-emoji {
        font-size: 2rem;
    }
    
    .instagram-feature-item h4 {
        font-size: 1rem;
    }
    
    .instagram-feature-item p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .fokus-instagram-features {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: var(--color-bg-secondary);
    padding: var(--spacing-xl) 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-brand {
    max-width: 100%;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 5vw, 2rem);
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientFlow 5s linear infinite;
}

.footer-tagline {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

/* Creator card - two social buttons side by side */
/* .creator-social {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    flex-wrap: wrap;
}

.creator-link-yt {
    background: var(--gradient-primary);
    flex: 1;
    justify-content: center;
    padding: 0.85rem 1rem;
    min-width: 0;
}

.creator-link-ig {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    flex: 1;
    justify-content: center;
    padding: 0.85rem 1rem;
    min-width: 0;
}

.creator-link-ig:hover {
    box-shadow: 0 10px 30px rgba(253, 29, 29, 0.4);
    transform: translateX(5px);
}

.ig-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.creator-link-ig:hover .ig-icon {
    transform: scale(1.1);
} */

/* Footer Instagram follow grid */
.footer-instagram-section {
    width: 100%;
}

.footer-ig-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 0.75rem;
}

.footer-ig-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1.1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    text-decoration: none;
    color: var(--color-text-primary);
    transition: all 0.25s ease;
}

.footer-ig-item:hover {
    background: linear-gradient(135deg, rgba(131, 58, 180, 0.2) 0%, rgba(253, 29, 29, 0.2) 100%);
    border-color: rgba(253, 29, 29, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253, 29, 29, 0.1);
}

.footer-ig-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    border-radius: 8px;
    flex-shrink: 0;
}

.footer-ig-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.footer-ig-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-text-primary);
    line-height: 1.2;
}

.footer-ig-handle {
    font-size: 0.76rem;
    color: var(--color-text-secondary);
    line-height: 1.2;
}

@media (max-width: 1024px) {
    .footer-ig-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-ig-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .footer-ig-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--color-text-primary);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.social-link:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-text-primary);
}

.footer-newsletter-text {
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Footer Contact Form */
.footer-contact-section {
    grid-column: span 2;
}

.footer-contact-text {
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form-group {
    width: 100%;
}

.contact-input {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--color-text-primary);
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
}

.contact-input::placeholder {
    color: var(--color-text-secondary);
    opacity: 0.7;
}

.contact-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
}

.contact-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.contact-select option {
    background: var(--color-bg-secondary);
    color: var(--color-text-primary);
    padding: 0.5rem;
}

.contact-textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.contact-submit-btn {
    width: 50%;
    padding: 1rem 1.5rem;
    margin: 0 auto;
    background: var(--gradient-primary);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 51, 102, 0.4);
}

.contact-submit-btn:active {
    transform: translateY(0);
}

.contact-arrow {
    transition: transform 0.3s ease;
}

.contact-submit-btn:hover .contact-arrow {
    transform: translateX(5px);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.9rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--color-text-primary);
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
}

.newsletter-btn {
    padding: 0.9rem 1.5rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    transform: translateX(3px);
    box-shadow: 0 5px 20px rgba(255, 51, 102, 0.4);
}

.footer-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1.2rem 1.5rem;
    margin-bottom: 2rem;
    background: rgba(255, 200, 0, 0.06);
    border: 1px solid rgba(255, 200, 0, 0.2);
    border-radius: 10px;
}

.footer-disclaimer-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.footer-disclaimer-text {
    font-size: 0.82rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-disclaimer-text strong {
    color: rgba(255, 200, 0, 0.85);
    font-weight: 600;
}

/* Domain acquisition link in footer */
.footer-disclaimer-link {
    color: #ff3366;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}
.footer-disclaimer-link:hover {
    color: #ffd700;
    text-shadow: 0 0 12px rgba(255,215,0,0.4);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--color-text-primary);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(255, 51, 102, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 51, 102, 0.5);
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile/tablet: show all content immediately — don't rely on scroll observer */
@media (max-width: 1024px) {
    .reveal {
        opacity: 1 !important;
        transform: translateY(0) !important;
        transition: none !important;
    }
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0.7rem 1.5rem;
    }
    
    .about-content {
        gap: 1.5rem;
    }

    .creators-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }

    .shows-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }

    .show-image-wrapper {
        height: 230px;
    }

    .show-content {
        padding: 1.4rem;
    }

    .show-title {
        font-size: 1.3rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(min(100%, 350px), 1fr));
        gap: 2rem;
    }
    
    .gallery-images-grid {
        height: 350px;
    }
    
    /* FIX: Show full video on tablets — no crop, content below */
    .hero {
        min-height: 100vh;
        align-items: flex-start;
        flex-direction: column;
    }
    
    .hero-content {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 1.5rem;
        width: 100%;
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-container {
        padding: 0.6rem 1rem;
    }
    
    /* Hero — full video shown, no crop, content flows below */
    .hero {
        min-height: 100vh;
        align-items: flex-start;
        flex-direction: column;
        padding: 0;
    }
    
    .hero-content {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        padding: 1.5rem clamp(1rem, 5vw, 1.5rem) 2rem;
        margin-top: 1rem;
        width: 100%;
        max-width: 100%;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .btn {
        width: 100%;
    }
    
    /* Sections */
    .about {
        padding: 2.5rem clamp(1rem, 5vw, 1.5rem);
    }
    
    .creators {
        padding: 2.5rem clamp(1rem, 5vw, 1.5rem);
    }
    
    .content {
        padding: 2.5rem clamp(1rem, 5vw, 1.5rem);
    }
    
    .tv-shows {
        padding: 2.5rem clamp(1rem, 5vw, 1.5rem);
    }
    
    .awards {
        padding: 2.5rem clamp(1rem, 5vw, 1.5rem);
    }
    
    .gallery {
        padding: 2.5rem clamp(1rem, 5vw, 1.5rem);
    }
    
    .fokus-brand {
        padding: 2.5rem clamp(1rem, 5vw, 1.5rem);
    }
    
    .about-content {
        gap: 1.2rem;
    }
    
    .creators-grid,
    .content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .shows-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .show-card {
        border-radius: 14px;
    }

    .show-image-wrapper {
        height: 240px;
    }

    .show-content {
        padding: 1.4rem;
    }

    .show-title {
        font-size: 1.28rem;
    }

    .show-description {
        font-size: 0.9rem;
    }

    .show-stat {
        font-size: 0.78rem;
        padding: 0.36rem 0.78rem;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-images-grid {
        height: 300px;
    }
    
    .gallery-info {
        padding: 1rem 1.25rem;
    }
    
    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 44px;
        height: 44px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 44px;
        height: 44px;
    }
    
    .lightbox-prev {
        left: 1rem;
    }
    
    .lightbox-next {
        right: 1rem;
    }
    
    .lightbox-image {
        max-width: 95vw;
        max-height: 75vh;
    }
    
    .lightbox-caption {
        font-size: 0.95rem;
        margin-top: 1rem;
        padding: 0 1rem;
    }
    
    .award-image-wrapper {
        height: 280px;
    }
    
    .fokus-showcase {
        padding: 2rem 1.5rem;
    }
    
    .fokus-features {
        gap: 1.5rem;
    }
    
    .fokus-stats {
        gap: 1.5rem;
    }
    
    .creator-image-wrapper {
        height: 350px;
    }
    
    /* Footer */
    .footer {
        padding: 2.5rem clamp(1rem, 5vw, 1.5rem) 1.5rem;
    }
    
    .footer-top {
        margin-bottom: 2rem;
        gap: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-contact-section {
        grid-column: span 2;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .nav-container {
        padding: 0.8rem clamp(0.8rem, 4vw, 1rem);
    }
    
    .hero-content {
        padding: 1rem clamp(0.8rem, 4vw, 1rem);
        bottom: auto;
        margin-top: 0.75rem;
    }
    
    .title-line {
        font-size: 2.2rem;
    }
    
    .about {
        padding: 2rem clamp(0.8rem, 4vw, 1rem);
    }
    
    .creators {
        padding: 2rem clamp(0.8rem, 4vw, 1rem);
    }
    
    .content {
        padding: 2rem clamp(0.8rem, 4vw, 1rem);
    }
    
    .tv-shows {
        padding: 2rem clamp(0.8rem, 4vw, 1rem);
    }
    
    .awards {
        padding: 2rem clamp(0.8rem, 4vw, 1rem);
    }
    
    .gallery {
        padding: 2rem clamp(0.8rem, 4vw, 1rem);
    }
    
    .fokus-brand {
        padding: 2rem clamp(0.8rem, 4vw, 1rem);
    }
    
    .creator-image-wrapper {
        height: 300px;
    }
    
    .founder-avatar {
        width: 90px;
        height: 90px;
    }
    
    .founder-initial {
        font-size: 2rem;
    }
    
    .shows-grid {
        grid-template-columns: 1fr;
        gap: 1.3rem;
    }

    .show-card {
        border-radius: 12px;
    }

    .show-image-wrapper {
        height: 195px;
    }

    .show-content {
        padding: 1.2rem;
    }

    .show-title {
        font-size: 1.15rem;
    }

    .show-description {
        font-size: 0.87rem;
        margin-bottom: 1.1rem;
    }

    .show-stats {
        gap: 0.5rem;
    }

    .show-stat {
        font-size: 0.74rem;
        padding: 0.33rem 0.7rem;
    }

    .show-badge {
        font-size: 0.65rem;
        padding: 0.38rem 0.8rem;
    }

    .awards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-images-grid {
        height: 250px;
    }
    
    .gallery-view-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .lightbox-close {
        top: 0.75rem;
        right: 0.75rem;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-close svg {
        width: 24px;
        height: 24px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
    }
    
    .lightbox-prev svg,
    .lightbox-next svg {
        width: 24px;
        height: 24px;
    }
    
    .lightbox-prev {
        left: 0.75rem;
    }
    
    .lightbox-next {
        right: 0.75rem;
    }
    
    .award-image-wrapper {
        height: 250px;
    }
    
    .fokus-showcase {
        padding: 1.5rem 1rem;
    }
    
    .fokus-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .stats-row {
        gap: 2rem;
    }
    
    .footer {
        padding: 2rem clamp(0.8rem, 4vw, 1rem) 1.2rem;
    }
    
    .footer-top {
        margin-bottom: 1.5rem;
        gap: 1rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .footer-contact-section {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* iPhone 14 Pro Max, 14 Plus, 13 Pro Max, 12 Pro Max */
@media (max-width: 428px) and (min-width: 415px) {
    .nav-container {
        padding: 0.9rem clamp(1rem, 4vw, 1.2rem);
    }
    
    .hero-content {
        padding: 1.2rem clamp(1rem, 4vw, 1.2rem);
    }
    
    .about,
    .creators,
    .content,
    .tv-shows,
    .awards,
    .gallery,
    .fokus-brand {
        padding: clamp(2.8rem, 6vw, 3.5rem) clamp(1rem, 4vw, 1.2rem);
    }
    
    .footer {
        padding: clamp(2.8rem, 6vw, 3.5rem) clamp(1rem, 4vw, 1.2rem) 1.8rem;
    }
}

/* iPhone 14 Pro, 14, 13 Pro, 13, 12 Pro, 12 */
@media (max-width: 414px) and (min-width: 376px) {
    .nav-container {
        padding: 0.9rem clamp(1rem, 4vw, 1.2rem);
    }
    
    .hero-content {
        padding: 1.2rem clamp(1rem, 4vw, 1.2rem);
    }
    
    .about,
    .creators,
    .content,
    .tv-shows,
    .awards,
    .gallery,
    .fokus-brand {
        padding: clamp(2.8rem, 6vw, 3.2rem) clamp(1rem, 4vw, 1.2rem);
    }
    
    .footer {
        padding: clamp(2.8rem, 6vw, 3.2rem) clamp(1rem, 4vw, 1.2rem) 1.8rem;
    }
}

/* iPhone SE 2/3, 13 mini, 12 mini, X — 375px */
@media (max-width: 375px) and (min-width: 361px) {
    .nav-container {
        padding: 0.85rem clamp(0.9rem, 4vw, 1.1rem);
    }

    .hero-content {
        padding: 1.1rem clamp(0.9rem, 4vw, 1.1rem);
        bottom: auto;
    }

    .about,
    .creators,
    .content,
    .tv-shows,
    .awards,
    .gallery,
    .fokus-brand {
        padding: clamp(2.5rem, 6vw, 3rem) clamp(0.9rem, 4vw, 1.1rem);
    }

    .footer {
        padding: clamp(2.5rem, 6vw, 3rem) clamp(0.9rem, 4vw, 1.1rem) 1.5rem;
    }

    /* ── Shows fixes ── */
    .tv-shows {
        padding: 2.5rem 0.85rem;
    }

    .shows-grid {
        grid-template-columns: 1fr;
        gap: 1.1rem;
        margin-top: 1.8rem;
    }

    .show-card { border-radius: 12px; }

    .show-card::before,
    .show-card::after { display: none; }

    .tv-shows::before,
    .tv-shows::after,
    .tv-shows-container::before { display: none; }

    .show-image-wrapper { height: 180px; }

    .show-content { padding: 1rem 1.05rem 1.1rem; }

    .show-tag {
        font-size: 0.63rem;
        padding: 0.26rem 0.65rem;
        margin-bottom: 0.65rem;
        letter-spacing: 0.4px;
    }

    .show-title {
        font-size: 1.05rem;
        margin-bottom: 0.3rem;
        line-height: 1.25;
    }

    .show-participant {
        font-size: 0.8rem;
        margin-bottom: 0.65rem;
    }

    .show-description {
        font-size: 0.82rem;
        line-height: 1.6;
        margin-bottom: 0.9rem;
    }

    .show-stats { gap: 0.4rem; }

    .show-stat {
        font-size: 0.7rem;
        padding: 0.28rem 0.6rem;
    }

    .show-badge {
        font-size: 0.6rem;
        padding: 0.3rem 0.65rem;
        top: 0.7rem;
        right: 0.7rem;
    }
}

/* iPhone SE 1st gen + very small Android — ≤360px */
@media (max-width: 360px) {
    .nav-container {
        padding: 0.8rem clamp(0.8rem, 3vw, 1rem);
    }

    .hero-content {
        padding: 1rem clamp(0.8rem, 3vw, 1rem);
        bottom: auto;
    }

    .about,
    .creators,
    .content,
    .tv-shows,
    .awards,
    .gallery,
    .fokus-brand {
        padding: clamp(2.5rem, 5vw, 3rem) clamp(0.8rem, 3vw, 1rem);
    }

    .footer {
        padding: clamp(2.5rem, 5vw, 3rem) clamp(0.8rem, 3vw, 1rem) 1.5rem;
    }

    .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .gradient-text,
    .title-line {
        font-size: clamp(2rem, 9vw, 2.5rem);
    }

    /* ── Shows fixes ── */
    .tv-shows {
        padding: 2rem 0.75rem;
    }

    .shows-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.6rem;
    }

    .show-card { border-radius: 10px; }

    .show-card::before,
    .show-card::after { display: none; }

    .tv-shows::before,
    .tv-shows::after,
    .tv-shows-container::before { display: none; }

    .show-image-wrapper { height: 165px; }

    .show-content { padding: 0.9rem 0.95rem 1rem; }

    .show-tag {
        font-size: 0.6rem;
        padding: 0.24rem 0.6rem;
        margin-bottom: 0.6rem;
        letter-spacing: 0.3px;
    }

    .show-title {
        font-size: 1rem;
        margin-bottom: 0.28rem;
        line-height: 1.22;
    }

    .show-participant {
        font-size: 0.78rem;
        margin-bottom: 0.6rem;
    }

    .show-description {
        font-size: 0.8rem;
        line-height: 1.55;
        margin-bottom: 0.85rem;
    }

    .show-stats { gap: 0.38rem; }

    .show-stat {
        font-size: 0.68rem;
        padding: 0.26rem 0.55rem;
    }

    .show-badge {
        font-size: 0.58rem;
        padding: 0.28rem 0.6rem;
        top: 0.6rem;
        right: 0.6rem;
    }
}

/* iPhone SE 1st gen — 320px */
@media (max-width: 320px) {
    .tv-shows {
        padding: 2rem 0.65rem;
    }

    .shows-grid {
        grid-template-columns: 1fr;
        gap: 0.9rem;
        margin-top: 1.4rem;
    }

    .show-card { border-radius: 10px; }

    .show-card::before,
    .show-card::after { display: none; }

    .tv-shows::before,
    .tv-shows::after,
    .tv-shows-container::before { display: none; }

    .show-image-wrapper { height: 150px; }

    .show-content { padding: 0.85rem 0.85rem 0.95rem; }

    .show-tag {
        font-size: 0.58rem;
        padding: 0.22rem 0.55rem;
        margin-bottom: 0.55rem;
    }

    .show-title {
        font-size: 0.95rem;
        line-height: 1.2;
        margin-bottom: 0.25rem;
    }

    .show-participant {
        font-size: 0.75rem;
        margin-bottom: 0.55rem;
    }

    .show-description {
        font-size: 0.78rem;
        line-height: 1.52;
        margin-bottom: 0.8rem;
    }

    .show-stats { gap: 0.32rem; }

    .show-stat {
        font-size: 0.65rem;
        padding: 0.22rem 0.5rem;
    }

    .show-badge {
        font-size: 0.55rem;
        padding: 0.24rem 0.55rem;
        top: 0.55rem;
        right: 0.55rem;
    }
}

/* Landscape Orientation for Mobile Devices */
@media (max-height: 500px) and (orientation: landscape) {
    .nav-container {
        padding: 0.7rem clamp(1rem, 4vw, 1.5rem);
    }
    
    .hero {
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 1rem clamp(1rem, 4vw, 1.5rem);
        margin-top: 15vh;
    }
    
    .about,
    .creators,
    .content,
    .tv-shows,
    .awards,
    .gallery,
    .fokus-brand {
        padding: clamp(2rem, 6vw, 3rem) clamp(1rem, 4vw, 1.5rem);
    }

    .shows-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .show-image-wrapper {
        height: 180px;
    }
    
    .footer {
        padding: clamp(2rem, 6vw, 3rem) clamp(1rem, 4vw, 1.5rem) 1.5rem;
    }
}

/* iPad Mini Portrait (768×1024) — shift creator images upward + shows taller */
@media (min-width: 768px) and (max-width: 834px) and (orientation: portrait) {
    .creator-image-wrapper {
        height: 380px;
    }

    .creator-image {
        object-position: center 10%;
    }

    .creators-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }

    .show-image-wrapper {
        height: 250px;
    }

    .shows-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }

    /* Awards — taller image on iPad Mini portrait */
    .award-image-wrapper {
        height: 360px;
    }

    /* Gallery — taller image grid on iPad Mini portrait */
    .gallery-images-grid {
        height: 420px;
    }

    /* 3rd gallery section — shift image downward so head is not cropped on iPad Mini portrait */
    .gallery-item:nth-child(3) .gallery-images-grid .gallery-grid-image:nth-child(1) {
        object-position: center 30%;
    }
    
    .hero-video-wrapper {
        height: 56.25vw; /* Exact 16:9 — full video, no crop on iPad Mini portrait */
    }
    
    .hero {
        min-height: 56.25vw;
    }
    
    .video-thumbnail {
        padding-top: 56.25%; /* Exact 16:9 — full video, no crop on iPad Mini */
    }
}

/* iPad Mini Landscape (1024×768) — taller award & gallery images */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) and (max-height: 834px) {
    .award-image-wrapper {
        height: 340px;
    }

    .gallery-images-grid {
        height: 400px;
    }
}

/* Tablet Landscape */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .nav-container {
        padding: 1rem clamp(1.5rem, 4vw, 2rem);
    }
    
    .about,
    .creators,
    .content,
    .tv-shows,
    .awards,
    .gallery,
    .fokus-brand {
        padding: clamp(3rem, 8vw, 5rem) clamp(1.5rem, 5vw, 2rem);
    }

    .shows-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.8rem;
    }
    
    .footer {
        padding: clamp(3rem, 8vw, 5rem) clamp(1.5rem, 5vw, 2rem) 2rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .loading-screen,
    .back-to-top,
    .cta-buttons {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}
/* ============================================
   NOTIFICATION ANIMATIONS FOR EMAILJS
   ============================================ */

@keyframes slideInRight {
    from {
        transform: translateX(450px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(450px);
        opacity: 0;
    }
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.notification-message {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

.notification-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 20px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    flex-shrink: 0;
}

.notification-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Mobile Notification Adjustments */
@media (max-width: 768px) {
    .notification {
        top: 10px !important;
        right: 10px !important;
        left: 10px !important;
        max-width: calc(100% - 20px) !important;
    }
}
/* ── Social Initiatives Full Section ── */
/* ═══════════════════════════════════════════════════
   SOCIAL INITIATIVES — ENHANCED CSS EFFECTS
   ═══════════════════════════════════════════════════ */

/* ── Keyframes ── */
@keyframes si-orb-drift {
    0%   { transform: translate(0, 0) scale(1); }
    33%  { transform: translate(40px, -30px) scale(1.1); }
    66%  { transform: translate(-25px, 20px) scale(0.95); }
    100% { transform: translate(0, 0) scale(1); }
}

@keyframes si-orb-drift-2 {
    0%   { transform: translate(0, 0) scale(1); }
    40%  { transform: translate(-50px, 30px) scale(1.05); }
    80%  { transform: translate(30px, -20px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

@keyframes si-particle-blink {
    0%, 100% { opacity: 0.08; transform: scale(1); }
    50%       { opacity: 0.35; transform: scale(1.6); }
}

@keyframes si-shimmer-sweep {
    0%   { left: -100%; }
    100% { left: 200%; }
}

@keyframes si-icon-bounce {
    0%, 100% { transform: translateY(0) scale(1) rotate(0deg); }
    30%       { transform: translateY(-6px) scale(1.15) rotate(-5deg); }
    60%       { transform: translateY(-2px) scale(1.05) rotate(3deg); }
}

@keyframes si-icon-wrap-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(var(--si-color), 0.4); }
    50%       { box-shadow: 0 0 0 10px rgba(var(--si-color), 0); }
}

@keyframes si-glow-breathe {
    0%, 100% { opacity: 0; transform: scale(0.85); }
    50%       { opacity: 1; transform: scale(1); }
}

@keyframes si-tag-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(var(--si-color), 0.5); }
    60%       { box-shadow: 0 0 0 6px rgba(var(--si-color), 0); }
}

@keyframes si-card-enter {
    from { opacity: 0; transform: translateY(30px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes si-list-slide {
    from { opacity: 0; transform: translateX(-8px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes si-badge-glow {
    0%, 100% { box-shadow: 0 0 8px rgba(255,51,102,0.3); }
    50%       { box-shadow: 0 0 20px rgba(255,51,102,0.7), 0 0 40px rgba(255,51,102,0.2); }
}

@keyframes si-count-up-flash {
    0%   { color: var(--color-text-secondary); }
    50%  { color: #fff; text-shadow: 0 0 20px rgba(255,51,102,0.8); }
    100% { color: #fff; }
}

@keyframes si-divider-glow {
    0%, 100% { opacity: 0.2; }
    50%       { opacity: 0.8; background: linear-gradient(to bottom, transparent, #ff3366, transparent); }
}

/* ── Section Shell ── */
.social-initiatives-section {
    background: var(--color-bg-secondary);
    padding: 4rem 2rem 4rem;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

/* Subtle mesh background */
.social-initiatives-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* ── Floating Orbs ── */
.si-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.si-orb-1 {
    width: 500px; height: 500px;
    top: -150px; left: -100px;
    background: radial-gradient(circle, rgba(255,51,102,0.08) 0%, transparent 70%);
    animation: si-orb-drift 14s ease-in-out infinite;
}
.si-orb-2 {
    width: 400px; height: 400px;
    top: 40%; right: -80px;
    background: radial-gradient(circle, rgba(255,215,0,0.07) 0%, transparent 70%);
    animation: si-orb-drift-2 18s ease-in-out infinite;
}
.si-orb-3 {
    width: 350px; height: 350px;
    bottom: -100px; left: 35%;
    background: radial-gradient(circle, rgba(168,85,247,0.07) 0%, transparent 70%);
    animation: si-orb-drift 20s ease-in-out infinite reverse;
}
.si-orb-4 {
    width: 300px; height: 300px;
    top: 20%; left: 55%;
    background: radial-gradient(circle, rgba(20,184,166,0.06) 0%, transparent 70%);
    animation: si-orb-drift-2 16s ease-in-out infinite 4s;
}

/* ── Particle Dots ── */
.si-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.si-particles span {
    position: absolute;
    width: 3px; height: 3px;
    border-radius: 50%;
    background: rgba(255, 51, 102, 0.5);
    animation: si-particle-blink 3s ease-in-out infinite;
}

/* Scatter 20 dots across the section */
.si-particles span:nth-child(1)  { top:  8%; left: 12%; animation-delay: 0s;    background: rgba(255,51,102,0.6); }
.si-particles span:nth-child(2)  { top: 15%; left: 28%; animation-delay: 0.4s;  background: rgba(255,215,0,0.6); }
.si-particles span:nth-child(3)  { top:  5%; left: 55%; animation-delay: 0.8s;  background: rgba(255,102,255,0.6); }
.si-particles span:nth-child(4)  { top: 20%; left: 72%; animation-delay: 1.2s;  background: rgba(255,51,102,0.5); }
.si-particles span:nth-child(5)  { top: 10%; left: 90%; animation-delay: 0.6s;  background: rgba(255,107,107,0.5); }
.si-particles span:nth-child(6)  { top: 38%; left:  5%; animation-delay: 1.6s;  background: rgba(255,102,255,0.5); }
.si-particles span:nth-child(7)  { top: 45%; left: 18%; animation-delay: 0.2s;  background: rgba(255,51,102,0.6); }
.si-particles span:nth-child(8)  { top: 35%; left: 42%; animation-delay: 1.0s;  background: rgba(255,215,0,0.5); }
.si-particles span:nth-child(9)  { top: 50%; left: 60%; animation-delay: 1.8s;  background: rgba(255,51,102,0.5); }
.si-particles span:nth-child(10) { top: 42%; left: 85%; animation-delay: 0.3s;  background: rgba(255,215,0,0.6); }
.si-particles span:nth-child(11) { top: 65%; left:  8%; animation-delay: 2.0s;  background: rgba(255,102,255,0.5); }
.si-particles span:nth-child(12) { top: 72%; left: 25%; animation-delay: 0.7s;  background: rgba(255,51,102,0.5); }
.si-particles span:nth-child(13) { top: 60%; left: 48%; animation-delay: 1.4s;  background: rgba(255,107,107,0.5); }
.si-particles span:nth-child(14) { top: 78%; left: 65%; animation-delay: 0.9s;  background: rgba(255,215,0,0.5); }
.si-particles span:nth-child(15) { top: 68%; left: 88%; animation-delay: 2.2s;  background: rgba(255,51,102,0.5); }
.si-particles span:nth-child(16) { top: 88%; left: 15%; animation-delay: 1.1s;  background: rgba(255,102,255,0.6); }
.si-particles span:nth-child(17) { top: 92%; left: 38%; animation-delay: 0.5s;  background: rgba(255,215,0,0.5); }
.si-particles span:nth-child(18) { top: 85%; left: 55%; animation-delay: 1.7s;  background: rgba(255,51,102,0.6); }
.si-particles span:nth-child(19) { top: 95%; left: 75%; animation-delay: 0.1s;  background: rgba(255,102,255,0.5); }
.si-particles span:nth-child(20) { top: 90%; left: 92%; animation-delay: 2.4s;  background: rgba(255,215,0,0.5); }

/* ── Container ── */
.si-full-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ── Animated Badge ── */
.si-badge-animated {
    animation: si-badge-glow 2.5s ease-in-out infinite;
}

/* ── Impact Stats Bar ── */
.si-stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    margin: 2.5rem auto 0;
    max-width: 900px;
    backdrop-filter: blur(10px);
    flex-wrap: wrap;
    gap: 0.5rem 0;
}

.si-stat-item {
    flex: 1;
    min-width: 120px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.si-stat-num {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    letter-spacing: 1px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientFlow 4s linear infinite;
    line-height: 1;
}

.si-stat-suffix {
    font-family: var(--font-display);
    font-size: 1.2rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.si-stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-secondary);
    font-weight: 600;
}

.si-stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.15), transparent);
    flex-shrink: 0;
    animation: si-divider-glow 3s ease-in-out infinite;
}

/* ── Card Grid ── */
.si-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

/* ── Card Base ── */
.si-full-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    position: relative;
    overflow: hidden;
    transition:
        transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        border-color 0.3s ease,
        box-shadow 0.4s ease;
    cursor: default;
}

/* Stagger entrance animation for each card */
.si-full-grid .si-full-card:nth-child(1) { animation: si-card-enter 0.6s ease both 0.1s; }
.si-full-grid .si-full-card:nth-child(2) { animation: si-card-enter 0.6s ease both 0.2s; }
.si-full-grid .si-full-card:nth-child(3) { animation: si-card-enter 0.6s ease both 0.3s; }
.si-full-grid .si-full-card:nth-child(4) { animation: si-card-enter 0.6s ease both 0.4s; }
.si-full-grid .si-full-card:nth-child(5) { animation: si-card-enter 0.6s ease both 0.5s; }
.si-full-grid .si-full-card:nth-child(6) { animation: si-card-enter 0.6s ease both 0.6s; }
.si-full-grid .si-full-card:nth-child(7) { animation: si-card-enter 0.6s ease both 0.7s; }
.si-full-grid .si-full-card:nth-child(8) { animation: si-card-enter 0.6s ease both 0.8s; }

/* Glow layer (per-card color) */
.si-card-glow {
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    background: radial-gradient(ellipse at 50% 0%, rgba(var(--si-color), 0.15) 0%, transparent 65%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.si-full-card:hover .si-card-glow {
    opacity: 1;
    animation: si-glow-breathe 2.5s ease-in-out infinite;
}

/* Shimmer sweep on hover */
.si-card-shimmer {
    position: absolute;
    top: 0; left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255, 255, 255, 0.04) 50%,
        transparent 60%
    );
    pointer-events: none;
    z-index: 1;
}

.si-full-card:hover .si-card-shimmer {
    animation: si-shimmer-sweep 0.75s ease forwards;
}

/* Hover lift + colored border glow */
.si-full-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(var(--si-color), 0.5);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(var(--si-color), 0.2),
        0 0 30px rgba(var(--si-color), 0.12);
}

/* Top accent line on hover */
.si-full-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(var(--si-color), 0.8), transparent);
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.si-full-card:hover::before {
    opacity: 1;
}

/* ── Icon Wrap ── */
.si-full-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 51, 102, 0.15);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.si-full-card:hover .si-full-icon-wrap {
    box-shadow: 0 0 0 8px rgba(var(--si-color), 0.12), 0 0 20px rgba(var(--si-color), 0.2);
    animation: si-icon-wrap-pulse 1.5s ease-in-out infinite;
}

.si-full-icon {
    font-size: 1.7rem;
    line-height: 1;
    transition: transform 0.3s ease;
    display: block;
}

.si-full-card:hover .si-full-icon {
    animation: si-icon-bounce 0.6s ease forwards;
}

/* ── Color variants (icon wrap bg) ── */
.si-wrap-green  { background: rgba(255,51,102,0.15); }
.si-wrap-gold   { background: rgba(255,215,0,0.15); }
.si-wrap-pink   { background: rgba(255,102,255,0.15); }
.si-wrap-purple { background: rgba(255,102,255,0.15); }
.si-wrap-blue   { background: rgba(255,51,102,0.15); }
.si-wrap-orange { background: rgba(255,215,0,0.15); }
.si-wrap-red    { background: rgba(255,51,102,0.15); }
.si-wrap-teal   { background: rgba(255,107,107,0.15); }

/* ── Card Body ── */
.si-full-body {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex: 1;
    position: relative;
    z-index: 2;
}

/* ── Title ── */
.si-full-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 0.06em;
    color: var(--color-text-primary);
    transition: color 0.3s ease;
}

.si-full-card:hover .si-full-title {
    background: linear-gradient(90deg, #fff, rgba(var(--si-color), 1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── List ── */
.si-full-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.si-full-list li {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
    padding-left: 1.3rem;
    position: relative;
    transition: color 0.25s ease, transform 0.25s ease;
}

/* Stagger list item animation on card hover */
.si-full-card:hover .si-full-list li:nth-child(1) { animation: si-list-slide 0.3s ease both 0.05s; }
.si-full-card:hover .si-full-list li:nth-child(2) { animation: si-list-slide 0.3s ease both 0.12s; }
.si-full-card:hover .si-full-list li:nth-child(3) { animation: si-list-slide 0.3s ease both 0.19s; }
.si-full-card:hover .si-full-list li:nth-child(4) { animation: si-list-slide 0.3s ease both 0.26s; }

.si-full-card:hover .si-full-list li {
    color: rgba(255,255,255,0.75);
}

.si-full-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: rgba(var(--si-color), 0.9);
    font-size: 0.75rem;
    top: 0.1em;
    transition: transform 0.2s ease, color 0.2s ease;
}

.si-full-card:hover .si-full-list li::before {
    transform: translateX(2px);
}

.si-full-list li strong {
    color: var(--color-text-primary);
    transition: color 0.2s ease;
}

/* ── Tag ── */
.si-full-tag {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    background: rgba(255, 51, 102, 0.12);
    color: #ff3366;
    border: 1px solid rgba(255, 51, 102, 0.25);
    margin-top: auto;
    align-self: flex-start;
    position: relative;
    z-index: 2;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.si-full-card:hover .si-full-tag {
    transform: translateY(-1px);
    animation: si-tag-pulse 1.8s ease-in-out infinite;
}

/* ── Tag color variants ── */
.si-tag-green  { background: rgba(255,51,102,0.12);  color: #ff3366; border-color: rgba(255,51,102,0.3);  --si-color: 255,51,102; }
.si-tag-gold   { background: rgba(255,215,0,0.12);   color: #ffd700; border-color: rgba(255,215,0,0.3);   --si-color: 255,215,0; }
.si-tag-pink   { background: rgba(255,102,255,0.12); color: #ff66ff; border-color: rgba(255,102,255,0.3); --si-color: 255,102,255; }
.si-tag-purple { background: rgba(255,102,255,0.12); color: #ff66ff; border-color: rgba(255,102,255,0.3); --si-color: 255,102,255; }
.si-tag-blue   { background: rgba(255,51,102,0.12);  color: #ff3366; border-color: rgba(255,51,102,0.3);  --si-color: 255,51,102; }
.si-tag-orange { background: rgba(255,215,0,0.12);   color: #ffd700; border-color: rgba(255,215,0,0.3);   --si-color: 255,215,0; }
.si-tag-red    { background: rgba(255,51,102,0.12);  color: #ff3366; border-color: rgba(255,51,102,0.3);  --si-color: 255,51,102; }
.si-tag-teal   { background: rgba(255,107,107,0.12); color: #ff6b6b; border-color: rgba(255,107,107,0.3); --si-color: 255,107,107; }

/* ── Responsive ── */
@media (max-width: 900px) {
    .si-stats-bar {
        gap: 1rem;
    }
    .si-stat-divider { display: none; }
}

@media (max-width: 768px) {
    .si-full-grid {
        grid-template-columns: 1fr;
    }
    .si-stats-bar {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .si-orb { display: none; }
}

/* =====================================================
   FINAL GLOBAL FIX — PREVENT ALL HORIZONTAL SCROLL
   on mobile, tablet, iPhone across the entire site
   ===================================================== */
@media (max-width: 1024px) {
    /* Only body gets overflow-x hidden — NOT html.
       Setting it on both html+body breaks position:fixed on iOS Safari */
    body {
        overflow-x: hidden !important;
    }

    /* Clip all decorative orbs/blobs on mobile */
    .si-orb,
    .creators::before,
    .creators::after,
    .tv-shows::before,
    .tv-shows::after,
    .about-journey::before,
    .social-initiatives-section::before,
    .about::before,
    .about::after {
        display: none;
    }

    /* Make all containers respect viewport width */
    .nav-container,
    .about-container,
    .creators-container,
    .content-container,
    .shows-container,
    .awards-container,
    .gallery-container,
    .footer-container,
    .hero-content,
    [class*="-container"] {
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Prevent any fixed-width tables or elements */
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        max-width: 100%;
    }
}

/* =====================================================
   RESPONSIVE TYPOGRAPHY SYSTEM
   Clean, consistent text scaling across all breakpoints
   ===================================================== */

/* ── TABLET (≤1024px) ── */
@media (max-width: 1024px) {

    /* Section headers */
    .section-title {
        font-size: clamp(2rem, 6vw, 3rem);
        letter-spacing: 1.5px;
        margin-bottom: 1rem;
    }

    .section-description {
        font-size: clamp(0.95rem, 2vw, 1.1rem);
        line-height: 1.7;
    }

    .section-badge {
        font-size: 0.78rem;
        padding: 0.4rem 1rem;
        letter-spacing: 1.5px;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    /* Hero text */
    .title-line,
    .gradient-text {
        font-size: clamp(2.2rem, 8vw, 5rem);
    }

    .hero-description {
        font-size: clamp(0.9rem, 2vw, 1.05rem);
        line-height: 1.7;
    }
}

/* ── MOBILE (≤768px) ── */
@media (max-width: 768px) {

    /* Section headers */
    .section-title {
        font-size: clamp(1.8rem, 7vw, 2.4rem);
        letter-spacing: 1px;
        line-height: 1.15;
        margin-bottom: 0.8rem;
    }

    .section-description {
        font-size: 0.95rem;
        line-height: 1.7;
        max-width: 100%;
    }

    .section-badge {
        font-size: 0.72rem;
        padding: 0.35rem 0.9rem;
        letter-spacing: 1.2px;
        margin-bottom: 0.9rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    /* Hero */
    .title-line,
    .gradient-text {
        font-size: clamp(2rem, 9vw, 3.5rem);
        line-height: 1;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    /* About section */
    .about-heading,
    .abt-heading {
        font-size: clamp(1.5rem, 5vw, 2rem);
        line-height: 1.2;
    }

    .about-description,
    .abt-description {
        font-size: 0.93rem;
        line-height: 1.75;
    }

    .about-subtitle {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }

    /* Creators */
    .creator-name {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .creator-title {
        font-size: 0.78rem;
        letter-spacing: 1px;
    }

    .creator-bio {
        font-size: 0.88rem;
        line-height: 1.65;
    }

    .creator-stat-value {
        font-size: 1.3rem;
    }

    .creator-stat-label {
        font-size: 0.68rem;
    }

    /* Awards */
    .award-title {
        font-size: 1rem;
        line-height: 1.3;
    }

    .award-category {
        font-size: 0.72rem;
        letter-spacing: 1px;
    }

    .award-year {
        font-size: 0.7rem;
    }

    /* Gallery */
    .gallery-title {
        font-size: 1rem;
        letter-spacing: 0.5px;
    }

    .gallery-category {
        font-size: 0.72rem;
        letter-spacing: 1px;
    }

    /* Footer */
    .footer-title {
        font-size: 0.95rem;
        letter-spacing: 0.8px;
        margin-bottom: 1rem;
    }

    .footer-tagline {
        font-size: 0.88rem;
        line-height: 1.65;
    }

    .footer-links a {
        font-size: 0.88rem;
    }

    .footer-copyright {
        font-size: 0.78rem;
    }

    .footer-logo {
        font-size: 1.3rem;
    }
}

/* ── SMALL MOBILE (≤480px) ── */
@media (max-width: 480px) {

    /* Section headers */
    .section-title {
        font-size: clamp(1.6rem, 7vw, 2rem);
        letter-spacing: 0.5px;
        line-height: 1.15;
    }

    .section-description {
        font-size: 0.9rem;
        line-height: 1.65;
    }

    .section-badge {
        font-size: 0.68rem;
        padding: 0.3rem 0.8rem;
        letter-spacing: 1px;
        margin-bottom: 0.75rem;
    }

    .section-header {
        margin-bottom: 1.5rem;
    }

    /* Hero */
    .title-line,
    .gradient-text {
        font-size: clamp(1.8rem, 9vw, 2.8rem);
    }

    .hero-description {
        font-size: 0.88rem;
        line-height: 1.65;
    }

    /* About */
    .about-heading,
    .abt-heading {
        font-size: clamp(1.3rem, 6vw, 1.7rem);
    }

    .about-description,
    .abt-description {
        font-size: 0.88rem;
        line-height: 1.7;
    }

    /* Creators */
    .creator-name {
        font-size: 1rem;
    }

    .creator-bio {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    /* Shows */
    .show-title {
        font-size: 1.05rem;
        line-height: 1.25;
    }

    .show-description {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    /* Awards */
    .award-title {
        font-size: 0.92rem;
        line-height: 1.3;
    }

    /* Social initiatives */
    .si-title {
        font-size: 1rem;
        line-height: 1.3;
    }

    .si-desc {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    /* Fokus section */
    .fokus-hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        line-height: 1.1;
    }

    .fokus-tagline {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }

    .fokus-description-text p,
    .fokus-description,
    .fokus-feature-text {
        font-size: 0.88rem;
        line-height: 1.65;
    }

    .fokus-feature-title {
        font-size: 0.9rem;
    }

    .fokus-section-subtitle {
        font-size: clamp(1.4rem, 6vw, 1.8rem);
    }

    /* Footer */
    .footer-title {
        font-size: 0.88rem;
    }

    .footer-tagline {
        font-size: 0.85rem;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .footer-copyright {
        font-size: 0.72rem;
    }

    /* Buttons */
    .btn,
    .cta-btn,
    .fokus-btn {
        font-size: 0.82rem;
        letter-spacing: 1px;
        padding: 0.75rem 1.5rem;
    }

    /* General body text */
    p {
        font-size: 0.9rem;
        line-height: 1.7;
    }
}

/* ── VERY SMALL (≤375px) ── */
@media (max-width: 375px) {

    .section-title {
        font-size: clamp(1.4rem, 7vw, 1.8rem);
    }

    .title-line,
    .gradient-text {
        font-size: clamp(1.6rem, 9vw, 2.4rem);
    }

    .section-description,
    .hero-description,
    .about-description,
    .creator-bio,
    .show-description,
    .fokus-description-text p {
        font-size: 0.85rem;
        line-height: 1.65;
    }

    .section-badge {
        font-size: 0.65rem;
        letter-spacing: 0.8px;
    }

    .creator-name {
        font-size: 0.95rem;
    }

    .award-title {
        font-size: 0.88rem;
    }

    .footer-logo {
        font-size: 1.1rem;
    }
}
/* ============================================
   MOBILE PORTRAIT/LANDSCAPE OVERRIDE
   Nullifies the old relative-height approach
   that prevented the image from covering the
   full screen on mobile/tablet/iPhone.
   ============================================ */
@media (max-width: 1024px) and (orientation: portrait),
       (max-width: 1024px) and (orientation: landscape) {
    /* Already handled by the unified mobile block above */
    .hero-video-bg {
        position: absolute !important;
        height: 100% !important;
    }
}

/* ============================================
   INSTAGRAM STATIC CARDS (Fokus section)
   ============================================ */
/* ============================================
   INSTAGRAM REEL EMBEDS — @letsfokus feed
   ============================================ */

.ig-reels-feed {
    display: flex;
    flex-wrap: wrap;
    gap: 6rem;
    justify-content: center;
    align-items: flex-start;
    margin: 2.5rem 0;
}

.ig-reel-wrap {
    flex: 1 1 320px;
    max-width: 480px;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

/* Make the blockquote fill its wrapper */
.ig-reel-wrap .instagram-media {
    width: 100% !important;
    max-width: 100% !important;
    min-width: unset !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18), 0 0 0 1px rgba(255,255,255,0.06) !important;
    margin: 0 !important;
}

@media (max-width: 768px) {
    .ig-reels-feed {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .ig-reel-wrap {
        width: 100%;
        max-width: 100%;
        min-width: unset;
    }

    .ig-reel-wrap .instagram-media {
        max-width: 100% !important;
    }
}

/* Remove old static-card styles (kept below for safety, overridden) */
.ig-static-card { display: none; }
.instagram-feed { display: none; }