/**
 * AIFA Football Academy - Landing Page Styles
 * Version: 1.0
 */

/* ==========================================================================
   GLOBAL MOBILE OVERFLOW FIX
   ========================================================================== */
* {
    box-sizing: border-box;
}

.container,
.section,
.hero,
.footer {
    max-width: 100%;
    overflow-x: hidden;
}

/* Prevent text overflow */
h1, h2, h3, h4, h5, h6, p, a, span, li {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Ensure all images are contained */
img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

/* Ensure absolute elements don't cause overflow */
.hero,
.section,
.footer,
.about-section,
.programs-section,
.stats-section,
.facilities-section,
.coaches-section,
.testimonials-section,
.cta-section,
.gallery-section {
    position: relative;
    overflow: hidden;
}

/* ==========================================================================
   PRELOADER - Penalty Shootout Animation
   ========================================================================== */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0a1628 0%, #0d0d0d 100%);
    z-index: var(--z-max);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    overflow: hidden;
}

.preloader.loaded {
    animation: preloaderOut 0.8s ease-in-out forwards;
}

/* Penalty Scene Container */
.penalty-scene {
    position: relative;
    width: 400px;
    height: 280px;
    perspective: 1000px;
}

/* Stadium Lights */
.stadium-lights {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    display: flex;
    justify-content: space-between;
}

.light {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 20px 10px rgba(255, 255, 255, 0.3),
                0 0 60px 30px rgba(255, 255, 255, 0.1);
    animation: lightsFlicker 0.1s ease-in-out infinite alternate;
}

.light-1 { animation-delay: 0s; }
.light-2 { animation-delay: 0.05s; }
.light-3 { animation-delay: 0.1s; }

/* Field Ground */
.field-ground {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(180deg, #1a472a 0%, #0d2818 100%);
    border-radius: 0 0 10px 10px;
}

.field-ground::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-bottom: none;
    border-radius: 60px 60px 0 0;
}

/* Goal Post - 3D Effect */
.penalty-goal {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 140px;
}

.goal-frame {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.goal-top {
    position: absolute;
    top: 0;
    left: -5px;
    right: -5px;
    height: 10px;
    background: linear-gradient(180deg, #ffffff 0%, #d0d0d0 100%);
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.goal-left,
.goal-right {
    position: absolute;
    top: 0;
    width: 10px;
    height: 100%;
    background: linear-gradient(90deg, #d0d0d0 0%, #ffffff 50%, #d0d0d0 100%);
    border-radius: 5px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
}

.goal-left { left: -5px; }
.goal-right { right: -5px; }

/* Goal Net - Back */
.goal-net-back {
    position: absolute;
    top: 10px;
    left: 5px;
    right: 5px;
    bottom: 0;
    background:
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            transparent 8px,
            rgba(255, 255, 255, 0.15) 8px,
            rgba(255, 255, 255, 0.15) 10px
        ),
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 8px,
            rgba(255, 255, 255, 0.15) 8px,
            rgba(255, 255, 255, 0.15) 10px
        );
    transform: perspective(500px) rotateX(5deg);
    transform-origin: top;
}

/* Goal Net Sides */
.goal-net-side-left,
.goal-net-side-right {
    position: absolute;
    top: 10px;
    width: 30px;
    height: 100%;
    background:
        repeating-linear-gradient(
            -60deg,
            transparent 0px,
            transparent 6px,
            rgba(255, 255, 255, 0.1) 6px,
            rgba(255, 255, 255, 0.1) 8px
        );
}

.goal-net-side-left {
    left: -25px;
    transform: perspective(200px) rotateY(45deg);
}

.goal-net-side-right {
    right: -25px;
    transform: perspective(200px) rotateY(-45deg);
}

/* Goalkeeper */
.goalkeeper {
    position: absolute;
    bottom: 75px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    animation: keeperReady 0.5s ease-out forwards,
               keeperDive 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards 1s;
}

.keeper-body {
    position: relative;
    width: 50px;
    height: 80px;
}

.keeper-head {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 18px;
    background: linear-gradient(180deg, #ffd5b5 0%, #e5b090 100%);
    border-radius: 50%;
}

.keeper-torso {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 32px;
    background: linear-gradient(180deg, #d4a418 0%, #b8920f 100%);
    border-radius: 5px 5px 3px 3px;
}

.keeper-arm-left,
.keeper-arm-right {
    position: absolute;
    top: 18px;
    width: 8px;
    height: 28px;
    background: linear-gradient(180deg, #d4a418 0%, #b8920f 100%);
    border-radius: 4px;
    transform-origin: top center;
}

.keeper-arm-left {
    left: 3px;
    transform: rotate(-20deg);
}

.keeper-arm-right {
    right: 3px;
    transform: rotate(20deg);
}

.keeper-glove-left,
.keeper-glove-right {
    position: absolute;
    top: 42px;
    width: 12px;
    height: 12px;
    background: #ff6b35;
    border-radius: 3px;
}

.keeper-glove-left {
    left: -2px;
}

.keeper-glove-right {
    right: -2px;
}

.keeper-leg-left,
.keeper-leg-right {
    position: absolute;
    top: 46px;
    width: 10px;
    height: 30px;
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
    border-radius: 3px;
}

.keeper-leg-left {
    left: 10px;
}

.keeper-leg-right {
    right: 10px;
}

/* Football */
.penalty-ball {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    z-index: 15;
    animation: ballShoot 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards 1.2s;
}

.ball-inner {
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 30%, #ffffff 0%, #e0e0e0 100%);
    border-radius: 50%;
    box-shadow:
        inset -3px -3px 8px rgba(0, 0, 0, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.4);
    position: relative;
    animation: ballSpin 0.8s linear forwards 1.2s;
}

.ball-inner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #1a1a2e;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

/* Ball Shadow */
.ball-shadow {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 6px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    filter: blur(2px);
    animation: shadowMove 0.8s ease forwards 1.2s;
}

/* Net Bulge Effect */
.net-bulge {
    position: absolute;
    bottom: 100px;
    right: 60px;
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    animation: netBulge 0.4s ease-out forwards 1.9s;
}

/* Goal Celebration */
.goal-celebration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 4px;
    z-index: 20;
}

.goal-celebration span {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--primary);
    text-shadow:
        0 0 20px rgba(59, 130, 246, 0.8),
        0 0 40px rgba(59, 130, 246, 0.5),
        0 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px) scale(0);
    animation: letterPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.goal-celebration span:nth-child(1) { animation-delay: 2s; }
.goal-celebration span:nth-child(2) { animation-delay: 2.08s; }
.goal-celebration span:nth-child(3) { animation-delay: 2.16s; }
.goal-celebration span:nth-child(4) { animation-delay: 2.24s; }
.goal-celebration span:nth-child(5) { animation-delay: 2.32s; }

/* Confetti */
.confetti-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    opacity: 0;
}

.c1, .c5 { background: var(--primary); }
.c2, .c6 { background: #fff; }
.c3, .c7 { background: #ff6b35; }
.c4, .c8 { background: #4ade80; }

.c1 { left: 20%; animation: confettiFall 1.5s ease-out forwards 2.1s; }
.c2 { left: 35%; animation: confettiFall 1.5s ease-out forwards 2.15s; }
.c3 { left: 50%; animation: confettiFall 1.5s ease-out forwards 2.2s; }
.c4 { left: 65%; animation: confettiFall 1.5s ease-out forwards 2.25s; }
.c5 { left: 80%; animation: confettiFall 1.5s ease-out forwards 2.3s; }
.c6 { left: 25%; animation: confettiFall 1.5s ease-out forwards 2.35s; }
.c7 { left: 55%; animation: confettiFall 1.5s ease-out forwards 2.4s; }
.c8 { left: 75%; animation: confettiFall 1.5s ease-out forwards 2.45s; }

/* Preloader Logo & Line */
.preloader-logo {
    width: clamp(100px, 20vw, 140px);
    height: auto;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards 2.6s;
}

.preloader-line {
    width: 180px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.3s ease forwards 2.8s;
}

.preloader-line::after {
    content: '';
    display: block;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-full);
    animation: loadLine 0.8s ease forwards 3s;
}

/* ========== KEYFRAME ANIMATIONS ========== */

@keyframes lightsFlicker {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

@keyframes keeperReady {
    0% { transform: translateX(-50%) translateY(20px); opacity: 0; }
    100% { transform: translateX(-50%) translateY(0); opacity: 1; }
}

@keyframes keeperDive {
    0% {
        transform: translateX(-50%) rotate(0deg);
    }
    100% {
        transform: translateX(calc(-50% + 80px)) rotate(25deg) translateY(-20px);
    }
}

@keyframes ballShoot {
    0% {
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%) scale(1);
    }
    30% {
        bottom: 140px;
        left: 52%;
        transform: translateX(-50%) scale(0.7);
    }
    60% {
        bottom: 160px;
        left: 68%;
        transform: translateX(-50%) scale(0.5);
    }
    100% {
        bottom: 120px;
        left: 72%;
        transform: translateX(-50%) scale(0.4);
    }
}

@keyframes ballSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(1080deg); }
}

@keyframes shadowMove {
    0% {
        bottom: 25px;
        left: 50%;
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
    100% {
        bottom: 70px;
        left: 72%;
        opacity: 0;
        transform: translateX(-50%) scale(0.3);
    }
}

@keyframes netBulge {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
    100% {
        opacity: 0.5;
        transform: scale(1);
    }
}

@keyframes letterPop {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0);
    }
    60% {
        transform: translateY(-5px) scale(1.2);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes confettiFall {
    0% {
        top: 40%;
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
    100% {
        top: 100%;
        opacity: 0;
        transform: rotate(720deg) scale(0.5);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes loadLine {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes preloaderOut {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-100%);
    }
}

/* Responsive */
@media (max-width: 480px) {
    .penalty-scene {
        width: 320px;
        height: 240px;
        transform: scale(0.85);
    }

    .goal-celebration span {
        font-size: 2rem;
    }

    .keeper-body {
        transform: scale(0.8);
    }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    filter: brightness(0.55) saturate(1.2);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        linear-gradient(225deg, rgba(240, 201, 41, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.8) 100%);
    z-index: 1;
}

/* Orbs - contained within viewport */
.orb-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: 0;
    transform: translateX(-50%);
}

.orb-2 {
    width: 500px;
    height: 500px;
    bottom: -20%;
    right: 0;
    transform: translateX(50%);
    animation-delay: -4s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    right: 10%;
    animation-delay: -2s;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 20;
    padding: 160px 5% 0 5%;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-6);
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
    margin-bottom: var(--space-8);
    backdrop-filter: blur(10px);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: var(--radius-full);
    animation: pulseGlow 2s ease infinite;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 6vw, 80px);
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: var(--space-6);
}

.hero-description {
    font-size: var(--text-lg);
    color: var(--glass-white-60);
    max-width: 500px;
    margin-bottom: var(--space-10);
}

.hero-buttons {
    display: flex;
    gap: var(--space-5);
    flex-wrap: wrap;
}

.play-icon {
    width: 45px;
    height: 45px;
    background: var(--secondary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--space-2);
    transition: all var(--transition-fast);
}

.play-icon svg {
    width: 14px;
    height: 14px;
    fill: var(--darker);
    margin-left: 3px;
}

.btn-outline:hover .play-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255,255,255,0.3);
}

/* Hero Stats */
.hero-stats {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    z-index: 10;
}

.hero-stat {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    padding: var(--space-6) var(--space-8);
    min-width: 180px;
    transition: all var(--transition-fast);
}

.hero-stat:hover {
    transform: translateX(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-card-gold);
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: var(--text-5xl);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.hero-stat-label {
    font-size: var(--text-xs);
    color: var(--glass-white-50);
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
    margin-top: var(--space-1);
}

/* Hero News & Events Panel */
.hero-news-panel {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 380px;
    max-height: 450px;
    background: var(--glass);
    backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    z-index: 10;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hero-panel-header {
    display: flex;
    align-items: center;
    padding: var(--space-5) var(--space-6);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-bottom: 1px solid var(--glass-border);
}

.hero-panel-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-panel-icon svg {
    width: 24px;
    height: 24px;
    stroke: #1a1a1a;
    stroke-width: 2;
}

.hero-panel-title h3 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--bg-dark);
    margin: 0;
    letter-spacing: 0.5px;
}

.hero-panel-title p {
    font-size: var(--text-xs);
    color: rgba(0, 0, 0, 0.6);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: var(--tracking-widest);
}

.hero-panel-content {
    padding: var(--space-4);
    max-height: 400px;
    overflow-y: auto;
}

.hero-panel-content::-webkit-scrollbar {
    width: 4px;
}

.hero-panel-content::-webkit-scrollbar-track {
    background: var(--glass);
}

.hero-panel-content::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: var(--radius-full);
}

.hero-panel-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-4);
    border-radius: var(--radius-xl);
    text-decoration: none;
    color: var(--text);
    transition: all var(--transition-fast);
    margin-bottom: var(--space-3);
    border: 1px solid transparent;
}

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

.hero-panel-item:hover {
    background: var(--glass);
    border-color: var(--glass-border);
    transform: translateX(-5px);
}

.hero-panel-item-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-panel-item-icon.announcement {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.hero-panel-item-icon.achievement {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.hero-panel-item-icon.news {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.hero-panel-item-icon svg {
    width: 18px;
    height: 18px;
    stroke: white;
}

.hero-panel-event-date {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-panel-event-date .day {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--bg-dark);
    line-height: 1;
}

.hero-panel-event-date .month {
    font-size: 10px;
    font-weight: 700;
    color: var(--bg-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-panel-item-content {
    flex: 1;
    min-width: 0;
}

.hero-panel-item-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: var(--tracking-widest);
    margin-bottom: var(--space-1);
}

.hero-panel-item-tag.event {
    color: var(--secondary);
}

.hero-panel-item-content h4 {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text);
    margin: 0 0 var(--space-1) 0;
    line-height: 1.3;
}

.hero-panel-item-content p {
    font-size: var(--text-xs);
    color: var(--glass-white-60);
    margin: 0 0 var(--space-2) 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-panel-item-date,
.hero-panel-item-venue {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    font-size: 10px;
    color: var(--glass-white-50);
}

.hero-panel-item-date svg,
.hero-panel-item-venue svg {
    width: 12px;
    height: 12px;
    stroke: var(--glass-white-50);
}

.hero-panel-item-arrow {
    width: 28px;
    height: 28px;
    background: var(--glass);
    border-radius: var(--radius-full);
    display: none;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.hero-panel-item:hover .hero-panel-item-arrow {
    display: flex;
}

.hero-panel-item-arrow svg {
    width: 14px;
    height: 14px;
    stroke: var(--primary);
}

/* Empty State */
.hero-panel-empty {
    text-align: center;
    padding: var(--space-8) var(--space-4);
}

.hero-panel-empty-icon {
    width: 64px;
    height: 64px;
    background: var(--glass);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
}

.hero-panel-empty-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary);
}

.hero-panel-empty h4 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--text);
    margin: 0 0 var(--space-2) 0;
}

.hero-panel-empty p {
    font-size: var(--text-sm);
    color: var(--glass-white-60);
    margin: 0;
    line-height: 1.5;
}

/* Footer Links */
.hero-panel-footer {
    display: flex;
    border-top: 1px solid var(--glass-border);
}

.hero-panel-link {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
    transition: all var(--transition-fast);
}

.hero-panel-link:first-child {
    border-right: 1px solid var(--glass-border);
}

.hero-panel-link:hover {
    background: var(--glass);
    color: var(--primary);
}

.hero-panel-link svg {
    width: 14px;
    height: 14px;
    transition: transform var(--transition-fast);
}

.hero-panel-link:hover svg {
    transform: translateX(3px);
}

/* Legacy classes for backwards compatibility */
.hero-news-events {
    display: none;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-10);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
    z-index: 10;
}

.scroll-indicator span {
    font-size: var(--text-xs);
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
    color: var(--glass-white-50);
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--glass-white-30);
    border-radius: 15px;
    position: relative;
}

.scroll-mouse::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: var(--radius-full);
    animation: scrollMouse 2s ease infinite;
}

/* Hero Slider */
.hero-slider-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 10;
}

.hero-slide .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    filter: brightness(0.4) saturate(1.2);
    transform: none;
}

.hero-slide .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        linear-gradient(225deg, rgba(240, 201, 41, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, transparent 0%, var(--darker) 100%);
}

.hero-slide .hero-content {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    max-width: 800px;
    padding: 0;
    padding-top: 40px;
}

/* Slider Navigation - Football Scoreboard Style */
.hero-slider-dots {
    position: absolute;
    bottom: 40px;
    left: 5%;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 20;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-slider-dots::before {
    content: 'SLIDE';
    font-family: var(--font-heading);
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--glass-white-50);
    margin-right: 12px;
}

.hero-dot {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
}

.hero-dot::after {
    content: attr(data-slide);
    counter-increment: slide;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
}

.hero-dot.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #1a1a1a;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.hero-dot.active::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid var(--primary);
}

/* Slider Arrows */
.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all var(--transition-fast);
    backdrop-filter: blur(10px);
}

.hero-slider-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.hero-slider-arrow svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
}

.hero-slider-prev {
    left: 20px;
}

.hero-slider-next {
    right: 20px;
}

@media (max-width: 768px) {
    /* Ensure non-active slides are completely hidden on mobile */
    .hero-slide:not(.active) {
        display: none;
    }

    .hero-slider-arrow {
        display: none;
    }

    /* Hide slider dots on mobile - swipe is expected behavior */
    .hero-slider-dots {
        display: none;
    }

    .hero-slide .hero-content {
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
        left: 0;
        padding: 20px;
        padding-top: 60px;
        max-width: 100%;
    }
}

/* ==========================================================================
   MARQUEE
   ========================================================================== */

.marquee-wrapper {
    background: var(--primary);
    padding: var(--space-5) 0;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: var(--space-16);
    padding-right: var(--space-16);
}

.marquee-item {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--darker);
    letter-spacing: var(--tracking-wider);
    display: flex;
    align-items: center;
    gap: var(--space-4);
    white-space: nowrap;
}

.marquee-dot {
    width: 8px;
    height: 8px;
    background: var(--darker);
    border-radius: var(--radius-full);
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */

.about-section {
    background: linear-gradient(180deg, var(--darker) 0%, #050505 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-20);
    align-items: center;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: var(--space-6);
}

.tag-line {
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.about-title {
    font-family: var(--font-heading);
    font-size: clamp(40px, 6vw, 70px);
    line-height: 1;
    margin-bottom: var(--space-8);
}

.about-text {
    font-size: var(--text-lg);
    color: var(--glass-white-60);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-10);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
}

.about-feature {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-5);
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    transition: all var(--transition-fast);
}

.about-feature:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--darker);
}

.about-feature span {
    font-weight: var(--font-medium);
    font-size: var(--text-sm);
}

/* About Images */
.about-images {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.about-image {
    position: absolute;
    border-radius: var(--radius-3xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.1);
}

.about-img-1 {
    width: 320px;
    height: 420px;
    top: 0;
    left: 0;
    z-index: 2;
}

.about-img-2 {
    width: 280px;
    height: 360px;
    bottom: 50px;
    right: 0;
    z-index: 1;
}

.about-experience {
    position: absolute;
    bottom: 150px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: var(--space-8) var(--space-10);
    border-radius: var(--radius-2xl);
    text-align: center;
    z-index: 3;
    box-shadow: var(--shadow-glow-xl);
}

.about-experience-number {
    font-family: var(--font-heading);
    font-size: var(--text-6xl);
    color: var(--darker);
    line-height: 1;
}

.about-experience-text {
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    color: var(--darker);
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
}

/* ==========================================================================
   PROGRAMS SECTION
   ========================================================================== */

.programs-section {
    background: var(--darker);
    padding-bottom: 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(40px, 8vw, 80px);
    line-height: 1;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    max-width: 1400px;
    margin: 0 auto;
}

.program-card {
    position: relative;
    height: 550px;
    overflow: hidden;
    cursor: pointer;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--glass-white-10), transparent);
}

.program-card:first-child::before {
    display: none;
}

.program-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%) brightness(0.4);
    transition: all var(--transition-slow);
}

.program-card:hover .program-bg {
    filter: grayscale(0%) brightness(0.5);
    transform: scale(1.1);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 30%, var(--darker) 100%);
}

.program-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-10);
    z-index: 2;
}

.program-number {
    font-family: var(--font-heading);
    font-size: 100px;
    color: var(--glass-white-3);
    position: absolute;
    top: var(--space-5);
    right: var(--space-5);
    line-height: 1;
    transition: color var(--transition-fast);
}

.program-card:hover .program-number {
    color: var(--glass-primary-10);
}

.program-title {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    margin-top: var(--space-5);
    margin-bottom: var(--space-4);
    transition: color var(--transition-fast);
}

.program-card:hover .program-title {
    color: var(--primary);
}

.program-desc {
    font-size: var(--text-sm);
    color: var(--glass-white-60);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-6);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all var(--transition-normal);
}

.program-card:hover .program-desc {
    max-height: 100px;
    opacity: 1;
}

.program-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    color: var(--primary);
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-normal) 0.1s;
}

.program-card:hover .program-link {
    opacity: 1;
    transform: translateY(0);
}

.program-link svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-fast);
}

.program-link:hover svg {
    transform: translate(5px, -5px);
}

/* ==========================================================================
   STATS SECTION
   ========================================================================== */

.stats-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: var(--space-20) 5%;
    position: relative;
    overflow: hidden;
}

.stats-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 20vw;
    color: rgba(0,0,0,0.08);
    white-space: nowrap;
    pointer-events: none;
}

.stats-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-12);
    position: relative;
    z-index: 2;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(50px, 8vw, 90px);
    color: #fff;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: #fff;
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
    margin-top: var(--space-3);
}

/* ==========================================================================
   GALLERY SECTION
   ========================================================================== */

.gallery-section {
    padding: var(--space-20) 0;
    overflow: hidden;
    background: var(--darker);
}

.gallery-scroll {
    display: flex;
    gap: var(--space-6);
}

.gallery-item {
    flex-shrink: 0;
    width: 350px;
    height: 450px;
    border-radius: var(--radius-2xl);
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(50%);
    transition: all var(--transition-normal);
}

.gallery-item:hover img {
    filter: grayscale(0%);
}

/* ==========================================================================
   COACHES SECTION
   ========================================================================== */

.coaches-section {
    background: linear-gradient(180deg, var(--darker) 0%, #050505 100%);
}

/* Homepage coaches grid - use higher specificity to override pages.css */
.coaches-section .coaches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.coaches-section .coach-card {
    position: relative;
    height: 500px;
    border-radius: var(--radius-3xl);
    overflow: hidden;
    cursor: pointer;
    background: transparent;
}

.coaches-section .coach-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    filter: grayscale(100%);
    transition: all var(--transition-slow);
}

.coaches-section .coach-card:hover .coach-bg {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.coaches-section .coach-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 50%, var(--darker) 100%);
}

.coaches-section .coach-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-8);
    z-index: 2;
}

.coaches-section .coach-name {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    margin-top: var(--space-4);
    margin-bottom: var(--space-1);
}

.coaches-section .coach-role {
    font-size: var(--text-sm);
    color: var(--glass-white-60);
}

.coaches-section .coach-socials {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-5);
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-normal);
}

.coaches-section .coach-card:hover .coach-socials {
    opacity: 1;
    transform: translateY(0);
}

.coaches-section .coach-social {
    width: 40px;
    height: 40px;
    background: var(--glass-white-10);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    transition: all var(--transition-fast);
}

.coach-social:hover {
    background: var(--primary);
    color: var(--darker);
    transform: translateY(-5px);
}

.coach-social svg {
    width: 16px;
    height: 16px;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */

.testimonials-section {
    background: var(--darker);
}

.testimonials-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    position: relative;
    padding: var(--space-16) var(--space-16);
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-3xl);
    backdrop-filter: blur(20px);
}

.testimonial-quote {
    position: absolute;
    top: var(--space-8);
    left: var(--space-10);
    font-family: var(--font-accent);
    font-size: 120px;
    color: var(--primary);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-text {
    font-size: var(--text-xl);
    line-height: var(--leading-relaxed);
    color: var(--glass-white-90);
    margin-bottom: var(--space-10);
    position: relative;
    z-index: 2;
    font-weight: var(--font-light);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-5);
}

.testimonial-avatar {
    width: 65px;
    height: 65px;
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 3px solid var(--primary);
}

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

.testimonial-info h4 {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-1);
}

.testimonial-info p {
    font-size: var(--text-sm);
    color: var(--primary);
}

.testimonial-rating {
    margin-left: auto;
    display: flex;
    gap: var(--space-1);
}

.testimonial-rating svg {
    width: 18px;
    height: 18px;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    margin-top: var(--space-10);
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */

.cta-section {
    padding: var(--space-24) 5%;
}

.cta-box {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    background: linear-gradient(135deg, var(--glass-primary-15), var(--glass-primary-10));
    border: 1px solid var(--glass-primary-30);
    border-radius: var(--radius-4xl);
    padding: var(--space-20) var(--space-16);
    text-align: center;
    overflow: hidden;
}

.cta-bg-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 350px;
    opacity: 0.05;
    pointer-events: none;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(50px, 10vw, 100px);
    line-height: 1;
    margin-bottom: var(--space-6);
    position: relative;
    z-index: 2;
}

.cta-text {
    font-size: var(--text-lg);
    color: var(--glass-white-70);
    max-width: 550px;
    margin: 0 auto var(--space-10);
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-5);
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    background: var(--darker);
    padding: var(--space-16) 5% var(--space-10);
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-16);
    margin-bottom: var(--space-16);
}

.footer-logo img {
    height: 120px;
    width: auto;
}

.footer-brand-name {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--white);
    margin-top: var(--space-4);
    letter-spacing: 0.5px;
}

.footer-brand p {
    color: var(--glass-white-50);
    line-height: var(--leading-relaxed);
    margin: var(--space-6) 0;
    font-size: var(--text-sm);
}

.footer-socials {
    display: flex;
    gap: var(--space-3);
}

.footer-social {
    width: 45px;
    height: 45px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    transition: all var(--transition-fast);
}

.footer-social:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--darker);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-column h4 {
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: var(--space-6);
}

.footer-links li {
    margin-bottom: var(--space-3);
}

.footer-links a {
    color: var(--glass-white-50);
    font-size: var(--text-sm);
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: var(--space-2);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    color: var(--glass-white-50);
    font-size: var(--text-sm);
}

.footer-contact svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-10);
    border-top: 1px solid var(--glass-border);
}

.footer-bottom p {
    color: var(--glass-white-40);
    font-size: var(--text-sm);
}

.footer-bottom a {
    color: var(--primary);
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin: var(--space-3) 0;
}

.footer-legal-links a {
    color: var(--glass-white-60);
    font-size: var(--text-sm);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-legal-links a:hover {
    color: var(--primary);
}

.footer-legal-links span {
    color: var(--glass-white-40);
    font-size: var(--text-xs);
}

/* ==========================================================================
   WHATSAPP & BACK TO TOP
   ========================================================================== */

.whatsapp-float {
    position: fixed;
    bottom: 100px; /* Above chatbot button */
    right: var(--space-6);
    width: 50px;
    height: 50px;
    background: #25D366;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 9998; /* Below chatbot */
    transition: all var(--transition-fast);
}

.whatsapp-float:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 26px;
    height: 26px;
    fill: #fff;
}

.back-to-top {
    position: fixed;
    bottom: var(--space-8);
    left: var(--space-8);
    width: 50px;
    height: 50px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    z-index: var(--z-fixed);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-fast);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary);
    color: var(--darker);
    border-color: var(--primary);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   FLOATING FEDERATION LOGOS
   ========================================================================== */

.hero-federation-logos {
    position: absolute;
    left: var(--space-8);
    bottom: var(--space-12);
    display: flex;
    gap: var(--space-4);
    z-index: 20;
}

.federation-logo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
}

.federation-logo-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.federation-logo-card img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.federation-logo-card span {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ==========================================================================
   TOURNAMENT SCOREBOARD PANEL
   ========================================================================== */

.hero-scoreboard-panel {
    position: absolute;
    right: 40px;
    top: 40%;
    transform: translateY(-50%);
    width: 340px;
    max-height: 70vh;
    background: linear-gradient(135deg, rgba(45, 35, 15, 0.98) 0%, rgba(30, 25, 10, 0.98) 100%);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 175, 55, 0.1);
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 100;
}

.scoreboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-3) var(--space-4);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(184, 134, 11, 0.15) 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.scoreboard-title {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.scoreboard-title svg {
    width: 22px;
    height: 22px;
    stroke: #d4af37;
}

.scoreboard-title h3 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    color: #fff;
    margin: 0;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-1) var(--space-3);
    background: rgba(239, 68, 68, 0.2);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    color: #ef4444;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

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

.scoreboard-content {
    padding: var(--space-3);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.tournament-badge-header {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-1) var(--space-2);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Sky Sports Style Match Card */
.match-card-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(60, 50, 25, 0.9) 0%, rgba(40, 35, 15, 0.95) 100%);
    border-radius: var(--radius-lg);
    padding: var(--space-3) var(--space-2);
    margin-bottom: var(--space-2);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.match-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d4af37 0%, #f4d03f 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.match-card-new:hover::before {
    opacity: 1;
}

.match-card-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.4);
}

.match-card-new:last-child {
    margin-bottom: 0;
}

.match-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-1);
    flex: 1;
    min-width: 60px;
}

.team-logo-large {
    width: 65px;
    height: 65px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s ease;
}

.match-card-new:hover .team-logo-large {
    border-color: rgba(212, 175, 55, 0.6);
    transform: scale(1.05);
}

.team-logo-large img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.team-initial-large {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.team-name-below {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    max-width: 70px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.match-score-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-1);
    padding: 0 var(--space-2);
}

.score-display {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.score-num {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    min-width: 24px;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    line-height: 1;
}

.score-num.winner {
    color: #22c55e;
}

.score-dash {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
}

.match-status-text {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Old match card styles kept for backwards compatibility */
.match-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-4);
    margin-bottom: var(--space-3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.match-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

.match-card.live {
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 0 25px rgba(239, 68, 68, 0.2), inset 0 0 30px rgba(239, 68, 68, 0.05);
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { box-shadow: 0 0 25px rgba(239, 68, 68, 0.2); }
    50% { box-shadow: 0 0 35px rgba(239, 68, 68, 0.35); }
}

.match-card:last-child {
    margin-bottom: 0;
}

.match-tournament {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-2);
}

.match-status {
    position: absolute;
    top: var(--space-3);
    right: var(--space-3);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
}

.match-status.live {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.match-status.ft {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.match-status.upcoming {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.live-pulse {
    width: 6px;
    height: 6px;
    background: #ef4444;
    border-radius: 50%;
    animation: livePulse 1s ease-in-out infinite;
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2);
}

.team {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    flex: 1;
}

.team.home {
    justify-content: flex-start;
}

.team.away {
    justify-content: flex-end;
}

.team-logo {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.team-logo img {
    width: 85%;
    height: 85%;
    object-fit: contain;
}

.team-initial {
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.team-name {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.match-score {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    padding: var(--space-2) var(--space-4);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
    border-radius: var(--radius-lg);
    min-width: 80px;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.score {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    min-width: 24px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.score.winner {
    color: #22c55e;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.score-divider {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

.match-time {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.scoreboard-empty {
    text-align: center;
    padding: var(--space-8) var(--space-4);
    color: rgba(255, 255, 255, 0.5);
}

.scoreboard-empty svg {
    width: 50px;
    height: 50px;
    margin-bottom: var(--space-3);
    stroke: rgba(255, 255, 255, 0.3);
}

.scoreboard-empty h4 {
    font-size: var(--text-base);
    margin-bottom: var(--space-2);
    color: rgba(255, 255, 255, 0.7);
}

.scoreboard-empty p {
    font-size: var(--text-sm);
}

.major-tournaments {
    padding: var(--space-4) var(--space-5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 107, 53, 0.05) 100%);
}

.major-tournaments h4 {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-3);
}

.major-tournament-card {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-2);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.major-tournament-card:last-child {
    margin-bottom: 0;
}

.tournament-badge {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 107, 53, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.tournament-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tournament-badge svg {
    width: 22px;
    height: 22px;
    stroke: #ffd700;
}

.tournament-info {
    flex: 1;
}

.tournament-info h5 {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
}

.tournament-dates {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.tournament-status {
    font-size: 9px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tournament-status.ongoing {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.tournament-status.upcoming {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

/* ==========================================================================
   NEWS & EVENTS MARQUEE
   ========================================================================== */

.news-marquee-wrapper {
    background: linear-gradient(90deg, #0a1628 0%, #1a2744 50%, #0a1628 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.news-marquee-label {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    background: linear-gradient(135deg, var(--primary) 0%, #2563eb 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.news-marquee-label svg {
    width: 16px;
    height: 16px;
}

.news-marquee-track {
    display: flex;
    overflow: hidden;
    flex: 1;
}

.news-marquee-content {
    display: flex;
    align-items: center;
    animation: newsMarquee 40s linear infinite;
}

.news-marquee-content:hover {
    animation-play-state: paused;
}

@keyframes newsMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.news-marquee-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-2) var(--space-6);
    text-decoration: none;
    white-space: nowrap;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.news-marquee-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.news-tag {
    font-size: 9px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.news-tag.event {
    background: rgba(249, 115, 22, 0.2);
    color: #f97316;
}

.news-title {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
}

.news-date {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1200px) {
    .hero-stats,
    .hero-news-events,
    .hero-news-panel,
    .hero-scoreboard-panel,
    .hero-federation-logos {
        display: none;
    }

    .programs-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }

    .about-images {
        height: 450px;
    }

    .coaches-section .coaches-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-section .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(24px, 7vw, 40px);
    }

    .hero-buttons {
        flex-direction: column;
        gap: var(--space-3);
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-slider-arrow {
        display: none;
    }

    .hero-slider-prev {
        left: var(--space-3);
    }

    .hero-slider-next {
        right: var(--space-3);
    }

    .scroll-indicator {
        display: none;
    }

    .programs-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
        padding: 0 var(--space-4);
    }

    .program-card {
        height: 350px;
    }

    .program-number {
        font-size: 4rem;
        top: var(--space-3);
        right: var(--space-3);
    }

    .program-content {
        padding: var(--space-5);
    }

    .coaches-section {
        padding: var(--space-12) 0;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .coaches-section .coaches-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: var(--space-4);
        padding: 0 var(--space-4);
        width: 100% !important;
        max-width: 100% !important;
    }

    .coaches-section .coaches-grid.container {
        padding-left: var(--space-4) !important;
        padding-right: var(--space-4) !important;
    }

    .coaches-section .coach-card {
        width: 100% !important;
        height: 380px !important;
        min-height: 380px !important;
        display: block !important;
        position: relative !important;
        opacity: 1 !important;
        visibility: visible !important;
        background: var(--glass) !important;
        border: 1px solid var(--glass-border) !important;
        overflow: hidden !important;
        border-radius: var(--radius-2xl) !important;
    }

    .coaches-section .coach-bg {
        filter: grayscale(0%) !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }

    .coaches-section .coach-overlay {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }

    .coaches-section .coach-content {
        padding: var(--space-5) !important;
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 2 !important;
    }

    .coaches-section .coach-name {
        font-size: var(--text-xl) !important;
        margin-top: var(--space-2) !important;
        color: var(--secondary) !important;
    }

    .coaches-section .coach-role {
        color: var(--glass-white-70) !important;
    }

    .testimonials-wrapper {
        padding: 0 var(--space-4);
    }

    .testimonial-card {
        padding: var(--space-8) var(--space-6);
    }

    .testimonial-quote {
        font-size: 4rem;
        top: var(--space-4);
        left: var(--space-4);
    }

    .testimonial-text {
        font-size: var(--text-base);
        line-height: 1.7;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: var(--space-3);
    }

    .testimonial-rating {
        margin-left: 0;
    }

    .cta-box {
        padding: var(--space-10) var(--space-6);
        border-radius: var(--radius-2xl);
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: var(--space-3);
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        display: block;
    }

    .footer-logo img {
        height: 80px;
        margin: 0 auto;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-column {
        text-align: center;
    }

    .footer-links {
        align-items: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .about-content {
        text-align: center;
        order: 2;
    }

    .about-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .about-text {
        font-size: var(--text-base);
    }

    .about-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-3);
    }

    .about-feature {
        justify-content: flex-start;
        padding: var(--space-3);
        font-size: var(--text-xs);
    }

    .about-feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .about-feature-icon svg {
        width: 20px;
        height: 20px;
    }

    .about-feature span {
        font-size: var(--text-xs);
    }

    .about-images {
        order: 1;
        height: 300px;
        margin: 0 auto;
        max-width: 100%;
    }

    .about-img-1 {
        width: 55%;
        height: 250px;
        top: 0;
        left: 5%;
    }

    .about-img-2 {
        width: 50%;
        height: 200px;
        bottom: 0;
        right: 5%;
        top: auto;
    }

    .about-experience {
        width: 90px;
        height: 90px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;
    }

    .about-experience-number {
        font-size: var(--text-xl);
    }

    .about-experience-text {
        font-size: 9px;
    }

    /* Facilities Mobile */
    .facilities-home-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
        padding: 0 var(--space-4);
    }

    .facility-home-card {
        display: flex;
        flex-direction: row;
        height: auto;
    }

    .facility-home-image {
        width: 120px;
        min-width: 120px;
        height: 120px;
    }

    .facility-home-content {
        padding: var(--space-4);
    }

    .facility-home-name {
        font-size: var(--text-base);
    }

    .facility-home-desc {
        font-size: var(--text-xs);
        -webkit-line-clamp: 2;
    }

    /* Achievements Mobile */
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
        padding: 0 var(--space-4);
    }

    .achievement-card {
        padding: var(--space-6);
    }

    .achievement-icon {
        width: 60px;
        height: 60px;
    }

    .achievement-icon svg {
        width: 30px;
        height: 30px;
    }

    .achievement-year {
        font-size: var(--text-2xl);
    }

    .achievement-title {
        font-size: var(--text-lg);
    }

    /* Accreditations Mobile */
    .accreditations-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-3);
        padding: 0 var(--space-4);
    }

    .accreditation-showcase-card {
        padding: var(--space-4);
    }

    .accreditation-showcase-logo {
        width: 60px;
        height: 60px;
    }

    .accreditation-showcase-logo img {
        max-width: 50px;
        max-height: 50px;
    }

    .accreditation-showcase-name {
        font-size: var(--text-xs);
    }

    .accreditation-showcase-issuer {
        font-size: 10px;
    }

    .accreditation-showcase-badge {
        font-size: 9px;
        padding: 3px 6px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }

    .stat-item {
        padding: var(--space-4);
    }

    .stat-number {
        font-size: var(--text-3xl);
    }

    .stat-label {
        font-size: var(--text-xs);
    }

    /* Gallery Mobile */
    .gallery-section {
        padding: var(--space-4) 0;
        overflow: visible;
    }

    .gallery-scroll {
        gap: var(--space-3);
        padding: 0 var(--space-4);
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .gallery-scroll::-webkit-scrollbar {
        display: none;
    }

    .gallery-item {
        min-width: 200px;
        height: 150px;
    }

    .section {
        padding: var(--space-12) 5%;
    }

    .section-header {
        margin-bottom: var(--space-8);
        padding: 0 var(--space-4);
    }

    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .section-subtitle {
        font-size: var(--text-sm);
    }

    .marquee-item {
        font-size: var(--text-sm);
    }

    /* Preloader 768px */
    .penalty-scene {
        width: 320px;
        height: 220px;
    }

    .stadium-lights {
        width: 240px;
    }

    /* Orbs - smaller on tablet */
    .orb-1 {
        width: 250px;
        height: 250px;
    }

    .orb-2 {
        width: 300px;
        height: 300px;
    }

    .orb-3 {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 100vh;
    }

    .hero-content {
        padding: 100px var(--space-4) var(--space-8);
    }

    .hero-badge {
        font-size: 9px;
        padding: var(--space-2) var(--space-3);
    }

    .hero-title {
        font-size: clamp(24px, 9vw, 36px);
    }

    .hero-description {
        font-size: var(--text-sm);
        line-height: 1.6;
    }

    .hero-buttons .btn {
        padding: var(--space-3) var(--space-4);
        font-size: var(--text-sm);
    }

    .hero-slider-dots {
        bottom: 80px;
    }

    .hero-dot {
        width: 32px;
        height: 32px;
        font-size: 11px;
    }

    .hero-slider-arrow {
        display: none;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-3);
    }

    .stat-item {
        padding: var(--space-4);
    }

    .stat-number {
        font-size: var(--text-2xl);
    }

    .stat-label {
        font-size: 10px;
    }

    .stats-bg-text {
        font-size: 15vw;
    }

    .section {
        padding: var(--space-10) 4%;
    }

    .section-header {
        margin-bottom: var(--space-6);
    }

    .section-tag {
        font-size: 10px;
    }

    .section-title {
        font-size: clamp(1.25rem, 5vw, 1.75rem);
    }

    .program-card {
        height: 320px;
    }

    .program-title {
        font-size: var(--text-lg);
    }

    .program-desc {
        font-size: var(--text-xs);
    }

    .coaches-section {
        padding: var(--space-10) 0;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .coaches-section .coaches-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: var(--space-3);
        padding: 0 var(--space-4);
        width: 100% !important;
        max-width: 100% !important;
    }

    .coaches-section .coaches-grid.container {
        padding-left: var(--space-4) !important;
        padding-right: var(--space-4) !important;
    }

    .coaches-section .coach-card {
        width: 100% !important;
        height: 300px !important;
        min-height: 300px !important;
        display: block !important;
        position: relative !important;
        opacity: 1 !important;
        visibility: visible !important;
        background: var(--glass) !important;
        border: 1px solid var(--glass-border) !important;
        border-radius: var(--radius-2xl) !important;
        overflow: hidden !important;
    }

    .coaches-section .coach-bg {
        filter: grayscale(0%) !important;
    }

    .coaches-section .coach-content {
        padding: var(--space-4) !important;
    }

    .coaches-section .coach-name {
        font-size: var(--text-base) !important;
        margin-top: var(--space-2) !important;
        color: var(--secondary) !important;
    }

    .coaches-section .coach-role {
        font-size: var(--text-xs) !important;
        color: var(--glass-white-70) !important;
    }

    .badge {
        font-size: 9px;
        padding: var(--space-1) var(--space-2);
    }

    /* About Section 480px */
    .about-grid {
        gap: var(--space-6);
    }

    .about-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

    .about-text {
        font-size: var(--text-sm);
        line-height: 1.6;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: var(--space-2);
    }

    .about-feature {
        padding: var(--space-2) var(--space-3);
    }

    .about-feature-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .about-feature-icon svg {
        width: 18px;
        height: 18px;
    }

    .about-images {
        height: 240px;
    }

    .about-img-1 {
        width: 60%;
        height: 200px;
        left: 0;
    }

    .about-img-2 {
        width: 55%;
        height: 160px;
        right: 0;
    }

    .about-img-1,
    .about-img-2 {
        border-radius: var(--radius-lg);
    }

    .about-experience {
        width: 70px;
        height: 70px;
        padding: var(--space-2);
        bottom: 10px;
    }

    .about-experience-number {
        font-size: var(--text-lg);
    }

    .about-experience-text {
        font-size: 8px;
    }

    /* Facilities 480px */
    .facility-home-image {
        width: 100px;
        min-width: 100px;
        height: 100px;
    }

    .facility-home-name {
        font-size: var(--text-sm);
    }

    /* Achievements 480px */
    .achievements-grid {
        gap: var(--space-3);
    }

    .achievement-card {
        padding: var(--space-5);
    }

    .achievement-icon {
        width: 50px;
        height: 50px;
    }

    .achievement-year {
        font-size: var(--text-xl);
    }

    .achievement-title {
        font-size: var(--text-base);
    }

    .achievement-desc {
        font-size: var(--text-xs);
    }

    /* Accreditations 480px */
    .accreditations-showcase-grid {
        gap: var(--space-2);
    }

    .accreditation-showcase-card {
        padding: var(--space-3);
    }

    .accreditation-showcase-logo {
        width: 50px;
        height: 50px;
    }

    .accreditation-showcase-badge {
        display: none;
    }

    /* Testimonials 480px */
    .testimonial-card {
        padding: var(--space-6) var(--space-4);
    }

    .testimonial-quote {
        font-size: 3rem;
    }

    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }

    /* CTA 480px */
    .cta-section {
        padding: var(--space-8) 4%;
    }

    .cta-box {
        padding: var(--space-8) var(--space-5);
    }

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

    .cta-text {
        font-size: var(--text-sm);
    }

    .cta-bg-icon {
        font-size: 100px;
    }

    /* Gallery 480px */
    .gallery-item {
        min-width: 160px;
        height: 120px;
    }

    .btn {
        padding: var(--space-3) var(--space-4);
        font-size: var(--text-sm);
    }

    /* Footer 480px */
    .footer {
        padding: var(--space-10) 4% var(--space-6);
    }

    .footer-grid {
        gap: var(--space-8);
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-brand p {
        font-size: var(--text-sm);
    }

    .footer-logo {
        display: block;
    }

    .footer-logo img {
        height: 60px;
        margin: 0 auto;
    }

    .footer-social {
        width: 38px;
        height: 38px;
    }

    .footer-column h4 {
        font-size: 11px;
    }

    .footer-links li a {
        font-size: var(--text-sm);
    }

    .footer-bottom {
        padding-top: var(--space-6);
    }

    .footer-bottom p {
        font-size: var(--text-xs);
    }

    .back-to-top {
        left: var(--space-4);
        bottom: var(--space-4);
        width: 42px;
        height: 42px;
    }

    /* Marquee 480px */
    .marquee-wrapper {
        padding: var(--space-3) 0;
    }

    .marquee-item {
        font-size: var(--text-xs);
    }

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

    /* Preloader 480px */
    .penalty-scene {
        width: 280px;
        height: 200px;
        transform: scale(0.75);
    }

    .preloader-logo {
        width: 80px;
    }

    .preloader-line {
        width: 120px;
    }

    /* Orbs - hide on very small screens */
    .orb {
        display: none;
    }
}

/* ==========================================================================
   TOURNAMENTS PAGE STYLES
   ========================================================================== */

.tournaments-section {
    padding: var(--space-16) var(--space-4);
    background: var(--bg-primary);
}

@media (min-width: 768px) {
    .tournaments-section {
        padding: var(--space-20) var(--space-8);
    }
}

@media (min-width: 1024px) {
    .tournaments-section {
        padding: var(--space-24) var(--space-12);
    }
}

.tournaments-section .container {
    max-width: 1400px;
}

.scores-section {
    margin-bottom: var(--space-16);
}

.section-header-left {
    margin-bottom: var(--space-8);
}

.section-title-sm {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--text-primary);
}

.title-icon {
    width: 28px;
    height: 28px;
    stroke: var(--primary);
}

/* Score Cards Grid */
.scores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--space-6);
}

.score-card {
    background: linear-gradient(135deg, #1e3a5f 0%, #14284a 100%);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.score-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.score-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-3) var(--space-4);
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tournament-name,
.match-type {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.match-date {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.score-card-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-6) var(--space-4);
}

.score-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    flex: 1;
    text-align: center;
}

.team-logo-lg {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.team-logo-lg img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.team-abbr {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: #fff;
}

.team-name-full {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.score-result {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    padding: 0 var(--space-4);
}

.score-numbers {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.score-home,
.score-away {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    line-height: 1;
}

.score-home.winner,
.score-away.winner {
    color: #22c55e;
}

.score-separator {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
}

.score-status {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.score-card-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3);
    background: rgba(0, 0, 0, 0.15);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.score-card-footer svg {
    width: 14px;
    height: 14px;
}

/* Tournaments Grid */
.tournaments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-6);
}

.tournament-card {
    display: block;
    background: var(--bg-secondary);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    text-decoration: none;
}

.tournament-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--primary);
}

.tournament-card-banner {
    position: relative;
    height: 160px;
    background: linear-gradient(135deg, #1e3a5f 0%, #14284a 100%);
}

.tournament-card-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tournament-banner-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    opacity: 0.3;
}

.tournament-status-badge {
    position: absolute;
    top: var(--space-3);
    right: var(--space-3);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.tournament-status-badge.ongoing {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.tournament-status-badge.upcoming {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.tournament-status-badge.completed {
    background: rgba(156, 163, 175, 0.2);
    color: #9ca3af;
}

.tournament-status-badge-lg {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: var(--space-4);
}

.tournament-status-badge-lg.ongoing {
    background: rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.tournament-status-badge-lg.upcoming {
    background: rgba(59, 130, 246, 0.3);
    color: #3b82f6;
}

.tournament-major-badge {
    position: absolute;
    top: var(--space-3);
    left: var(--space-3);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--secondary) 0%, #d4af37 100%);
    color: #000;
}

.tournament-card-content {
    padding: var(--space-5);
}

.tournament-card-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-3);
}

.tournament-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
    font-size: 13px;
    color: var(--text-muted);
}

.tournament-card-meta svg {
    width: 14px;
    height: 14px;
    vertical-align: middle;
    margin-right: 4px;
}

.tournament-type {
    color: var(--primary);
    font-weight: 600;
}

.tournament-card-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
    line-height: 1.6;
}

.tournament-card-stats {
    display: flex;
    gap: var(--space-4);
    padding-top: var(--space-3);
    border-top: 1px solid var(--glass-border);
}

.tournament-card-stats .stat {
    font-size: 13px;
    color: var(--text-muted);
}

.tournament-card-stats .stat strong {
    color: var(--text-primary);
}

/* Tournament Detail */
.tournament-detail-section {
    padding: var(--space-16) var(--space-4);
    background: var(--bg-primary);
}

@media (min-width: 768px) {
    .tournament-detail-section {
        padding: var(--space-20) var(--space-8);
    }
}

@media (min-width: 1024px) {
    .tournament-detail-section {
        padding: var(--space-24) var(--space-12);
    }
}

.tournament-detail-section .container {
    max-width: 1200px;
}

.tournament-info-box {
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    margin-bottom: var(--space-10);
    border: 1px solid var(--glass-border);
}

.tournament-info-box p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Upcoming Matches */
.upcoming-section {
    margin-top: var(--space-12);
}

.upcoming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-4);
}

.upcoming-card {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    padding: var(--space-4);
    border: 1px solid var(--glass-border);
}

.upcoming-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-2) var(--space-3);
    background: var(--primary);
    border-radius: var(--radius-lg);
    min-width: 50px;
}

.upcoming-date .day {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.upcoming-date .month {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}

.upcoming-teams {
    flex: 1;
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.upcoming-teams .team {
    font-weight: 600;
    color: var(--text-primary);
}

.upcoming-teams .vs {
    color: var(--text-muted);
    font-size: 12px;
}

.upcoming-time {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: var(--space-12);
    background: var(--bg-secondary);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--glass-border);
}

.empty-state svg {
    width: 60px;
    height: 60px;
    margin-bottom: var(--space-4);
    stroke: var(--text-muted);
}

.empty-state h4 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.empty-state p {
    color: var(--text-muted);
}

/* Back Link */
.back-link-wrapper {
    margin-top: var(--space-12);
    text-align: center;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 14px;
    margin-bottom: var(--space-4);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .scores-grid {
        grid-template-columns: 1fr;
    }

    .score-card-body {
        flex-direction: column;
        gap: var(--space-4);
    }

    .score-team {
        flex-direction: row;
        width: 100%;
        justify-content: center;
    }

    .team-logo-lg {
        width: 50px;
        height: 50px;
    }

    .score-home,
    .score-away {
        font-size: 32px;
    }

    .tournaments-grid {
        grid-template-columns: 1fr;
    }
}

/* ----------------------------------------
   Premier League Style Mini Scorecard
   (For Home Page Scoreboard Panel)
---------------------------------------- */
.pl-score-card-mini {
    background: var(--dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--space-3);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.pl-score-card-mini:last-child {
    margin-bottom: 0;
}

.pl-score-bar-mini {
    display: flex;
    align-items: stretch;
    min-height: 50px;
}

.pl-team-mini {
    flex: 1;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-3);
}

.pl-team-home-mini {
    background: linear-gradient(135deg, #8B0000 0%, #660000 100%);
    justify-content: flex-start;
}

.pl-team-away-mini {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    justify-content: flex-end;
}

.pl-team-logo-mini {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.pl-team-away-mini .pl-team-logo-mini {
    background: rgba(0, 0, 0, 0.1);
}

.pl-team-logo-mini img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2px;
}

.pl-team-abbr-mini {
    font-size: 9px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
}

.pl-team-away-mini .pl-team-abbr-mini {
    color: rgba(0, 0, 0, 0.7);
}

.pl-team-name-mini {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 70px;
}

.pl-team-away-mini .pl-team-name-mini {
    color: #1a1a1a;
}

.pl-score-center-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-1) var(--space-3);
    background: linear-gradient(180deg, #37003c 0%, #2d0033 100%);
    min-width: 65px;
}

.pl-score-numbers-mini {
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.pl-score-mini {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    min-width: 18px;
    text-align: center;
}

.pl-score-mini.winner {
    color: #00ff87;
}

.pl-score-divider-mini {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

.pl-match-status-mini {
    font-size: 8px;
    font-weight: 700;
    color: #00ff87;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
