/* ===== Reset & Base Styles ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

:root {
    /* Colors */
    --amber-200: #fde68a;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --yellow-400: #facc15;
    --yellow-500: #eab308;
    --yellow-600: #ca8a04;
    --cyan-400: #22d3ee;
    --cyan-500: #06b6d4;
    --cyan-600: #0891b2;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --red-400: #f87171;
    --red-500: #ef4444;
    --red-600: #dc2626;
    --pink-400: #f472b6;
    --pink-500: #ec4899;
    --pink-600: #db2777;
    --purple-400: #c084fc;
    --purple-500: #a855f7;
    --purple-600: #9333ea;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --gray-950: #030712;

    /* Fonts */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-heading: 'Bebas Neue', 'Impact', sans-serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-elegant: 'Cormorant Garamond', Georgia, serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    font-family: var(--font-body);
    background-color: #000;
    color: #fff;
    line-height: 1.7;
    overflow-x: clip;
    max-width: 100vw;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ===== Typography ===== */
h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
}

h4, h5, h6 {
    font-family: var(--font-body);
    font-weight: 600;
    line-height: 1.3;
}

p {
    font-family: var(--font-body);
    line-height: 1.8;
}

/* Elegant text class */
.text-elegant {
    font-family: var(--font-elegant);
    font-style: italic;
    letter-spacing: 0.02em;
}

/* Display text class */
.text-display {
    font-family: var(--font-display);
}

/* Heading text class */
.text-heading {
    font-family: var(--font-heading);
    letter-spacing: 0.1em;
}

/* ===== Animations ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

@keyframes scaleUp {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes heartBeat {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(10deg); }
    75% { transform: rotate(-10deg); }
}

/* ===== Hero Special Animations ===== */
@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-20px) translateX(10px); }
    50% { transform: translateY(-10px) translateX(-5px); }
    75% { transform: translateY(-25px) translateX(5px); }
}

@keyframes floatReverse {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(15px) translateX(-10px); }
    50% { transform: translateY(5px) translateX(8px); }
    75% { transform: translateY(20px) translateX(-5px); }
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
    50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
        filter: blur(40px);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.2);
        filter: blur(60px);
    }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(251, 191, 36, 0.5),
                     0 0 40px rgba(251, 191, 36, 0.3),
                     0 0 60px rgba(251, 191, 36, 0.2);
    }
    50% {
        text-shadow: 0 0 40px rgba(251, 191, 36, 0.8),
                     0 0 80px rgba(251, 191, 36, 0.5),
                     0 0 120px rgba(251, 191, 36, 0.3);
    }
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 30px) scale(0.9); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-40px, 30px) scale(0.9); }
    66% { transform: translate(25px, -40px) scale(1.1); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 20px) scale(1.2); }
}

@keyframes particleRise {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(80vh) translateX(10px) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(10vh) translateX(-10px) scale(1);
    }
    100% {
        transform: translateY(-10vh) translateX(0) scale(0);
        opacity: 0;
    }
}

@keyframes borderGlow {
    0%, 100% {
        border-color: rgba(251, 191, 36, 0.3);
        box-shadow: 0 0 20px rgba(251, 191, 36, 0.1);
    }
    50% {
        border-color: rgba(251, 191, 36, 0.6);
        box-shadow: 0 0 40px rgba(251, 191, 36, 0.3);
    }
}

@keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes zoomPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.animate-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
}

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.delay-1 { animation-delay: 0.2s; opacity: 0; animation-fill-mode: forwards; }
.delay-2 { animation-delay: 0.4s; opacity: 0; animation-fill-mode: forwards; }
.delay-3 { animation-delay: 1.5s; opacity: 0; animation-fill-mode: forwards; }

/* ===== Typography ===== */
.gradient-text {
    background: linear-gradient(to right, var(--amber-200), var(--yellow-400), var(--amber-200));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-red {
    background: linear-gradient(to right, #fecaca, var(--orange-500), #fecaca);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-pink {
    background: linear-gradient(to right, #fbcfe8, var(--purple-400), #a5f3fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: 0.01em;
}

.section-subtitle {
    font-family: var(--font-body);
    color: var(--gray-400);
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.8;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.subsection-title {
    font-family: var(--font-display);
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(to right, #fff, var(--gray-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3.75rem;
    }
}

/* ===== Buttons ===== */
.btn {
    font-family: var(--font-body);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(to right, var(--amber-500), var(--yellow-600));
    color: #000;
    box-shadow: 0 25px 50px -12px rgba(245, 158, 11, 0.5);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(245, 158, 11, 0.7);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* ===== Badges ===== */
.badge {
    font-family: var(--font-body);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(to right, rgba(245, 158, 11, 0.2), rgba(6, 182, 212, 0.2));
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.badge svg {
    color: var(--amber-400);
}

.badge span {
    color: var(--amber-400);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.8rem;
}

.live-badge {
    background: linear-gradient(to right, rgba(239, 68, 68, 0.2), rgba(249, 115, 22, 0.2));
    border-color: rgba(239, 68, 68, 0.3);
}

.live-badge span {
    color: var(--red-400);
}

.partnership-badge {
    background: linear-gradient(to right, rgba(245, 158, 11, 0.2), rgba(6, 182, 212, 0.2), rgba(168, 85, 247, 0.2));
    border-color: rgba(245, 158, 11, 0.3);
}

.social-badge {
    background: linear-gradient(to right, rgba(236, 72, 153, 0.2), rgba(168, 85, 247, 0.2), rgba(6, 182, 212, 0.2));
    border-color: rgba(236, 72, 153, 0.3);
}

.social-badge svg, .social-badge span {
    color: var(--pink-400);
}

.live-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--red-500);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

/* ===== Background Glows ===== */
.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse 3s infinite;
    pointer-events: none;
}

.bg-glow.cyan {
    background: linear-gradient(to bottom right, rgba(6, 182, 212, 0.2), rgba(59, 130, 246, 0.2));
}

.bg-glow.amber {
    background: linear-gradient(to bottom right, rgba(245, 158, 11, 0.2), rgba(234, 179, 8, 0.2));
}

.bg-glow.red {
    background: linear-gradient(to bottom right, rgba(239, 68, 68, 0.2), rgba(249, 115, 22, 0.2));
}

.bg-glow.pink {
    background: linear-gradient(to bottom right, rgba(236, 72, 153, 0.1), rgba(168, 85, 247, 0.1));
}

.bg-glow.purple {
    background: linear-gradient(to bottom right, rgba(168, 85, 247, 0.1), rgba(236, 72, 153, 0.1));
}

.bg-glow.top-left {
    top: 5rem;
    left: 5rem;
    width: 18rem;
    height: 18rem;
}

.bg-glow.bottom-right {
    bottom: 5rem;
    right: 5rem;
    width: 24rem;
    height: 24rem;
    animation-delay: 1s;
}

.bg-glow.top-quarter {
    top: 0;
    left: 25%;
    width: 24rem;
    height: 24rem;
}

.bg-glow.bottom-quarter {
    bottom: 0;
    right: 25%;
    width: 24rem;
    height: 24rem;
    animation-delay: 1s;
}

.bg-glow.center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 37.5rem;
    height: 37.5rem;
    animation-delay: 2s;
}

.bg-glow.top-left-quarter {
    top: 25%;
    left: 0;
    width: 24rem;
    height: 24rem;
}

.bg-glow.bottom-right-quarter {
    bottom: 25%;
    right: 0;
    width: 24rem;
    height: 24rem;
    animation-delay: 1s;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
    z-index: 10;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 20;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    text-align: center;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--amber-200), var(--yellow-400), var(--amber-200));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
    letter-spacing: 0.02em;
    padding: 0.2em 0;
    overflow: visible;
}

.hero-subtitle {
    font-family: var(--font-elegant);
    font-size: 1.25rem;
    color: var(--gray-300);
    margin-bottom: 2rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-400);
    animation: bounce 1.5s infinite;
}

.scroll-indicator span {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

/* ===== Hero Special Effects ===== */

/* Animated Background */
.hero-bg {
    animation: zoomPulse 20s ease-in-out infinite;
}

.hero-image {
    animation: zoomPulse 25s ease-in-out infinite;
}

/* Glowing Orbs */
.hero-orbs {
    position: absolute;
    inset: 0;
    z-index: 5;
    overflow: hidden;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.hero-orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.4) 0%, transparent 70%);
    top: 10%;
    left: 10%;
    animation: orbFloat1 15s ease-in-out infinite;
}

.hero-orb-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.3) 0%, transparent 70%);
    top: 60%;
    right: 10%;
    animation: orbFloat2 18s ease-in-out infinite;
}

.hero-orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.25) 0%, transparent 70%);
    bottom: 20%;
    left: 30%;
    animation: orbFloat3 12s ease-in-out infinite;
}

.hero-orb-4 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, transparent 70%);
    top: 30%;
    right: 25%;
    animation: orbFloat1 20s ease-in-out infinite reverse;
}

/* Floating Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 15;
    overflow: hidden;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--amber-400);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--amber-400), 0 0 20px var(--amber-400);
}

.hero-particle:nth-child(1) {
    left: 10%;
    animation: particleRise 8s linear infinite;
    animation-delay: 0s;
}

.hero-particle:nth-child(2) {
    left: 20%;
    width: 3px;
    height: 3px;
    background: var(--cyan-400);
    box-shadow: 0 0 10px var(--cyan-400), 0 0 20px var(--cyan-400);
    animation: particleRise 12s linear infinite;
    animation-delay: 2s;
}

.hero-particle:nth-child(3) {
    left: 35%;
    animation: particleRise 10s linear infinite;
    animation-delay: 4s;
}

.hero-particle:nth-child(4) {
    left: 50%;
    width: 5px;
    height: 5px;
    animation: particleRise 9s linear infinite;
    animation-delay: 1s;
}

.hero-particle:nth-child(5) {
    left: 65%;
    width: 3px;
    height: 3px;
    background: var(--purple-400);
    box-shadow: 0 0 10px var(--purple-400), 0 0 20px var(--purple-400);
    animation: particleRise 11s linear infinite;
    animation-delay: 3s;
}

.hero-particle:nth-child(6) {
    left: 80%;
    animation: particleRise 13s linear infinite;
    animation-delay: 5s;
}

.hero-particle:nth-child(7) {
    left: 90%;
    width: 4px;
    height: 4px;
    background: var(--cyan-400);
    box-shadow: 0 0 10px var(--cyan-400), 0 0 20px var(--cyan-400);
    animation: particleRise 7s linear infinite;
    animation-delay: 6s;
}

.hero-particle:nth-child(8) {
    left: 5%;
    width: 2px;
    height: 2px;
    animation: particleRise 14s linear infinite;
    animation-delay: 7s;
}

/* Sparkle Effects */
.hero-sparkles {
    position: absolute;
    inset: 0;
    z-index: 16;
    overflow: hidden;
    pointer-events: none;
}

.hero-sparkle {
    position: absolute;
    width: 20px;
    height: 20px;
    color: var(--amber-400);
}

.hero-sparkle svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.hero-sparkle:nth-child(1) {
    top: 15%;
    left: 15%;
    animation: sparkle 3s ease-in-out infinite;
    animation-delay: 0s;
}

.hero-sparkle:nth-child(2) {
    top: 25%;
    right: 20%;
    width: 15px;
    height: 15px;
    color: var(--cyan-400);
    animation: sparkle 4s ease-in-out infinite;
    animation-delay: 1s;
}

.hero-sparkle:nth-child(3) {
    bottom: 35%;
    left: 25%;
    width: 12px;
    height: 12px;
    animation: sparkle 3.5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.hero-sparkle:nth-child(4) {
    top: 40%;
    right: 10%;
    width: 18px;
    height: 18px;
    color: var(--purple-400);
    animation: sparkle 4.5s ease-in-out infinite;
    animation-delay: 2s;
}

.hero-sparkle:nth-child(5) {
    bottom: 25%;
    right: 30%;
    width: 14px;
    height: 14px;
    animation: sparkle 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

.hero-sparkle:nth-child(6) {
    top: 50%;
    left: 8%;
    width: 16px;
    height: 16px;
    color: var(--cyan-400);
    animation: sparkle 5s ease-in-out infinite;
    animation-delay: 2.5s;
}

/* Title Glow Effect */
.hero-title {
    animation: textGlow 3s ease-in-out infinite, fadeUp 0.8s ease-out forwards;
}

.hero-title-wrapper {
    position: relative;
    display: inline-block;
}

.hero-title-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse at center, rgba(251, 191, 36, 0.3) 0%, transparent 70%);
    filter: blur(30px);
    animation: glowPulse 4s ease-in-out infinite;
    z-index: -1;
}

/* Rotating Border Ring */
.hero-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(251, 191, 36, 0.2);
    z-index: 12;
    pointer-events: none;
    animation: rotateGlow 30s linear infinite;
}

.hero-ring::before {
    content: '';
    position: absolute;
    inset: -50px;
    border-radius: 50%;
    border: 1px solid rgba(6, 182, 212, 0.15);
    animation: rotateGlow 40s linear infinite reverse;
}

.hero-ring::after {
    content: '';
    position: absolute;
    inset: 50px;
    border-radius: 50%;
    border: 1px solid rgba(168, 85, 247, 0.1);
    animation: rotateGlow 25s linear infinite;
}

/* Floating Decorative Elements */
.hero-float-elements {
    position: absolute;
    inset: 0;
    z-index: 14;
    pointer-events: none;
}

.hero-float-el {
    position: absolute;
    opacity: 0.6;
}

.hero-float-el:nth-child(1) {
    top: 20%;
    left: 5%;
    animation: float 8s ease-in-out infinite;
}

.hero-float-el:nth-child(2) {
    top: 15%;
    right: 8%;
    animation: floatReverse 10s ease-in-out infinite;
}

.hero-float-el:nth-child(3) {
    bottom: 30%;
    left: 10%;
    animation: float 12s ease-in-out infinite;
    animation-delay: 2s;
}

.hero-float-el:nth-child(4) {
    bottom: 25%;
    right: 5%;
    animation: floatReverse 9s ease-in-out infinite;
    animation-delay: 1s;
}

.hero-float-el svg {
    width: 30px;
    height: 30px;
    stroke: var(--amber-400);
    stroke-width: 1;
    fill: none;
}

.hero-float-el:nth-child(2) svg {
    stroke: var(--cyan-400);
}

.hero-float-el:nth-child(3) svg {
    stroke: var(--purple-400);
    width: 25px;
    height: 25px;
}

.hero-float-el:nth-child(4) svg {
    stroke: var(--amber-400);
    width: 35px;
    height: 35px;
}

/* 9 Wickets Brand Highlight */
.brand-highlight {
    position: relative;
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.15em;
    background: linear-gradient(
        135deg,
        var(--amber-200) 0%,
        var(--yellow-400) 25%,
        var(--amber-500) 50%,
        var(--yellow-400) 75%,
        var(--amber-200) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: brandShimmer 3s linear infinite, brandPulse 2s ease-in-out infinite;
    padding: 0 0.3em;
    text-shadow: none;
}

.brand-highlight::before {
    content: '';
    position: absolute;
    inset: -4px -8px;
    background: linear-gradient(
        135deg,
        rgba(251, 191, 36, 0.3) 0%,
        rgba(234, 179, 8, 0.1) 50%,
        rgba(251, 191, 36, 0.3) 100%
    );
    border-radius: 8px;
    z-index: -1;
    animation: brandGlowPulse 2s ease-in-out infinite;
    filter: blur(8px);
}

@keyframes brandShimmer {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

@keyframes brandPulse {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.02);
        filter: brightness(1.2);
    }
}

@keyframes brandGlowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}


/* Cricket Ball Dots Decoration */
.brand-highlight .wicket-dots {
    position: absolute;
    display: flex;
    gap: 3px;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.brand-highlight .wicket-dot {
    width: 4px;
    height: 4px;
    background: var(--amber-400);
    border-radius: 50%;
    animation: wicketDotPulse 1.5s ease-in-out infinite;
}

.brand-highlight .wicket-dot:nth-child(1) { animation-delay: 0s; }
.brand-highlight .wicket-dot:nth-child(2) { animation-delay: 0.15s; }
.brand-highlight .wicket-dot:nth-child(3) { animation-delay: 0.3s; }
.brand-highlight .wicket-dot:nth-child(4) { animation-delay: 0.45s; }
.brand-highlight .wicket-dot:nth-child(5) { animation-delay: 0.6s; }
.brand-highlight .wicket-dot:nth-child(6) { animation-delay: 0.75s; }
.brand-highlight .wicket-dot:nth-child(7) { animation-delay: 0.9s; }
.brand-highlight .wicket-dot:nth-child(8) { animation-delay: 1.05s; }
.brand-highlight .wicket-dot:nth-child(9) { animation-delay: 1.2s; }

@keyframes wicketDotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
        background: var(--amber-400);
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
        background: var(--yellow-400);
        box-shadow: 0 0 8px var(--amber-400);
    }
}

/* Brand Highlight Hover Effect */
.brand-highlight:hover {
    animation: brandShimmer 1.5s linear infinite, brandPulse 1s ease-in-out infinite;
}

.brand-highlight:hover::before {
    animation: brandGlowPulse 1s ease-in-out infinite;
    filter: blur(12px);
}

.brand-highlight:hover .wicket-dot {
    animation-duration: 0.8s;
}

/* Adjust hero subtitle for dots spacing */
.hero-subtitle {
    padding-bottom: 1.2rem;
}

/* Responsive adjustments for brand highlight */
@media (min-width: 768px) {
    .brand-highlight::before {
        inset: -6px -12px;
        filter: blur(10px);
    }

    .brand-highlight .wicket-dots {
        gap: 4px;
        bottom: -14px;
    }

    .brand-highlight .wicket-dot {
        width: 5px;
        height: 5px;
    }
}

@media (min-width: 1024px) {
    .brand-highlight {
        letter-spacing: 0.2em;
    }

    .brand-highlight::before {
        inset: -8px -16px;
        filter: blur(12px);
    }

    .brand-highlight .wicket-dots {
        gap: 5px;
        bottom: -16px;
    }

    .brand-highlight .wicket-dot {
        width: 6px;
        height: 6px;
    }
}

/* Shimmer Line */
.hero-shimmer-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--amber-400) 25%,
        var(--cyan-400) 50%,
        var(--amber-400) 75%,
        transparent 100%);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
    z-index: 25;
}

/* Button Glow Animation */
.hero-content .btn-primary {
    animation: borderGlow 3s ease-in-out infinite, fadeUp 0.8s ease-out forwards;
    animation-delay: 0.4s;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-ring {
        width: 600px;
        height: 600px;
    }

    .hero-orb-1 {
        width: 400px;
        height: 400px;
    }

    .hero-orb-2 {
        width: 350px;
        height: 350px;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 6rem;
    }

    .hero-ring {
        width: 700px;
        height: 700px;
    }

    .hero-orb-1 {
        width: 500px;
        height: 500px;
    }

    .hero-orb-2 {
        width: 400px;
        height: 400px;
    }

    .hero-orb-3 {
        width: 300px;
        height: 300px;
    }

    .hero-float-el svg {
        width: 40px;
        height: 40px;
    }

    .hero-float-el:nth-child(4) svg {
        width: 50px;
        height: 50px;
    }

    .hero-sparkle:nth-child(1) {
        width: 25px;
        height: 25px;
    }

    .hero-shimmer-line {
        height: 3px;
    }
}

/* ===== Gallery Section ===== */
.gallery {
    position: relative;
    padding: 5rem 1rem;
    background: linear-gradient(180deg, #000 0%, #0a0a0a 50%, #000 100%);
    overflow: hidden;
}

/* Background Effects */
.gallery-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.gallery-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.gallery-glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.3) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation: orbFloat1 20s ease-in-out infinite;
}

.gallery-glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.25) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
    animation: orbFloat2 25s ease-in-out infinite;
}

.gallery-badge {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(6, 182, 212, 0.2));
    border-color: rgba(251, 191, 36, 0.3);
}

/* 3D Carousel Container */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    perspective: 1200px;
    perspective-origin: 50% 50%;
    overflow: visible;
}

.carousel-3d {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    position: absolute;
    width: 280px;
    height: 320px;
    left: 50%;
    top: 50%;
    margin-left: -140px;
    margin-top: -160px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    backface-visibility: hidden;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.carousel-slide:hover img {
    transform: scale(1.05);
}

.carousel-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        transparent 60%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel-slide:hover::before {
    opacity: 1;
}

.carousel-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 16px;
    transition: all 0.3s ease;
    z-index: 2;
}

.carousel-slide.active::after {
    border-color: var(--amber-400);
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.3);
}

/* Slide Reflection */
.slide-reflection {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 30%
    );
    transform: scaleY(-1);
    opacity: 0.3;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, black 0%, transparent 50%);
    -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 50%);
}

/* Navigation Buttons */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    width: 56px;
    height: 56px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-nav:hover {
    background: var(--amber-500);
    border-color: var(--amber-400);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

/* Dot Indicators */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: var(--amber-400);
    border-color: var(--amber-400);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.5);
}

/* Slide Counter */
.carousel-counter {
    position: absolute;
    bottom: -40px;
    right: 20px;
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-family: var(--font-heading);
    letter-spacing: 0.1em;
}

.carousel-counter .current-slide {
    font-size: 2rem;
    color: var(--amber-400);
    font-weight: 700;
}

.carousel-counter .separator {
    font-size: 1.2rem;
    color: var(--gray-500);
}

.carousel-counter .total-slides {
    font-size: 1.2rem;
    color: var(--gray-500);
}

/* Thumbnail Strip */
.thumbnail-strip {
    margin-top: 3rem;
    padding: 1rem 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.thumbnail-strip::-webkit-scrollbar {
    display: none;
}

.thumbnail-track {
    display: flex;
    gap: 12px;
    justify-content: center;
    padding: 0.5rem;
}

.thumbnail {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    padding: 0;
    background: none;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.thumbnail:hover {
    opacity: 0.8;
    transform: translateY(-3px);
}

.thumbnail.active {
    opacity: 1;
    border-color: var(--amber-400);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .carousel-wrapper {
        height: 450px;
    }

    .carousel-slide {
        width: 350px;
        height: 400px;
        margin-left: -175px;
        margin-top: -200px;
    }

    .carousel-nav {
        width: 64px;
        height: 64px;
    }

    .carousel-prev {
        left: 20px;
    }

    .carousel-next {
        right: 20px;
    }

    .thumbnail {
        width: 80px;
        height: 80px;
    }
}

@media (min-width: 1024px) {
    .carousel-wrapper {
        height: 500px;
    }

    .carousel-slide {
        width: 400px;
        height: 450px;
        margin-left: -200px;
        margin-top: -225px;
        border-radius: 20px;
    }

    .carousel-slide::after {
        border-radius: 20px;
    }

    .carousel-prev {
        left: 40px;
    }

    .carousel-next {
        right: 40px;
    }

    .thumbnail {
        width: 90px;
        height: 90px;
        border-radius: 12px;
    }

    .thumbnail-track {
        gap: 16px;
    }
}

/* ===== Video Gallery Section ===== */
.video-gallery {
    position: relative;
    padding: 5rem 1rem;
    background: linear-gradient(to bottom, var(--gray-900), #000, var(--gray-900));
    overflow: hidden;
}

.video-grid {
    display: grid;
    gap: 1.5rem;
}

.video-card {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-10px);
}

.video-thumbnail {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #0a0a0a;
}

.video-thumbnail img,
.video-thumbnail video,
.thumbnail-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.video-card:hover .video-thumbnail img,
.video-card:hover .video-thumbnail video,
.video-card:hover .thumbnail-video {
    transform: scale(1.1);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #000, rgba(0, 0, 0, 0.5), transparent);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.video-card:hover .video-overlay {
    opacity: 0.8;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5rem;
    height: 5rem;
    background: linear-gradient(to bottom right, var(--amber-500), var(--yellow-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px -12px rgba(245, 158, 11, 0.5);
    transition: all 0.3s ease;
    animation: playWave 2s infinite ease-in-out;
}

.play-btn::before,
.play-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(245, 158, 11, 0.6);
    animation: zoomRipple 2s infinite ease-out;
}

.play-btn::after {
    animation-delay: 0.5s;
}

.play-btn svg {
    color: #000;
    margin-left: 4px;
    z-index: 1;
}

.video-card:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 25px 50px -12px rgba(245, 158, 11, 0.8);
}

@keyframes playWave {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7), 0 25px 50px -12px rgba(245, 158, 11, 0.5);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(245, 158, 11, 0), 0 25px 50px -12px rgba(245, 158, 11, 0.5);
    }
}

.duration {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    border-radius: 9999px;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
}

.category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(to right, rgba(245, 158, 11, 0.8), rgba(202, 138, 4, 0.8));
    backdrop-filter: blur(4px);
    border-radius: 9999px;
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.video-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.125rem;
    margin: 1rem 0 0.5rem;
    line-height: 1.4;
}

.watch-now {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--amber-400);
    font-size: 0.875rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-card:hover .watch-now {
    opacity: 1;
}

@media (min-width: 768px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .video-thumbnail {
        aspect-ratio: 16 / 9;
    }
}

@media (min-width: 1024px) {
    .video-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== Live Video Section ===== */
.live-video {
    position: relative;
    padding: 5rem 1rem;
    background: #000;
    overflow: hidden;
}

.video-player-container {
    position: relative;
}

.video-player-glow {
    position: absolute;
    inset: -4px;
    background: linear-gradient(to right, var(--amber-500), var(--red-500), var(--cyan-500));
    border-radius: 1.5rem;
    filter: blur(16px);
    opacity: 0.5;
    transition: opacity 0.5s ease;
}

.video-player-container:hover .video-player-glow {
    opacity: 0.75;
}

.video-player {
    position: relative;
    background: #000;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.video-wrapper {
    position: relative;
    aspect-ratio: 16 / 9;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent, rgba(0, 0, 0, 0.4));
    pointer-events: none;
}

/* Tap to Play Overlay for Mobile */
.video-tap-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.7);
    z-index: 50;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.video-tap-overlay:hover {
    background: rgba(0, 0, 0, 0.6);
}

.tap-play-btn {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.7);
    animation: tapPulse 2s infinite;
    transition: transform 0.3s ease;
}

.tap-play-btn svg {
    margin-left: 8px;
}

.video-tap-overlay:hover .tap-play-btn,
.video-tap-overlay:active .tap-play-btn {
    transform: scale(1.1);
}

.tap-text {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@keyframes tapPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(251, 191, 36, 0);
    }
}

/* Responsive tap overlay */
@media (max-width: 767px) {
    .tap-play-btn {
        width: 80px;
        height: 80px;
    }

    .tap-play-btn svg {
        width: 40px;
        height: 40px;
    }

    .tap-text {
        font-size: 0.875rem;
    }
}

.live-indicator {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(to right, var(--red-600), var(--red-500));
    border-radius: 9999px;
    box-shadow: 0 10px 40px rgba(239, 68, 68, 0.5);
    animation: pulse 2s infinite;
}

.live-dot-white {
    width: 0.75rem;
    height: 0.75rem;
    background: #fff;
    border-radius: 50%;
    animation: pulse 1s infinite;
}

.live-indicator span:last-child {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
}

.viewer-count {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 9999px;
}

.viewer-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.viewer-count span:last-child {
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.95), transparent);
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-player-container:hover .video-controls {
    opacity: 1;
}

.progress-bar {
    position: relative;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    overflow: visible;
    cursor: pointer;
    margin-bottom: 1rem;
}

.progress {
    height: 100%;
    background: linear-gradient(to right, var(--amber-500), var(--red-500));
    border-radius: 9999px;
    width: 30%;
    transition: width 0.1s linear;
}

.progress-thumb {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    width: 1rem;
    height: 1rem;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.controls-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.controls-left, .controls-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.control-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.control-btn:hover,
.control-btn:active {
    color: var(--amber-400);
    background: rgba(251, 191, 36, 0.2);
    transform: scale(1.1);
}

/* Better touch targets on mobile */
@media (max-width: 767px) {
    .control-btn {
        min-width: 48px;
        min-height: 48px;
        padding: 0.875rem;
    }

    .controls-left, .controls-right {
        gap: 0.5rem;
    }

    .video-controls {
        padding: 0.75rem 1rem;
    }
}

.live-badge-small {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 9999px;
}

.live-badge-small span:last-child {
    color: var(--red-400);
    font-size: 0.875rem;
    font-weight: 600;
}

.video-info {
    background: linear-gradient(to right, var(--gray-900), #000);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.video-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.video-info p {
    color: var(--gray-400);
}

.video-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.video-actions .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .video-info {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.live-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-card {
    position: relative;
    background: linear-gradient(to bottom right, rgba(17, 24, 39, 0.9), rgba(0, 0, 0, 0.9));
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: scale(1.05) translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    filter: blur(16px);
    opacity: 0.2;
    transition: opacity 0.3s ease;
}

.stat-card:hover::before {
    opacity: 0.4;
}

.stat-card.red::before {
    background: linear-gradient(to bottom right, var(--red-500), var(--orange-500));
}

.stat-card.amber::before {
    background: linear-gradient(to bottom right, var(--amber-500), var(--yellow-500));
}

.stat-card.cyan::before {
    background: linear-gradient(to bottom right, var(--cyan-500), var(--blue-500));
}

.stat-card.purple::before {
    background: linear-gradient(to bottom right, var(--purple-500), var(--pink-500));
}

.stat-value {
    position: relative;
    display: block;
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-card.red .stat-value {
    background: linear-gradient(to right, var(--red-500), var(--orange-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-card.amber .stat-value {
    background: linear-gradient(to right, var(--amber-500), var(--yellow-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-card.cyan .stat-value {
    background: linear-gradient(to right, var(--cyan-500), var(--blue-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-card.purple .stat-value {
    background: linear-gradient(to right, var(--purple-500), var(--pink-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    position: relative;
    color: var(--gray-400);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (min-width: 768px) {
    .live-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===== Partnership Section ===== */
.partnership {
    position: relative;
    padding: 5rem 1rem;
    background: linear-gradient(to bottom, #000, var(--gray-900), #000);
    overflow: hidden;
}

.partnership-hero {
    position: relative;
    margin-bottom: 5rem;
}

.partnership-hero-glow {
    position: absolute;
    inset: -4px;
    background: linear-gradient(to right, var(--amber-500), var(--cyan-500), var(--purple-500));
    border-radius: 1.5rem;
    filter: blur(32px);
    opacity: 0.4;
    transition: opacity 0.5s ease;
}

.partnership-hero:hover .partnership-hero-glow {
    opacity: 0.6;
}

.partnership-hero-image {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    min-height: 25rem;
}

/* Multi-image Grid Layout - Vertical Cards */
.partnership-image-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    padding: 10px;
    height: 28rem;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
}

.grid-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.grid-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.3), rgba(6, 182, 212, 0.3)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

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

.grid-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease, filter 0.3s ease;
}

.grid-card:hover img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

/* Vertical cards - single row layout */
.grid-card {
    aspect-ratio: 3/4;
}

/* Staggered animation on load */
.grid-card {
    animation: cardFadeIn 0.6s ease forwards;
    opacity: 0;
}

.grid-card.card-1 { animation-delay: 0.1s; }
.grid-card.card-2 { animation-delay: 0.2s; }
.grid-card.card-3 { animation-delay: 0.3s; }
.grid-card.card-4 { animation-delay: 0.15s; }
.grid-card.card-5 { animation-delay: 0.25s; }
.grid-card.card-6 { animation-delay: 0.35s; }

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.partnership-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.partnership-hero-quote {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 2;
}

.quote-text {
    font-size: 1.25rem;
    color: #fff;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 1rem;
}

.quote-author {
    color: var(--amber-400);
    font-size: 1.125rem;
    font-weight: 600;
}

@media (min-width: 768px) {
    .partnership-image-grid {
        height: 32rem;
        gap: 12px;
        padding: 12px;
    }

    .quote-text {
        font-size: 1.5rem;
    }
    .partnership-hero-quote {
        padding: 3rem;
    }
}

@media (min-width: 1024px) {
    .quote-text {
        font-size: 1.875rem;
    }
}

.values-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.value-card {
    position: relative;
    background: linear-gradient(to bottom right, rgba(17, 24, 39, 0.9), rgba(0, 0, 0, 0.9));
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.value-card:hover {
    transform: scale(1.02) translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.value-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    filter: blur(16px);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.value-card:hover::before {
    opacity: 0.2;
}

.value-card.amber-gradient::before {
    background: linear-gradient(to bottom right, var(--amber-500), var(--yellow-600));
}

.value-card.cyan-gradient::before {
    background: linear-gradient(to bottom right, var(--cyan-500), var(--blue-600));
}

.value-card.red-gradient::before {
    background: linear-gradient(to bottom right, var(--red-500), var(--pink-600));
}

.value-card.purple-gradient::before {
    background: linear-gradient(to bottom right, var(--purple-500), var(--pink-600));
}

.value-icon {
    position: relative;
    display: inline-flex;
    padding: 1rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
}

.value-icon.amber {
    background: linear-gradient(to bottom right, var(--amber-500), var(--yellow-600));
}

.value-icon.cyan {
    background: linear-gradient(to bottom right, var(--cyan-500), var(--blue-600));
}

.value-icon.red {
    background: linear-gradient(to bottom right, var(--red-500), var(--pink-600));
}

.value-icon.purple {
    background: linear-gradient(to bottom right, var(--purple-500), var(--pink-600));
}

.value-icon svg {
    color: #fff;
}

.value-card h4 {
    position: relative;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.value-card p {
    position: relative;
    color: var(--gray-400);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stats-banner {
    position: relative;
    margin-bottom: 5rem;
}

.stats-banner-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(245, 158, 11, 0.2), rgba(6, 182, 212, 0.2), rgba(168, 85, 247, 0.2));
    border-radius: 1.5rem;
    filter: blur(32px);
}

.stats-banner-content {
    position: relative;
    background: linear-gradient(to right, rgba(17, 24, 39, 0.8), rgba(0, 0, 0, 0.8));
    backdrop-filter: blur(4px);
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--amber-400), var(--yellow-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-text {
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .stats-banner-content {
        grid-template-columns: repeat(4, 1fr);
        padding: 3rem;
    }
    .stat-number {
        font-size: 3rem;
    }
}

/* ===== About Section ===== */
.about {
    position: relative;
    padding: 5rem 1rem;
    background: linear-gradient(to bottom, var(--gray-900), #000);
    overflow: hidden;
}

.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.about-image {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 2rem;
}

/* Animated Glowing Orbs */
.about-image-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: aboutGlowFloat 8s ease-in-out infinite;
}

.about-image-glow.amber.top-left {
    width: 200px;
    height: 200px;
    top: 0;
    left: 0;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.6) 0%, transparent 70%);
    animation-delay: 0s;
}

.about-image-glow.cyan.bottom-right {
    width: 250px;
    height: 250px;
    bottom: 0;
    right: 0;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.5) 0%, transparent 70%);
    animation-delay: -4s;
}

@keyframes aboutGlowFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translate(20px, -20px) scale(1.1);
        opacity: 0.6;
    }
}

/* Main Image Container */
.about-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: visible;
    max-width: 400px;
    width: 100%;
}

/* Outer Decorative Frame */
.about-image-wrapper::before {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 32px;
    background: linear-gradient(
        135deg,
        rgba(251, 191, 36, 0.3) 0%,
        rgba(251, 191, 36, 0.1) 25%,
        rgba(6, 182, 212, 0.1) 75%,
        rgba(6, 182, 212, 0.3) 100%
    );
    z-index: -1;
    animation: frameGlow 4s ease-in-out infinite;
}

/* Inner Frame Border */
.about-image-wrapper::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 28px;
    background: linear-gradient(
        135deg,
        var(--amber-400) 0%,
        var(--amber-600) 25%,
        var(--cyan-600) 75%,
        var(--cyan-400) 100%
    );
    z-index: -1;
    padding: 3px;
}

@keyframes frameGlow {
    0%, 100% {
        opacity: 0.5;
        filter: blur(20px);
    }
    50% {
        opacity: 0.8;
        filter: blur(30px);
    }
}

/* Image Inner Container */
.about-image-inner {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #000;
}

/* Gradient Overlay on Image */
.about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.1) 0%,
        transparent 30%,
        transparent 60%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 2;
    pointer-events: none;
}

/* The Actual Image */
.about-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center top;
    border-radius: 24px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.95) contrast(1.05);
}

.about-image:hover .about-image-wrapper img {
    transform: scale(1.03);
    filter: brightness(1) contrast(1.05);
}

/* Corner Decorations */
.about-image-wrapper .corner-decor {
    position: absolute;
    width: 60px;
    height: 60px;
    z-index: 10;
    pointer-events: none;
}

.about-image-wrapper .corner-decor::before,
.about-image-wrapper .corner-decor::after {
    content: '';
    position: absolute;
    background: var(--amber-400);
}

.about-image-wrapper .corner-decor.top-left {
    top: -4px;
    left: -4px;
}

.about-image-wrapper .corner-decor.top-left::before {
    top: 0;
    left: 0;
    width: 30px;
    height: 3px;
    border-radius: 2px;
}

.about-image-wrapper .corner-decor.top-left::after {
    top: 0;
    left: 0;
    width: 3px;
    height: 30px;
    border-radius: 2px;
}

.about-image-wrapper .corner-decor.bottom-right {
    bottom: -4px;
    right: -4px;
}

.about-image-wrapper .corner-decor.bottom-right::before {
    bottom: 0;
    right: 0;
    width: 30px;
    height: 3px;
    border-radius: 2px;
    background: var(--cyan-400);
}

.about-image-wrapper .corner-decor.bottom-right::after {
    bottom: 0;
    right: 0;
    width: 3px;
    height: 30px;
    border-radius: 2px;
    background: var(--cyan-400);
}

/* Floating Badge on Image */
.about-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 12px;
    padding: 12px 20px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-image-badge-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.about-image-badge-text {
    display: flex;
    flex-direction: column;
}

.about-image-badge-title {
    font-size: 0.75rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.about-image-badge-value {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--amber-400);
    font-weight: 700;
}

/* Decorative Ring */
.about-image-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    border: 1px dashed rgba(251, 191, 36, 0.2);
    border-radius: 50%;
    pointer-events: none;
    animation: aboutRingSpin 30s linear infinite;
}

@keyframes aboutRingSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.about-text {
    margin-bottom: 2rem;
}

.about-text p {
    color: var(--gray-300);
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.achievements-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.achievements {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.achievement-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(to right, rgba(31, 41, 55, 0.5), rgba(17, 24, 39, 0.5));
    border-radius: 0.75rem;
    border: 1px solid rgba(245, 158, 11, 0.2);
    transition: all 0.3s ease;
}

.achievement-card:hover {
    border-color: rgba(245, 158, 11, 0.5);
}

.achievement-icon {
    padding: 0.75rem;
    background: linear-gradient(to bottom right, var(--amber-500), var(--yellow-600));
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
}

.achievement-card:hover .achievement-icon {
    transform: scale(1.1);
}

.achievement-icon svg {
    color: #000;
}

.achievement-card span {
    color: var(--gray-200);
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== Brand Section ===== */
.brand {
    position: relative;
    padding: 5rem 1rem;
    overflow: hidden;
}

.brand-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, #000, var(--gray-900), #000);
}

.brand-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.1;
    animation: pulse 3s infinite;
}

.brand-glow.amber.top {
    top: 2.5rem;
    left: 2.5rem;
    width: 16rem;
    height: 16rem;
    background: linear-gradient(to bottom right, var(--amber-500), var(--yellow-600));
}

.brand-glow.cyan.bottom {
    bottom: 2.5rem;
    right: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: linear-gradient(to bottom right, var(--cyan-500), var(--blue-600));
    animation-delay: 1s;
}

.brand-glow.red.center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 31.25rem;
    height: 31.25rem;
    background: linear-gradient(to bottom right, var(--red-500), var(--orange-600));
    animation-delay: 2s;
}

.brand-logo-section {
    position: relative;
    text-align: center;
    margin-bottom: 4rem;
}

.brand-logo-container {
    display: inline-block;
    margin-bottom: 2rem;
    position: relative;
}

.brand-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, var(--amber-500) 0%, var(--yellow-600) 50%, transparent 70%);
    border-radius: 1.5rem;
    filter: blur(40px);
    opacity: 0.6;
    pointer-events: none;
}

.brand-logo {
    position: relative;
    background: linear-gradient(to bottom right, var(--gray-900), #000);
    padding: 3rem;
    border-radius: 1.5rem;
    border: 4px solid var(--amber-500);
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    background: linear-gradient(to right, var(--amber-200), var(--yellow-400), var(--amber-200));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-tagline {
    font-family: var(--font-display);
    font-size: 1.875rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.brand-description {
    font-size: 1.25rem;
    color: var(--gray-400);
}

@media (min-width: 768px) {
    .brand-name {
        font-size: 5rem;
    }
    .brand-tagline {
        font-size: 2.25rem;
    }
}

.brand-values {
    position: relative;
    display: grid;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.brand-value-card {
    position: relative;
    background: linear-gradient(to bottom right, rgba(17, 24, 39, 0.9), rgba(0, 0, 0, 0.9));
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(245, 158, 11, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
}

.brand-value-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(245, 158, 11, 0.2), rgba(6, 182, 212, 0.2));
    border-radius: 1rem;
    filter: blur(16px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brand-value-card:hover {
    transform: scale(1.05) translateY(-5px);
    border-color: rgba(245, 158, 11, 0.6);
}

.brand-value-card:hover::before {
    opacity: 1;
}

.brand-value-icon {
    position: relative;
    display: inline-flex;
    padding: 1rem;
    background: linear-gradient(to bottom right, var(--amber-500), var(--yellow-600));
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.brand-value-card:hover .brand-value-icon {
    transform: scale(1.1);
}

.brand-value-icon svg {
    color: #000;
}

.brand-value-card h3 {
    position: relative;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.brand-value-card p {
    position: relative;
    color: var(--gray-400);
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .brand-values {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .brand-values {
        grid-template-columns: repeat(4, 1fr);
    }
}

.brand-partnership {
    position: relative;
    background: linear-gradient(to right, rgba(17, 24, 39, 0.5), rgba(0, 0, 0, 0.5));
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(245, 158, 11, 0.3);
    display: grid;
    gap: 2rem;
    align-items: center;
}

.brand-partnership-content h3 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
}

.brand-partnership-content p {
    color: var(--gray-300);
    font-size: 1.125rem;
    line-height: 1.75;
}

.brand-partnership-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(245, 158, 11, 0.2);
}

@media (min-width: 768px) {
    .brand-partnership {
        grid-template-columns: repeat(2, 1fr);
        padding: 3rem;
    }
    .brand-partnership-content h3 {
        font-size: 2.25rem;
    }
}

/* ===== Timeline Section ===== */
.timeline {
    padding: 5rem 1rem;
    background: linear-gradient(to bottom, #000, var(--gray-900));
}

.timeline-container {
    position: relative;
    max-width: 48rem;
    margin: 0 auto;
}

.timeline-line {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--amber-500), var(--cyan-500), var(--purple-500));
}

.timeline-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
    gap: 1rem;
}

.timeline-content {
    background: linear-gradient(to bottom right, rgba(17, 24, 39, 0.9), rgba(0, 0, 0, 0.9));
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(245, 158, 11, 0.3);
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.timeline-content:hover {
    border-color: rgba(245, 158, 11, 0.6);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.timeline-year {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.timeline-year.amber {
    background: linear-gradient(to right, var(--amber-500), var(--yellow-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.timeline-year.cyan {
    background: linear-gradient(to right, var(--cyan-500), var(--blue-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.timeline-year.red {
    background: linear-gradient(to right, var(--red-500), var(--orange-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.timeline-year.purple {
    background: linear-gradient(to right, var(--purple-500), var(--pink-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--gray-400);
}

.timeline-icon {
    position: relative;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    z-index: 10;
}

.timeline-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

.timeline-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    filter: blur(16px);
    opacity: 0.5;
    z-index: -1;
}

.timeline-icon.amber {
    background: linear-gradient(to bottom right, var(--amber-500), var(--yellow-600));
}

.timeline-icon.amber::after {
    background: linear-gradient(to bottom right, var(--amber-500), var(--yellow-600));
}

.timeline-icon.cyan {
    background: linear-gradient(to bottom right, var(--cyan-500), var(--blue-600));
}

.timeline-icon.cyan::after {
    background: linear-gradient(to bottom right, var(--cyan-500), var(--blue-600));
}

.timeline-icon.red {
    background: linear-gradient(to bottom right, var(--red-500), var(--orange-600));
}

.timeline-icon.red::after {
    background: linear-gradient(to bottom right, var(--red-500), var(--orange-600));
}

.timeline-icon.purple {
    background: linear-gradient(to bottom right, var(--purple-500), var(--pink-600));
}

.timeline-icon.purple::after {
    background: linear-gradient(to bottom right, var(--purple-500), var(--pink-600));
}

.timeline-icon svg {
    color: #fff;
}

@media (min-width: 768px) {
    .timeline-line {
        display: block;
    }

    .timeline-item {
        flex-direction: row;
        gap: 2rem;
    }

    .timeline-item.left {
        flex-direction: row;
    }

    .timeline-item.right {
        flex-direction: row-reverse;
    }

    .timeline-item.left .timeline-content {
        text-align: right;
    }

    .timeline-item.right .timeline-content {
        text-align: left;
    }

    .timeline-content {
        flex: 1;
    }
}

.timeline-cta {
    margin-top: 5rem;
}

.timeline-cta-grid {
    background: linear-gradient(to right, rgba(17, 24, 39, 0.5), rgba(0, 0, 0, 0.5));
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(245, 158, 11, 0.3);
    display: grid;
    gap: 2rem;
    align-items: center;
}

.timeline-cta-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(245, 158, 11, 0.2);
}

.timeline-cta-content h3 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
}

.timeline-cta-content p {
    color: var(--gray-300);
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .timeline-cta-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 3rem;
    }
    .timeline-cta-content h3 {
        font-size: 2.25rem;
    }
}

/* ===== Social Media Section ===== */
.social-media {
    position: relative;
    padding: 5rem 1rem;
    background: linear-gradient(to bottom, var(--gray-900), #000, var(--gray-950));
    overflow: hidden;
}

.social-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.social-card {
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-card:hover {
    transform: scale(1.05) translateY(-5px);
}

.social-card-glow {
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    filter: blur(16px);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.social-card:hover .social-card-glow {
    opacity: 0.4;
}

.social-card.instagram .social-card-glow {
    background: linear-gradient(to bottom right, var(--pink-500), var(--purple-500), var(--orange-500));
}

.social-card.twitter .social-card-glow {
    background: linear-gradient(to bottom right, var(--cyan-500), var(--blue-500));
}

.social-card.facebook .social-card-glow {
    background: linear-gradient(to bottom right, var(--blue-600), #4f46e5);
}

.social-card.youtube .social-card-glow {
    background: linear-gradient(to bottom right, var(--red-600), var(--red-500));
}

.social-card.tiktok .social-card-glow {
    background: linear-gradient(to right, var(--gray-900), var(--pink-500), var(--cyan-500));
}

.social-card-content {
    position: relative;
    background: linear-gradient(to bottom right, rgba(17, 24, 39, 0.9), rgba(0, 0, 0, 0.9));
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    transition: border-color 0.3s ease;
}

.social-card:hover .social-card-content {
    border-color: rgba(255, 255, 255, 0.3);
}

.social-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.social-icon {
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.social-card:hover .social-icon {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.social-card.instagram .social-icon {
    background: linear-gradient(to bottom right, var(--pink-500), var(--purple-500), var(--orange-500));
}

.social-card.twitter .social-icon {
    background: linear-gradient(to bottom right, var(--cyan-500), var(--blue-500));
}

.social-card.facebook .social-icon {
    background: linear-gradient(to bottom right, var(--blue-600), #4f46e5);
}

.social-card.youtube .social-icon {
    background: linear-gradient(to bottom right, var(--red-600), var(--red-500));
}

.social-card.tiktok .social-icon {
    background: linear-gradient(to right, var(--gray-900), var(--pink-500), var(--cyan-500));
}

.social-icon svg {
    color: #fff;
}

.external-link {
    color: var(--gray-400);
    transition: all 0.3s ease;
}

.social-card:hover .external-link {
    color: #fff;
    transform: rotate(15deg) scale(1.1);
}

.social-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}

.social-handle {
    color: var(--gray-400);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.social-followers {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.social-card.instagram .social-followers {
    background: linear-gradient(to right, var(--pink-500), var(--purple-500), var(--orange-500));
}

.social-card.twitter .social-followers {
    background: linear-gradient(to right, var(--cyan-500), var(--blue-500));
}

.social-card.facebook .social-followers {
    background: linear-gradient(to right, var(--blue-600), #4f46e5);
}

.social-card.youtube .social-followers {
    background: linear-gradient(to right, var(--red-600), var(--red-500));
}

.social-card.tiktok .social-followers {
    background: linear-gradient(to right, var(--gray-900), var(--pink-500), var(--cyan-500));
}

.social-description {
    color: var(--gray-500);
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .social-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.social-cta {
    position: relative;
}

.social-cta-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(245, 158, 11, 0.2), rgba(6, 182, 212, 0.2), rgba(168, 85, 247, 0.2));
    border-radius: 1.5rem;
    filter: blur(32px);
}

.social-cta-content {
    position: relative;
    background: linear-gradient(to right, rgba(17, 24, 39, 0.9), rgba(0, 0, 0, 0.9));
    backdrop-filter: blur(4px);
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.social-cta-main {
    text-align: center;
}

.heart-icon {
    color: var(--pink-400);
    margin-bottom: 1rem;
    display: inline-block;
    animation: heartBeat 3s ease-in-out infinite;
}

.social-cta-main h3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.social-cta-main p {
    color: var(--gray-400);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    max-width: 36rem;
}

.social-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.social-cta-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.cta-stat {
    text-align: center;
}

.cta-stat-value {
    display: block;
    font-size: 1.875rem;
    font-weight: 700;
}

.cta-stat.pink .cta-stat-value {
    background: linear-gradient(to right, var(--pink-500), var(--purple-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-stat.cyan .cta-stat-value {
    background: linear-gradient(to right, var(--cyan-500), var(--blue-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-stat.amber .cta-stat-value {
    background: linear-gradient(to right, var(--amber-500), var(--yellow-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-stat-label {
    color: var(--gray-400);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (min-width: 768px) {
    .social-cta-content {
        flex-direction: row;
        padding: 3rem;
        align-items: center;
        justify-content: space-between;
    }

    .social-cta-main {
        text-align: left;
        flex: 1;
    }

    .social-cta-main h3 {
        font-size: 2.25rem;
    }

    .social-cta-buttons {
        justify-content: flex-start;
    }

    .social-cta-stats {
        text-align: right;
    }
}

.footer {
    margin-top: 4rem;
    text-align: center;
}

.footer p {
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* ===== Lightbox Modal ===== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 100;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--amber-500);
}

.lightbox img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 0.5rem;
    animation: scaleUp 0.3s ease;
}

/* ===== Video Modal ===== */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(4px);
    z-index: 100;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.video-modal.active {
    display: flex;
}

.video-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
}

.video-modal-close:hover {
    color: var(--amber-500);
}

.video-modal-content {
    width: 100%;
    max-width: 72rem;
    animation: scaleUp 0.3s ease;
}

.video-modal-player {
    position: relative;
    background: #000;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.video-modal-player img,
.video-modal-player video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-modal-player video {
    display: block;
}

/* Custom video controls styling */
.video-modal-player video::-webkit-media-controls-panel {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.video-modal-player video::-webkit-media-controls-play-button,
.video-modal-player video::-webkit-media-controls-volume-slider,
.video-modal-player video::-webkit-media-controls-mute-button,
.video-modal-player video::-webkit-media-controls-fullscreen-button {
    filter: brightness(1.2);
}

.video-modal-play {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    display: none; /* Hidden since we now use actual video */
}

.video-modal-play svg {
    width: 6rem;
    height: 6rem;
    color: var(--amber-500);
    animation: pulse 2s infinite;
}

.video-modal-info {
    padding: 1.5rem;
    background: linear-gradient(to bottom, var(--gray-900), #000);
    border-radius: 0 0 1rem 1rem;
}

.video-modal-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.video-modal-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.video-modal-category {
    padding: 0.25rem 0.75rem;
    background: linear-gradient(to right, var(--amber-500), var(--yellow-600));
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 9999px;
    text-transform: uppercase;
}

.video-modal-meta span:last-child {
    color: var(--gray-400);
    font-size: 0.875rem;
}

/* ===== Enhanced Timeline V2 Section ===== */
.timeline-v2 {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    background: linear-gradient(180deg, var(--gray-900) 0%, #0a0a0a 50%, var(--gray-900) 100%);
}

.timeline-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.timeline-glow-1 {
    position: absolute;
    top: 10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    animation: float-slow 15s ease-in-out infinite;
}

.timeline-glow-2 {
    position: absolute;
    bottom: 10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.12) 0%, transparent 70%);
    filter: blur(100px);
    animation: float-slow 18s ease-in-out infinite reverse;
}

.timeline-glow-3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(251, 191, 36, 0.08) 0%, transparent 60%);
    filter: blur(60px);
}

.timeline-particles {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--amber-400);
    border-radius: 50%;
    opacity: 0.3;
    animation: particle-float 20s linear infinite;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 25s; }
.particle:nth-child(2) { left: 20%; top: 60%; animation-delay: -5s; animation-duration: 22s; }
.particle:nth-child(3) { left: 35%; top: 30%; animation-delay: -10s; animation-duration: 28s; }
.particle:nth-child(4) { left: 50%; top: 70%; animation-delay: -3s; animation-duration: 20s; }
.particle:nth-child(5) { left: 65%; top: 25%; animation-delay: -8s; animation-duration: 24s; }
.particle:nth-child(6) { left: 80%; top: 55%; animation-delay: -12s; animation-duration: 26s; }
.particle:nth-child(7) { left: 90%; top: 40%; animation-delay: -15s; animation-duration: 23s; }
.particle:nth-child(8) { left: 5%; top: 80%; animation-delay: -7s; animation-duration: 27s; }

@keyframes particle-float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.2;
    }
    25% {
        transform: translateY(-30px) translateX(10px);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-10px) translateX(-15px);
        opacity: 0.3;
    }
    75% {
        transform: translateY(-40px) translateX(5px);
        opacity: 0.4;
    }
}

@keyframes float-slow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

/* Timeline Header */
.timeline-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.timeline-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(217, 119, 6, 0.1) 100%);
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 1.25rem;
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--amber-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.timeline-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.timeline-title .gradient-text {
    background: linear-gradient(135deg, var(--amber-400) 0%, var(--amber-500) 50%, var(--amber-600) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.timeline-subtitle {
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
    font-weight: 400;
}

/* Journey Stats */
.journey-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.journey-stat {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

/* Timeline Immersive */
.timeline-immersive {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.timeline-track {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    transform: translateX(-50%);
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(245, 158, 11, 0.3) 10%,
        rgba(245, 158, 11, 0.3) 90%,
        transparent 100%
    );
    border-radius: 2px;
}

.track-progress {
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, var(--amber-400), var(--amber-600));
    border-radius: 2px;
    transition: height 0.5s ease-out;
    box-shadow: 0 0 20px var(--amber-500);
}

.track-glow {
    position: absolute;
    left: 50%;
    top: 0;
    width: 100px;
    height: 100%;
    transform: translateX(-50%);
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(245, 158, 11, 0.1) 50%,
        transparent 100%
    );
    filter: blur(20px);
}

/* Timeline Cards */
.timeline-cards {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    position: relative;
    z-index: 10;
}

.timeline-card {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
}

.timeline-card:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-card:nth-child(even) .card-content {
    text-align: right;
}

.timeline-card:nth-child(even) .card-details {
    align-items: flex-end;
}

.timeline-card:nth-child(even) .card-metrics {
    justify-content: flex-end;
}

/* Card Connector */
.card-connector {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 20;
}

.connector-dot {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
    border-radius: 50%;
    border: 4px solid var(--gray-900);
    box-shadow: 0 0 20px var(--amber-500), 0 0 40px rgba(245, 158, 11, 0.3);
    position: relative;
}

.connector-dot::before {
    content: '';
    position: absolute;
    inset: -6px;
    border: 2px solid rgba(245, 158, 11, 0.3);
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.connector-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(180deg, var(--amber-500), transparent);
}

.connector-year {
    background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
    color: var(--gray-900);
    font-size: 0.875rem;
    font-weight: 800;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-top: 0.5rem;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}

/* Card Content */
.card-content {
    flex: 1;
    max-width: 450px;
}

.card-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    filter: blur(30px);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.timeline-card:hover .card-glow {
    opacity: 1;
}

/* Card Media */
.card-media {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
    aspect-ratio: 4/5;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.card-media::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(245, 158, 11, 0.15) 0%,
        transparent 40%,
        transparent 60%,
        rgba(6, 182, 212, 0.1) 100%
    );
    z-index: 3;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card-media::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1.25rem;
    border: 2px solid transparent;
    z-index: 4;
    transition: border-color 0.3s ease;
    pointer-events: none;
}

.timeline-card:hover .card-media::before {
    opacity: 1;
}

.timeline-card:hover .card-media::after {
    border-color: rgba(251, 191, 36, 0.3);
}

.timeline-card[data-color="cyan"]:hover .card-media::after {
    border-color: rgba(6, 182, 212, 0.3);
}

.timeline-card[data-color="red"]:hover .card-media::after {
    border-color: rgba(239, 68, 68, 0.3);
}

.timeline-card[data-color="purple"]:hover .card-media::after {
    border-color: rgba(168, 85, 247, 0.3);
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.95);
}

.timeline-card:hover .card-media img {
    transform: scale(1.08);
    filter: brightness(1);
}

.media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.1) 0%,
        transparent 30%,
        transparent 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.media-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--amber-400);
    border: 1px solid rgba(245, 158, 11, 0.3);
    z-index: 3;
}

/* Card Details */
.card-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.5rem 0.5rem 0;
}

.card-phase {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--amber-500);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    line-height: 1.3;
}

.card-description {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray-400);
    line-height: 1.7;
    font-weight: 400;
}

/* Card Metrics */
.card-metrics {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.metric {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.metric-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--amber-400);
}

.metric-label {
    font-size: 0.7rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Timeline Footer */
.timeline-footer {
    margin-top: 5rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

.footer-visual {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(217, 119, 6, 0.1) 100%);
    border: 1px solid rgba(245, 158, 11, 0.2);
    padding: 1.5rem 2.5rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
}

.badge-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge-info {
    text-align: left;
}

.badge-info span {
    display: block;
}

.badge-info span:first-child {
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.badge-info span:last-child {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.floating-elements {
    position: absolute;
    inset: -30px;
    pointer-events: none;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.6;
    animation: float-icon 3s ease-in-out infinite;
}

.floating-icon:nth-child(1) { top: 0; left: 0; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 0; right: 0; animation-delay: -1s; }
.floating-icon:nth-child(3) { bottom: 0; left: 20%; animation-delay: -0.5s; }
.floating-icon:nth-child(4) { bottom: 0; right: 20%; animation-delay: -1.5s; }

@keyframes float-icon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.footer-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-subtitle {
    font-size: 0.95rem;
    color: var(--gray-400);
    max-width: 400px;
}

/* Timeline V2 Responsive */
@media (max-width: 1024px) {
    .timeline-track,
    .track-glow {
        left: 30px;
    }

    .timeline-card,
    .timeline-card:nth-child(even) {
        flex-direction: column;
        padding-left: 80px;
    }

    .timeline-card:nth-child(even) .card-content {
        text-align: left;
    }

    .timeline-card:nth-child(even) .card-details {
        align-items: flex-start;
    }

    .timeline-card:nth-child(even) .card-metrics {
        justify-content: flex-start;
    }

    .card-connector {
        left: 30px;
        transform: translateX(-50%);
    }

    .card-content {
        max-width: 100%;
    }

    .timeline-title {
        font-size: 2.25rem;
    }

    .journey-stats {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .timeline-v2 {
        padding: 4rem 0;
    }

    .timeline-header {
        margin-bottom: 3rem;
    }

    .timeline-title {
        font-size: 1.875rem;
    }

    .timeline-subtitle {
        font-size: 1rem;
    }

    .journey-stats {
        gap: 1.5rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .timeline-immersive {
        padding: 0 1rem;
    }

    .timeline-cards {
        gap: 3rem;
    }

    .timeline-card,
    .timeline-card:nth-child(even) {
        padding-left: 60px;
    }

    .timeline-track,
    .track-glow {
        left: 20px;
    }

    .card-connector {
        left: 20px;
    }

    .card-title {
        font-size: 1.25rem;
    }

    .card-description {
        font-size: 0.875rem;
    }

    .card-metrics {
        gap: 1rem;
    }

    .footer-badge {
        padding: 1rem 1.5rem;
    }

    .badge-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .timeline-badge {
        padding: 0.5rem 1rem;
    }

    .badge-text {
        font-size: 0.75rem;
    }

    .journey-stat {
        flex: 0 0 calc(50% - 0.75rem);
    }

    .card-media {
        aspect-ratio: 16/9;
    }

    .card-metrics {
        flex-wrap: wrap;
    }

    .metric {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

/* ===== Timeline V2 Enhanced - Additional Styles ===== */

/* Background Gradient Element */
.timeline-bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 20%, rgba(245, 158, 11, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(217, 119, 6, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 100% 60% at 50% 50%, rgba(251, 191, 36, 0.06) 0%, transparent 60%);
    animation: bg-pulse 8s ease-in-out infinite alternate;
}

@keyframes bg-pulse {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Badge Glow */
.badge-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
    border-radius: 9999px;
    filter: blur(8px);
    opacity: 0.3;
    z-index: -1;
}

/* Timeline Badge Styles */
.timeline-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(217, 119, 6, 0.1) 100%);
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    color: var(--amber-400);
}

.timeline-badge svg {
    color: var(--amber-400);
}

.timeline-badge span {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Gradient Text Gold */
.gradient-text-gold {
    background: linear-gradient(135deg, var(--amber-400) 0%, var(--amber-500) 50%, var(--amber-600) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Title Lines */
.title-line {
    display: block;
}

/* Stats Number */
.stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    line-height: 1.2;
}

/* Stats Divider */
.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(245, 158, 11, 0.3), transparent);
}

/* Track Line */
.track-line {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(245, 158, 11, 0.2) 10%,
        rgba(245, 158, 11, 0.2) 90%,
        transparent 100%
    );
    border-radius: 4px;
}

/* Card Inner */
.card-inner {
    position: relative;
    background: linear-gradient(145deg, rgba(25, 25, 30, 0.95) 0%, rgba(15, 15, 20, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1.5rem;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1rem;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.timeline-card:hover .card-inner {
    border-color: rgba(245, 158, 11, 0.25);
    transform: translateY(-8px);
    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(245, 158, 11, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.timeline-card[data-color="cyan"]:hover .card-inner {
    border-color: rgba(6, 182, 212, 0.25);
    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(6, 182, 212, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.timeline-card[data-color="red"]:hover .card-inner {
    border-color: rgba(239, 68, 68, 0.25);
    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(239, 68, 68, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.timeline-card[data-color="purple"]:hover .card-inner {
    border-color: rgba(168, 85, 247, 0.25);
    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(168, 85, 247, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Year Badge */
.year-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.6rem 1.25rem;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    z-index: 5;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.year-badge span {
    display: block;
}

.year-badge.amber {
    background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
    color: var(--gray-900);
    box-shadow:
        0 4px 20px rgba(245, 158, 11, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.year-badge.cyan {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: var(--gray-900);
    box-shadow:
        0 4px 20px rgba(6, 182, 212, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.year-badge.red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    box-shadow:
        0 4px 20px rgba(239, 68, 68, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.year-badge.purple {
    background: linear-gradient(135deg, #a855f7, #9333ea);
    color: white;
    box-shadow:
        0 4px 20px rgba(168, 85, 247, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.timeline-card:hover .year-badge {
    transform: scale(1.05);
}

/* Card Icon */
.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.card-icon.amber {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.1));
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: var(--amber-400);
}

.card-icon.cyan {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(8, 145, 178, 0.1));
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: #06b6d4;
}

.card-icon.red {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(220, 38, 38, 0.1));
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.card-icon.purple {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(147, 51, 234, 0.1));
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: #a855f7;
}

/* Card Label */
.card-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gray-500);
    display: block;
    margin-bottom: 0.5rem;
}

/* Card Description */
.card-desc {
    font-size: 0.95rem;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Dot Ring and Core */
.dot-ring {
    position: absolute;
    inset: -6px;
    border: 2px solid rgba(245, 158, 11, 0.4);
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
}

.dot-core {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
    border-radius: 50%;
    box-shadow: 0 0 15px var(--amber-500);
}

/* Card Glow Color Variants */
.card-glow.amber {
    background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
}

.card-glow.cyan {
    background: radial-gradient(ellipse at center, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
}

.card-glow.red {
    background: radial-gradient(ellipse at center, rgba(239, 68, 68, 0.15) 0%, transparent 70%);
}

.card-glow.purple {
    background: radial-gradient(ellipse at center, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
}

/* Coming Soon Badge */
.coming-soon-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(168, 85, 247, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 5;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

/* Footer Content */
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* Visual Frame */
.visual-frame {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(245, 158, 11, 0.3);
}

.visual-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.frame-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.3) 0%, transparent 70%);
    filter: blur(20px);
    z-index: -1;
}

.frame-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.5) 100%);
}

/* Floating Elements */
.float-icon {
    position: absolute;
    color: var(--amber-400);
    opacity: 0.6;
    animation: float-element 3s ease-in-out infinite;
}

.float-1 { top: -10px; left: -20px; animation-delay: 0s; }
.float-2 { top: -10px; right: -20px; animation-delay: -1s; }
.float-3 { bottom: -10px; left: 20px; animation-delay: -0.5s; }
.float-4 { bottom: -10px; right: 20px; animation-delay: -1.5s; }

@keyframes float-element {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

/* Footer Text Styles */
.footer-text {
    text-align: center;
}

.footer-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.footer-text p {
    font-size: 0.95rem;
    color: var(--gray-400);
    max-width: 400px;
}

/* Enhanced Media Queries for Additional Styles */
@media (max-width: 768px) {
    .stat-num {
        font-size: 1.75rem;
    }

    .stat-divider {
        height: 30px;
    }

    .card-icon {
        width: 40px;
        height: 40px;
    }

    .visual-frame {
        width: 150px;
        height: 150px;
    }

    /* About Image Tablet */
    .about-image-wrapper img {
        height: 400px;
    }

    .about-image-glow {
        width: 200px;
        height: 200px;
    }

    .about-image-ring {
        width: 115%;
        height: 115%;
    }

    .about-image-badge {
        bottom: -18px;
        padding: 10px 16px;
    }
}

@media (max-width: 480px) {
    .stat-num {
        font-size: 1.5rem;
    }

    .stat-divider {
        display: none;
    }

    .journey-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .visual-frame {
        width: 120px;
        height: 120px;
    }
}

/* ===== Footer Actions for Timeline ===== */
.footer-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-glow {
    position: relative;
    overflow: visible;
}

.btn-glow::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
    border-radius: inherit;
    filter: blur(12px);
    opacity: 0.5;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.btn-glow:hover::before {
    opacity: 0.8;
}

/* Card Details padding */
.card-details {
    padding: 1.5rem;
}

/* Pink gradient text */
.gradient-text-pink {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 50%, #be185d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Social Badge */
.social-badge {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(219, 39, 119, 0.1));
    border-color: rgba(236, 72, 153, 0.3);
    color: #ec4899;
}

.social-badge svg {
    color: #ec4899;
}

/* Responsive footer actions */
@media (max-width: 480px) {
    .footer-actions {
        flex-direction: column;
        align-items: center;
    }

    .footer-actions .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* ===== Timeline Footer V2 - Premium Redesign ===== */
.timeline-footer-v2 {
    position: relative;
    margin-top: 5rem;
    padding: 4rem 0;
}

/* Background Effects */
.footer-bg-effects {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.footer-glow-left {
    position: absolute;
    top: 50%;
    left: -10%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
    filter: blur(60px);
}

.footer-glow-right {
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.12) 0%, transparent 70%);
    filter: blur(60px);
}

.footer-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(245, 158, 11, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 158, 11, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

/* Footer Card Wrapper */
.footer-card-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Footer Card */
.footer-card {
    position: relative;
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.95) 0%, rgba(15, 15, 15, 0.98) 100%);
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Card Border Glow */
.card-border-glow {
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.3) 0%, transparent 30%, transparent 70%, rgba(217, 119, 6, 0.3) 100%);
    border-radius: 1.5rem;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.footer-card:hover .card-border-glow {
    opacity: 1;
}

/* Footer Card Inner */
.footer-card-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: 400px;
}

/* Visual Side */
.footer-visual-side {
    position: relative;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-container {
    position: relative;
    width: 100%;
    max-width: 320px;
}

/* Visual Image Wrapper */
.visual-image-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.visual-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.footer-card:hover .visual-image-wrapper img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
}

/* Visual Stats */
.visual-stats {
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(245, 158, 11, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.visual-stat {
    text-align: center;
}

.vs-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vs-label {
    display: block;
    font-size: 0.65rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.125rem;
}

.vs-divider {
    width: 1px;
    height: 30px;
    background: linear-gradient(180deg, transparent, rgba(245, 158, 11, 0.3), transparent);
}

/* Visual Decorations */
.visual-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.deco-ring {
    position: absolute;
    border: 2px solid rgba(245, 158, 11, 0.2);
    border-radius: 50%;
}

.deco-ring-1 {
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    animation: rotate-slow 30s linear infinite;
}

.deco-ring-2 {
    width: 140%;
    height: 140%;
    top: -20%;
    left: -20%;
    border-style: dashed;
    animation: rotate-slow 40s linear infinite reverse;
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.deco-sparkle {
    position: absolute;
    color: var(--amber-400);
    animation: sparkle 2s ease-in-out infinite;
}

.deco-sparkle-1 {
    top: 10%;
    right: -5%;
    animation-delay: 0s;
}

.deco-sparkle-2 {
    bottom: 20%;
    left: -5%;
    animation-delay: -1s;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Content Side */
.footer-content-side {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

/* Footer Badge New */
.footer-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(217, 119, 6, 0.08));
    border: 1px solid rgba(245, 158, 11, 0.25);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    width: fit-content;
    margin-bottom: 1.25rem;
}

.footer-badge-new svg {
    color: var(--amber-400);
}

.footer-badge-new span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--amber-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Footer Title New */
.footer-title-new {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    margin-bottom: 1rem;
}

/* Footer Description */
.footer-desc-new {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

/* Footer Features */
.footer-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.1));
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    color: var(--amber-400);
    width: 14px;
    height: 14px;
}

.feature-item span {
    font-size: 0.9rem;
    color: var(--gray-300);
}

/* Footer CTA Buttons */
.footer-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
    color: var(--gray-900);
    font-size: 0.9rem;
    font-weight: 700;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-cta-primary::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
    border-radius: inherit;
    filter: blur(12px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.btn-cta-primary:hover::before {
    opacity: 0.5;
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: transparent;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(245, 158, 11, 0.4);
    color: var(--amber-400);
}

.btn-cta-secondary svg {
    transition: transform 0.3s ease;
}

.btn-cta-secondary:hover svg {
    transform: translateX(4px);
}

/* Responsive Timeline Footer V2 */
@media (max-width: 900px) {
    .footer-card-inner {
        grid-template-columns: 1fr;
    }

    .footer-visual-side {
        padding: 2rem 2rem 3rem;
    }

    .visual-container {
        max-width: 280px;
    }

    .footer-content-side {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding: 2.5rem 2rem;
    }

    .footer-title-new {
        font-size: 1.75rem;
    }
}

@media (max-width: 600px) {
    .timeline-footer-v2 {
        margin-top: 3rem;
        padding: 2rem 0;
    }

    .footer-card-wrapper {
        padding: 0 1rem;
    }

    .footer-visual-side {
        padding: 1.5rem 1.5rem 2.5rem;
    }

    .visual-container {
        max-width: 240px;
    }

    .visual-stats {
        padding: 0.75rem 1rem;
        gap: 0.75rem;
    }

    .vs-value {
        font-size: 1rem;
    }

    .footer-content-side {
        padding: 2rem 1.5rem;
    }

    .footer-title-new {
        font-size: 1.5rem;
    }

    .footer-desc-new {
        font-size: 0.875rem;
    }

    .footer-cta-buttons {
        flex-direction: column;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .deco-ring-1,
    .deco-ring-2 {
        display: none;
    }
}

@media (max-width: 400px) {
    .visual-stats {
        flex-direction: column;
        gap: 0.5rem;
    }

    .vs-divider {
        width: 30px;
        height: 1px;
    }

    .feature-item span {
        font-size: 0.85rem;
    }
}

/* ===== COMPREHENSIVE MOBILE RESPONSIVE FIXES ===== */

/* Mobile Large (max-width: 576px) */
@media (max-width: 576px) {
    /* Base adjustments */
    .container {
        padding: 0 1rem;
    }

    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    /* Buttons */
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }

    /* Badges */
    .badge {
        padding: 0.5rem 1rem;
        gap: 0.5rem;
    }

    .badge span {
        font-size: 0.7rem;
    }

    /* Hero Section Mobile */
    .hero-title {
        font-size: 2rem;
        padding: 0 0.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 0.1em;
    }

    .hero-content {
        padding: 1rem 0.5rem;
    }

    .scroll-indicator {
        bottom: 1.5rem;
    }

    .scroll-indicator span {
        font-size: 0.75rem;
    }

    /* Gallery Section Mobile */
    .gallery {
        padding: 3rem 0.5rem;
    }

    .gallery-item {
        height: 15rem;
    }

    .slider-btn {
        padding: 0.5rem;
        width: 36px;
        height: 36px;
    }

    .slider-btn svg {
        width: 18px;
        height: 18px;
    }

    .slider-btn.prev {
        left: 0.5rem;
    }

    .slider-btn.next {
        right: 0.5rem;
    }

    /* Video Gallery Mobile */
    .video-gallery {
        padding: 3rem 0.5rem;
    }

    .video-grid {
        gap: 1rem;
    }

    .video-thumbnail {
        aspect-ratio: 16 / 9;
    }

    .play-btn {
        width: 3.5rem;
        height: 3.5rem;
    }

    .play-btn svg {
        width: 28px;
        height: 28px;
    }

    .video-title {
        font-size: 1rem;
        margin: 0.75rem 0 0.25rem;
    }

    .duration, .category {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }

    /* Live Video Section Mobile */
    .live-video {
        padding: 3rem 0.5rem;
    }

    .live-indicator {
        top: 0.75rem;
        left: 0.75rem;
        padding: 0.35rem 0.75rem;
        font-size: 0.75rem;
    }

    .live-dot-white {
        width: 0.5rem;
        height: 0.5rem;
    }

    .viewer-count {
        top: 0.75rem;
        right: 0.75rem;
        padding: 0.35rem 0.75rem;
        font-size: 0.75rem;
    }

    .video-controls {
        padding: 1rem;
    }

    .video-info {
        padding: 1rem;
    }

    .video-info h3 {
        font-size: 1.125rem;
    }

    .video-info p {
        font-size: 0.875rem;
    }

    .video-actions {
        width: 100%;
    }

    .video-actions .btn {
        flex: 1;
        padding: 0.625rem 1rem;
        font-size: 0.8rem;
    }

    .live-stats {
        gap: 0.75rem;
        margin-top: 2rem;
    }

    .stat-card {
        padding: 1rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    /* Partnership Section Mobile */
    .partnership {
        padding: 3rem 0.5rem;
    }

    .partnership-hero {
        margin-bottom: 3rem;
    }

    .partnership-image-grid {
        height: 22rem;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 6px;
        padding: 6px;
    }

    .grid-card {
        border-radius: 8px;
        aspect-ratio: auto;
    }

    .partnership-hero-quote {
        padding: 1rem;
    }

    .quote-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .quote-author {
        font-size: 0.875rem;
    }

    .subsection-title {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .values-grid {
        gap: 1rem;
        margin-bottom: 3rem;
    }

    .value-card {
        padding: 1.25rem;
    }

    .value-icon {
        padding: 0.75rem;
    }

    .value-icon svg {
        width: 24px;
        height: 24px;
    }

    .value-card h4 {
        font-size: 1.125rem;
    }

    .value-card p {
        font-size: 0.875rem;
    }

    .stats-banner {
        margin-bottom: 3rem;
    }

    .stats-banner-content {
        padding: 1.25rem;
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-text {
        font-size: 0.7rem;
    }

    /* About Section Mobile */
    .about {
        padding: 3rem 0.5rem;
    }

    .about-grid {
        gap: 2rem;
    }

    .about-image {
        max-width: 100%;
    }

    .about-image-wrapper img {
        height: 20rem;
    }

    .about-image-glow {
        width: 180px;
        height: 180px;
        filter: blur(40px);
    }

    .about-image-glow.amber.top-left {
        top: -40px;
        left: -40px;
    }

    .about-image-glow.cyan.bottom-right {
        bottom: -40px;
        right: -40px;
    }

    .about-image-ring {
        width: 120%;
        height: 120%;
        border-width: 1px;
    }

    .about-image-wrapper::before {
        inset: -8px;
        border-radius: 24px;
    }

    .about-image-wrapper .corner-decor::before,
    .about-image-wrapper .corner-decor::after {
        width: 16px;
        height: 2px;
    }

    .about-image-wrapper .corner-decor::after {
        width: 2px;
        height: 16px;
    }

    .about-image-badge {
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        padding: 8px 14px;
        gap: 8px;
    }

    .about-image-badge-icon {
        width: 28px;
        height: 28px;
    }

    .about-image-badge-title {
        font-size: 0.65rem;
    }

    .about-image-badge-value {
        font-size: 0.85rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .achievements-title {
        font-size: 1.25rem;
    }

    .achievements {
        gap: 0.75rem;
    }

    .achievement-card {
        padding: 0.75rem;
    }

    .achievement-icon {
        padding: 0.5rem;
    }

    .achievement-icon svg {
        width: 18px;
        height: 18px;
    }

    .achievement-card span {
        font-size: 0.875rem;
    }

    /* Brand Section Mobile */
    .brand {
        padding: 3rem 0.5rem;
    }

    .brand-logo-section {
        margin-bottom: 2.5rem;
    }

    .brand-logo {
        padding: 1.5rem;
    }

    .brand-name {
        font-size: 2.5rem;
    }

    .brand-tagline {
        font-size: 1.25rem;
    }

    .brand-description {
        font-size: 1rem;
    }

    .brand-values {
        gap: 1rem;
        margin-bottom: 2.5rem;
    }

    .brand-value-card {
        padding: 1.25rem;
    }

    .brand-value-icon {
        padding: 0.75rem;
    }

    .brand-value-icon svg {
        width: 24px;
        height: 24px;
    }

    .brand-value-card h3 {
        font-size: 1.125rem;
    }

    .brand-value-card p {
        font-size: 0.8rem;
    }

    .brand-partnership {
        padding: 1.25rem;
        gap: 1.25rem;
    }

    .brand-partnership-content h3 {
        font-size: 1.25rem;
    }

    .brand-partnership-content p {
        font-size: 0.95rem;
    }

    /* Timeline V2 Section Mobile */
    .timeline-v2 {
        padding: 3rem 0;
    }

    .timeline-header {
        margin-bottom: 2rem;
    }

    .timeline-title {
        font-size: 1.5rem;
    }

    .timeline-subtitle {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .journey-stats {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        padding: 0 1rem;
    }

    .journey-stat {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        min-width: auto;
    }

    .stat-num {
        font-size: 1.25rem;
        order: 1;
    }

    .stat-label {
        font-size: 0.65rem;
        order: 2;
    }

    .stat-divider {
        display: none;
    }

    .timeline-immersive {
        padding: 0 0.75rem;
    }

    .timeline-track,
    .track-glow {
        left: 20px;
        transform: translateX(-50%);
    }

    .timeline-card,
    .timeline-card:nth-child(even) {
        padding-left: 50px;
    }

    .card-connector {
        left: 8px;
        transform: translateX(-50%);
    }

    .connector-dot {
        width: 14px;
        height: 14px;
    }

    .connector-dot::before {
        inset: -4px;
    }

    .card-media {
        aspect-ratio: 3/4;
        margin-bottom: 1rem;
        border-radius: 1rem;
    }

    .card-inner {
        padding: 0.75rem;
    }

    .card-details {
        padding: 0.5rem 0.25rem 0;
    }

    .card-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 0.75rem;
    }

    .card-icon svg {
        width: 18px;
        height: 18px;
    }

    .card-label {
        font-size: 0.65rem;
    }

    .card-title {
        font-size: 1.1rem;
    }

    .card-desc {
        font-size: 0.85rem;
    }

    .card-metrics {
        gap: 0.75rem;
    }

    .metric-value {
        font-size: 1rem;
    }

    .metric-label {
        font-size: 0.6rem;
    }

    .year-badge {
        top: 1rem;
        right: 1rem;
        padding: 0.5rem 0.875rem;
        font-size: 0.85rem;
        border-radius: 8px;
    }

    .coming-soon-badge {
        bottom: 0.5rem;
        left: 0.5rem;
        padding: 0.25rem 0.625rem;
        font-size: 0.6rem;
    }

    /* Timeline Footer V2 Mobile */
    .timeline-footer-v2 {
        margin-top: 2rem;
        padding: 1.5rem 0;
    }

    .footer-card-wrapper {
        padding: 0 0.75rem;
    }

    .footer-visual-side {
        padding: 1.25rem 1.25rem 2rem;
    }

    .visual-container {
        max-width: 200px;
    }

    .visual-stats {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        flex-direction: column;
        width: 100%;
        padding: 1rem;
        gap: 0.75rem;
        margin-top: 1rem;
        border-radius: 0.75rem;
    }

    .visual-stat {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        width: 100%;
    }

    .vs-value {
        font-size: 1.125rem;
        order: 2;
    }

    .vs-label {
        font-size: 0.7rem;
        order: 1;
    }

    .vs-divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.3), transparent);
    }

    .footer-content-side {
        padding: 1.5rem 1.25rem;
    }

    .footer-badge-new {
        padding: 0.375rem 0.75rem;
        margin-bottom: 1rem;
    }

    .footer-badge-new svg {
        width: 14px;
        height: 14px;
    }

    .footer-badge-new span {
        font-size: 0.65rem;
    }

    .footer-title-new {
        font-size: 1.25rem;
    }

    .footer-desc-new {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .footer-features {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .feature-icon {
        width: 24px;
        height: 24px;
    }

    .feature-icon svg {
        width: 12px;
        height: 12px;
    }

    .feature-item span {
        font-size: 0.8rem;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 0.75rem 1.25rem;
        font-size: 0.8rem;
    }

    /* Social Media Section Mobile */
    .social-media {
        padding: 3rem 0.5rem;
    }

    .social-grid {
        gap: 1rem;
        margin-bottom: 2.5rem;
    }

    .social-card-content {
        padding: 1.25rem;
    }

    .social-icon {
        padding: 0.75rem;
    }

    .social-icon svg {
        width: 24px;
        height: 24px;
    }

    .social-card h3 {
        font-size: 1.25rem;
    }

    .social-handle {
        font-size: 0.8rem;
    }

    .social-followers {
        font-size: 0.75rem;
        padding: 0.2rem 0.625rem;
    }

    .social-description {
        font-size: 0.8rem;
    }

    /* Social CTA Mobile */
    .social-cta-content {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .heart-icon svg {
        width: 36px;
        height: 36px;
    }

    .social-cta-main h3 {
        font-size: 1.25rem;
    }

    .social-cta-main p {
        font-size: 0.9rem;
    }

    .social-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .social-cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .social-cta-stats {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
        width: 100%;
    }

    .cta-stat {
        text-align: center;
    }

    .cta-stat-value {
        font-size: 1.5rem;
    }

    .cta-stat-label {
        font-size: 0.7rem;
    }

    /* Footer */
    .footer {
        margin-top: 2.5rem;
    }

    .footer p {
        font-size: 0.75rem;
        padding: 0 0.5rem;
    }

    /* Modals Mobile */
    .lightbox {
        padding: 0.5rem;
    }

    .lightbox-close,
    .video-modal-close {
        top: 0.5rem;
        right: 0.5rem;
    }

    .lightbox-close svg,
    .video-modal-close svg {
        width: 24px;
        height: 24px;
    }

    .video-modal {
        padding: 0.5rem;
    }

    .video-modal-info {
        padding: 1rem;
    }

    .video-modal-info h3 {
        font-size: 1.125rem;
    }

    /* Background glows - reduce on mobile for performance */
    .bg-glow {
        filter: blur(40px);
        opacity: 0.15;
    }

    .bg-glow.top-left,
    .bg-glow.bottom-right {
        width: 10rem;
        height: 10rem;
    }

    .bg-glow.center {
        width: 15rem;
        height: 15rem;
    }
}

/* Extra Small Mobile (max-width: 375px) */
@media (max-width: 375px) {
    .section-title {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .gallery-item {
        height: 12rem;
    }

    .video-thumbnail {
        aspect-ratio: 16 / 9;
    }

    .play-btn {
        width: 3rem;
        height: 3rem;
    }

    .play-btn svg {
        width: 24px;
        height: 24px;
    }

    .partnership-image-grid {
        height: 20rem;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 4px;
        padding: 4px;
    }

    .grid-card {
        border-radius: 6px;
        aspect-ratio: auto;
    }

    .quote-text {
        font-size: 0.875rem;
    }

    .about-image-wrapper img {
        height: 16rem;
    }

    .about-image-glow {
        width: 140px;
        height: 140px;
        filter: blur(30px);
    }

    .about-image-glow.amber.top-left {
        top: -30px;
        left: -30px;
    }

    .about-image-glow.cyan.bottom-right {
        bottom: -30px;
        right: -30px;
    }

    .about-image-ring {
        display: none;
    }

    .about-image-wrapper::before {
        inset: -6px;
        border-radius: 20px;
    }

    .about-image-wrapper .corner-decor {
        display: none;
    }

    .about-image-badge {
        bottom: -12px;
        padding: 6px 12px;
        gap: 6px;
    }

    .about-image-badge-icon {
        width: 24px;
        height: 24px;
    }

    .about-image-badge-icon svg {
        width: 12px;
        height: 12px;
    }

    .about-image-badge-title {
        font-size: 0.6rem;
    }

    .about-image-badge-value {
        font-size: 0.75rem;
    }

    .brand-name {
        font-size: 2rem;
    }

    .brand-tagline {
        font-size: 1.125rem;
    }

    .timeline-title {
        font-size: 1.35rem;
    }

    .stat-num {
        font-size: 1.125rem;
    }

    .card-title {
        font-size: 1rem;
    }

    .social-cta-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .cta-stat-value {
        font-size: 1.25rem;
    }

    .visual-stats {
        flex-direction: column;
        padding: 0.5rem 0.75rem;
        gap: 0.375rem;
    }

    .vs-divider {
        width: 25px;
        height: 1px;
    }

    .footer-title-new {
        font-size: 1.125rem;
    }
}

/* Landscape Mobile Orientation Fix */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 2rem 1rem;
    }

    .hero-content {
        justify-content: flex-start;
        padding-top: 3rem;
    }

    .scroll-indicator {
        position: relative;
        bottom: auto;
        margin-top: 2rem;
    }
}

/* Touch device hover state fixes */
@media (hover: none) and (pointer: coarse) {
    .gallery-item:hover img,
    .video-card:hover,
    .social-card:hover,
    .value-card:hover,
    .brand-value-card:hover,
    .achievement-card:hover,
    .stat-card:hover,
    .timeline-card:hover .card-inner {
        transform: none;
    }

    .gallery-item:hover .gallery-item-overlay,
    .video-card:hover .video-overlay,
    .social-card:hover .social-card-glow,
    .value-card:hover::before,
    .brand-value-card:hover::before,
    .timeline-card:hover .card-glow {
        opacity: 0;
    }

    .watch-now {
        opacity: 1;
    }

    .video-controls {
        opacity: 1;
    }
}

/* ===== Floating Next Ambassador Button ===== */
.floating-next-amb {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, var(--amber-500), var(--yellow-600));
    color: #0a0a0a;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-radius: 0.5rem 0 0 0.5rem;
    writing-mode: horizontal-tb;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
    cursor: pointer;
}

.floating-next-amb:hover {
    transform: translateY(-50%) translateX(-0.25rem);
    box-shadow: 0 6px 30px rgba(245, 158, 11, 0.6);
    padding-right: 1.5rem;
}

.floating-next-amb svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.floating-next-amb:hover svg {
    transform: translateX(3px);
}

@media (max-width: 767px) {
    .floating-next-amb {
        padding: 0.6rem;
        gap: 0;
        right: 0.25rem;
        width: 2.5rem;
        height: 2.5rem;
        justify-content: center;
        border-radius: 50%;
    }

    .floating-next-amb-text {
        display: none;
    }

    .floating-next-amb svg {
        width: 18px;
        height: 18px;
    }
}
