/* ============================================
   ELITE SPORTS CLUB - BABY BLUE GLOSSY GALACTIC
   Futuristic, Glassy, Professional Design
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Baby Blue Palette */
    --baby-blue: #89CFF0;
    --baby-blue-light: #B8E2F2;
    --baby-blue-dark: #5BB5E0;
    --baby-blue-deep: #3AA0D1;
    --sky-blue: #A8DAEF;
    --ice-blue: #D4F1F9;
    --cosmic-blue: #1E90FF;

    /* Core Colors */
    --white: #FFFFFF;
    --off-white: #F8FAFC;
    --light-gray: #F1F5F9;
    --gray-100: #E2E8F0;
    --gray-200: #CBD5E1;
    --gray-300: #94A3B8;
    --gray-400: #64748B;
    --gray-500: #475569;
    --gray-600: #334155;
    --black: #0F172A;
    --black-soft: #1E293B;

    /* Accent Colors */
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;

    /* Glossy Glass Effects */
    --glass-bg: linear-gradient(135deg,
        rgba(137, 207, 240, 0.25) 0%,
        rgba(137, 207, 240, 0.15) 25%,
        rgba(184, 226, 242, 0.2) 50%,
        rgba(137, 207, 240, 0.15) 75%,
        rgba(91, 181, 224, 0.25) 100%);
    --glass-border: rgba(137, 207, 240, 0.4);
    --glass-shadow: 0 8px 32px rgba(137, 207, 240, 0.25);
    --glass-glow: 0 0 40px rgba(137, 207, 240, 0.3);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-blue: 0 10px 40px rgba(137, 207, 240, 0.4);
    --shadow-blue-lg: 0 20px 60px rgba(137, 207, 240, 0.5);
    --shadow-cosmic: 0 0 60px rgba(30, 144, 255, 0.3), 0 0 100px rgba(137, 207, 240, 0.2);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--baby-blue) 0%, var(--baby-blue-deep) 100%);
    --gradient-hero: linear-gradient(135deg, var(--black) 0%, var(--black-soft) 100%);
    --gradient-cosmic: linear-gradient(135deg,
        rgba(137, 207, 240, 0.3) 0%,
        rgba(30, 144, 255, 0.2) 50%,
        rgba(91, 181, 224, 0.3) 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--light-gray);
    color: var(--black);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ============================================
   DARK CARD STYLES - HERO SECTION THEME
   ============================================ */
.dark-card {
    background: var(--gradient-hero);
    border: 1px solid rgba(137, 207, 240, 0.2);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 60px rgba(137, 207, 240, 0.1);
    position: relative;
    overflow: hidden;
}

.dark-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(137, 207, 240, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(137, 207, 240, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.dark-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(137, 207, 240, 0.5) 50%,
        transparent 100%);
}

/* Glass card for modals and special elements */
.glass-card {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(248, 250, 252, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
}

.glass-card-mini {
    background: linear-gradient(135deg,
        rgba(137, 207, 240, 0.2) 0%,
        rgba(137, 207, 240, 0.1) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(137, 207, 240, 0.3);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(137, 207, 240, 0.2);
}

/* ============================================
   ANIMATED BACKGROUND
   ============================================ */
.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--light-gray) 100%);
}

.bg-shapes::before,
.bg-shapes::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.bg-shapes::before {
    width: 600px;
    height: 600px;
    background: var(--baby-blue);
    opacity: 0.2;
    top: -200px;
    right: -200px;
    animation: float1 20s ease-in-out infinite;
}

.bg-shapes::after {
    width: 400px;
    height: 400px;
    background: var(--baby-blue-light);
    opacity: 0.15;
    bottom: -100px;
    left: -100px;
    animation: float2 15s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, 50px) scale(1.1); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.05); }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: linear-gradient(135deg,
        rgba(137, 207, 240, 0.95) 0%,
        rgba(91, 181, 224, 0.9) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-blue);
    padding: 12px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--white);
}

.navbar.scrolled .logo {
    color: var(--black);
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: var(--shadow-blue);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 2px;
}

.logo-sub {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    opacity: 0.8;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
    position: relative;
}

.navbar.scrolled .nav-links a {
    color: var(--black-soft);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
    color: var(--black);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--baby-blue);
    transition: width 0.3s;
    border-radius: 2px;
}

.navbar.scrolled .nav-links a::after {
    background: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}

.navbar.scrolled .mobile-menu-btn span {
    background: var(--black);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    background: var(--gradient-hero);
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 40px 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(137, 207, 240, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(137, 207, 240, 0.15) 0%, transparent 50%);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(137, 207, 240, 0.15);
    border: 1px solid rgba(137, 207, 240, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 30px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--baby-blue);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    margin-bottom: 30px;
}

.title-with-logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.title-logo {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: var(--shadow-blue-lg);
    border: 3px solid rgba(137, 207, 240, 0.5);
}

.title-line {
    display: block;
    font-size: clamp(50px, 10vw, 90px);
    font-weight: 900;
    letter-spacing: -2px;
}

.title-outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--baby-blue);
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    padding: 25px 0;
}

.hero-stat {
    text-align: center;
    padding: 20px 30px;
}

.hero-stat.glass-card-mini {
    background: linear-gradient(135deg,
        rgba(137, 207, 240, 0.25) 0%,
        rgba(91, 181, 224, 0.15) 100%);
    border: 1px solid rgba(137, 207, 240, 0.4);
}

.stat-number {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--baby-blue);
    text-shadow: 0 0 20px rgba(137, 207, 240, 0.5);
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-blue-lg);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--baby-blue);
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(220, 39, 67, 0.3);
}

.btn-view-all {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--baby-blue-dark);
    box-shadow: var(--glass-shadow);
}

.btn-view-all:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Hero Card */
.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-card {
    padding: 30px;
    width: 100%;
    max-width: 420px;
}

.hero-card.glass-card {
    background: linear-gradient(135deg,
        rgba(137, 207, 240, 0.3) 0%,
        rgba(91, 181, 224, 0.2) 50%,
        rgba(137, 207, 240, 0.3) 100%);
    border: 1px solid rgba(137, 207, 240, 0.5);
    box-shadow: var(--shadow-cosmic);
}

.hero-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.card-badge {
    background: var(--baby-blue);
    color: var(--black);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.card-league {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.hero-card-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.card-team {
    text-align: center;
    flex: 1;
}

.team-logo-wrap {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-team-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.card-team-name {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
}

.card-vs {
    text-align: center;
    padding: 0 20px;
}

.vs-time {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--baby-blue);
    text-shadow: 0 0 20px rgba(137, 207, 240, 0.5);
}

.vs-date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.hero-card-venue {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin-bottom: 20px;
}

.hero-card-venue i {
    color: var(--baby-blue);
}

.countdown-mini {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 100%);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(137, 207, 240, 0.2);
}

.countdown-item {
    text-align: center;
    min-width: 45px;
}

.countdown-item span {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.countdown-item small {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-sep {
    color: var(--baby-blue);
    font-size: 20px;
    font-weight: 700;
    margin-top: -10px;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: var(--light-gray);
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ============================================
   COMMON SECTION STYLES
   ============================================ */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--baby-blue-dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(137, 207, 240, 0.2);
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--black);
    margin-bottom: 15px;
}

.section-title span {
    color: var(--baby-blue-dark);
}

.section-subtitle {
    font-size: 17px;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
}

.subsection-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.subsection-title i {
    color: var(--baby-blue-dark);
}

/* Loading State */
.loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 60px;
    color: var(--gray-400);
}

.loader {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(137, 207, 240, 0.3);
    border-top-color: var(--baby-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   TEAMS SECTION
   ============================================ */
.teams-section {
    background: transparent;
}

.teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.teams-grid.centered {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.teams-grid.centered .team-card {
    width: 280px;
    flex-shrink: 0;
}

.team-card {
    background: var(--gradient-hero);
    border: 1px solid rgba(137, 207, 240, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 70% 20%, rgba(137, 207, 240, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.team-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(137, 207, 240, 0.4) 50%, transparent 100%);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(137, 207, 240, 0.2);
    border-color: var(--baby-blue);
}

.team-card.elite-team {
    border: 2px solid var(--baby-blue);
}

.team-logo-container {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(137, 207, 240, 0.2) 0%, rgba(137, 207, 240, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border: 1px solid rgba(137, 207, 240, 0.3);
}

.team-logo-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.team-logo-placeholder {
    font-size: 40px;
    color: var(--baby-blue);
}

.team-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.team-division {
    font-size: 13px;
    color: var(--baby-blue);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.team-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    margin-top: 12px;
    box-shadow: 0 4px 15px rgba(137, 207, 240, 0.3);
    position: relative;
    z-index: 1;
}

/* ============================================
   MATCHES SECTION
   ============================================ */
.matches-section {
    background: transparent;
}

.matches-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.match-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-hero);
    border: 2px solid rgba(137, 207, 240, 0.2);
    color: rgba(255, 255, 255, 0.7);
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.match-tab:hover {
    border-color: var(--baby-blue);
    color: var(--white);
}

.match-tab.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--white);
    box-shadow: var(--shadow-blue);
}

/* League Filter Tabs */
.league-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.league-filter-tab {
    background: var(--black-soft);
    border: 1px solid rgba(137, 207, 240, 0.2);
    color: rgba(255, 255, 255, 0.6);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.league-filter-tab:hover {
    border-color: var(--baby-blue);
    color: var(--white);
}

.league-filter-tab.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--white);
    box-shadow: var(--shadow-blue);
}

.matches-panel {
    display: none;
}

.matches-panel.active {
    display: block;
}

.column-hint {
    font-size: 13px;
    color: var(--gray-400);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.column-hint::before {
    content: '\f05a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--baby-blue);
    font-size: 12px;
}

.matches-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Date Group Header */
.date-group-header {
    background: var(--black-soft);
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    color: var(--baby-blue);
    margin-top: 20px;
    margin-bottom: 10px;
    border-left: 4px solid var(--baby-blue);
}

.date-group-header:first-child {
    margin-top: 0;
}

.match-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto;
    align-items: center;
    gap: 20px;
    background: var(--gradient-hero);
    border: 1px solid rgba(137, 207, 240, 0.2);
    border-radius: 16px;
    padding: 20px 25px;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.match-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(137, 207, 240, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.match-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(137, 207, 240, 0.4) 50%, transparent 100%);
}

.match-item:hover {
    border-color: var(--baby-blue);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(137, 207, 240, 0.2);
    transform: translateX(5px);
}

.match-item.elite-match {
    border-left: 4px solid var(--baby-blue);
}

.match-item.clickable {
    cursor: pointer;
}

.match-team {
    display: flex;
    align-items: center;
    gap: 15px;
}

.match-team.away {
    flex-direction: row-reverse;
    justify-content: flex-start;
}

.match-team-logo {
    width: 45px;
    height: 45px;
    object-fit: contain;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(137, 207, 240, 0.15) 0%, rgba(137, 207, 240, 0.05) 100%);
    padding: 5px;
    border: 1px solid rgba(137, 207, 240, 0.2);
    position: relative;
    z-index: 1;
}

.match-team-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.match-team-name.elite {
    color: var(--baby-blue);
}

.match-center {
    text-align: center;
    min-width: 100px;
    position: relative;
    z-index: 1;
}

.match-time {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.match-date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.match-score {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--baby-blue);
    text-shadow: 0 0 20px rgba(137, 207, 240, 0.5);
}

.match-meta {
    text-align: right;
    position: relative;
    z-index: 1;
}

.match-competition {
    display: inline-block;
    background: linear-gradient(135deg, rgba(137, 207, 240, 0.2) 0%, rgba(137, 207, 240, 0.1) 100%);
    color: var(--baby-blue);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 5px;
    border: 1px solid rgba(137, 207, 240, 0.3);
}

.match-venue {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: flex-end;
}

.match-venue i {
    color: var(--baby-blue);
}

.no-matches {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray-400);
}

.no-matches i {
    font-size: 48px;
    color: var(--baby-blue-light);
    margin-bottom: 15px;
    display: block;
}

.view-all-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

/* ============================================
   STANDINGS SECTION
   ============================================ */
.standings-section {
    background: transparent;
}

.standings-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.standings-tab {
    background: var(--gradient-hero);
    border: 2px solid rgba(137, 207, 240, 0.2);
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.standings-tab:hover {
    border-color: var(--baby-blue);
    color: var(--white);
}

.standings-tab.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--white);
    box-shadow: var(--shadow-blue);
}

.standings-container {
    overflow: hidden;
    padding: 0;
    background: var(--gradient-hero);
    border: 1px solid rgba(137, 207, 240, 0.2);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.standings-container.glass-card {
    background: var(--gradient-hero);
}

.standings-table {
    width: 100%;
}

.standings-header {
    display: grid;
    grid-template-columns: 50px 2fr 50px 50px 50px 50px 60px 60px 60px 70px 100px;
    gap: 10px;
    padding: 15px 25px;
    background: var(--black);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.standings-row {
    display: grid;
    grid-template-columns: 50px 2fr 50px 50px 50px 50px 60px 60px 60px 70px 100px;
    gap: 10px;
    padding: 15px 25px;
    border-bottom: 1px solid rgba(137, 207, 240, 0.15);
    align-items: center;
    transition: all 0.2s;
}

.standings-row:last-child {
    border-bottom: none;
}

.standings-row:hover {
    background: rgba(137, 207, 240, 0.08);
}

.standings-row.elite {
    background: linear-gradient(135deg, rgba(137, 207, 240, 0.15) 0%, rgba(137, 207, 240, 0.08) 100%);
    border-left: 4px solid var(--baby-blue);
}

.standings-row.elite:hover {
    background: linear-gradient(135deg, rgba(137, 207, 240, 0.2) 0%, rgba(137, 207, 240, 0.12) 100%);
}

.standings-position {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--baby-blue);
}

.standings-team {
    display: flex;
    align-items: center;
    gap: 12px;
}

.standings-team-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 6px;
}

.standings-team-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--white);
}

.standings-team-name.elite {
    color: var(--baby-blue);
}

.standings-stat {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.standings-points {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--baby-blue);
    text-align: center;
}

.standings-form {
    display: flex;
    gap: 3px;
    justify-content: center;
}

.form-badge {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: var(--white);
}

.form-badge.W { background: var(--success); }
.form-badge.D { background: var(--warning); }
.form-badge.L { background: var(--danger); }

/* ============================================
   PLAYERS SECTION
   ============================================ */
.players-section {
    background: transparent;
}

.players-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--gradient-hero);
    border: 2px solid rgba(137, 207, 240, 0.2);
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover {
    border-color: var(--baby-blue);
    color: var(--white);
}

.filter-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--white);
    box-shadow: var(--shadow-blue);
}

/* Team Filter Tabs for Players */
.players-team-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.team-tab {
    background: var(--gradient-hero);
    border: 2px solid rgba(137, 207, 240, 0.2);
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.team-tab:hover {
    border-color: var(--baby-blue);
    color: var(--white);
}

.team-tab.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--white);
    box-shadow: var(--shadow-blue);
}

/* Position Group Header */
.position-group {
    margin-bottom: 40px;
}

.position-group-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(137, 207, 240, 0.3);
}

.position-group-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    box-shadow: var(--shadow-blue);
}

.position-group-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
}

.position-group-count {
    background: var(--black-soft);
    color: var(--baby-blue);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

/* Players Grid - Centered */
.players-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
}

.players-grid .player-card {
    flex: 0 1 220px;
    max-width: 260px;
}

/* View All Button for Players */
.view-all-players-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 20px auto 40px;
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--baby-blue);
    color: var(--baby-blue-dark);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.view-all-players-btn:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--white);
    box-shadow: var(--shadow-blue);
}

.view-all-players-btn i {
    transition: transform 0.3s;
}

.view-all-players-btn:hover i {
    transform: translateX(5px);
}

/* No Players Message */
.no-players-message {
    text-align: center;
    padding: 40px 20px;
    color: var(--gray-400);
}

.no-players-message i {
    font-size: 48px;
    color: var(--baby-blue-light);
    margin-bottom: 15px;
}

.no-players-message p {
    font-size: 16px;
}

.player-card {
    background: var(--gradient-hero);
    border: 1px solid rgba(137, 207, 240, 0.2);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.player-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(137, 207, 240, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.player-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(137, 207, 240, 0.4) 50%, transparent 100%);
}

.player-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(137, 207, 240, 0.2);
    border-color: var(--baby-blue);
}

.player-avatar {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    box-shadow: var(--shadow-blue);
    position: relative;
    z-index: 1;
}

.player-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.player-number {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--black);
    color: var(--white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.player-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.player-position {
    font-size: 13px;
    color: var(--baby-blue);
    font-weight: 500;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
}

.player-team {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}

.player-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(137, 207, 240, 0.15);
    position: relative;
    z-index: 1;
}

.player-stat {
    text-align: center;
}

.player-stat-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--baby-blue);
}

.player-stat-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Scorers Section */
.scorers-section {
    padding-top: 40px;
    border-top: 1px solid rgba(137, 207, 240, 0.2);
}

.scorers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.scorer-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--gradient-hero);
    border: 1px solid rgba(137, 207, 240, 0.2);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.scorer-card:hover {
    border-color: var(--baby-blue);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(137, 207, 240, 0.2);
    transform: translateY(-3px);
}

.scorer-card.top-1 {
    background: linear-gradient(135deg, var(--black) 0%, var(--black-soft) 50%, rgba(245, 158, 11, 0.2) 100%);
    border: 2px solid var(--warning);
}

.scorer-rank {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: var(--shadow-blue);
}

.scorer-card.top-1 .scorer-rank {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.scorer-info {
    flex: 1;
}

.scorer-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 3px;
}

.scorer-team {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.scorer-goals {
    text-align: center;
}

.scorer-goals-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--baby-blue);
    text-shadow: 0 0 20px rgba(137, 207, 240, 0.5);
}

.scorer-goals-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

/* ============================================
   NEWS SECTION
   ============================================ */
.news-section {
    background: transparent;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.news-card {
    background: var(--gradient-hero);
    border: 1px solid rgba(137, 207, 240, 0.2);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(137, 207, 240, 0.2);
    border-color: var(--baby-blue);
}

.news-image {
    height: 200px;
    background: linear-gradient(135deg, rgba(137, 207, 240, 0.15) 0%, rgba(137, 207, 240, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(137, 207, 240, 0.3) 0%, rgba(91, 181, 224, 0.2) 100%);
}

.news-image-placeholder i {
    font-size: 48px;
    color: var(--baby-blue);
}

.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    box-shadow: var(--shadow-blue);
}

.news-content {
    padding: 25px;
}

.news-date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-date i {
    color: var(--baby-blue);
}

.news-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-excerpt {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--baby-blue);
    font-weight: 600;
    font-size: 13px;
    margin-top: 15px;
    transition: gap 0.3s;
}

.news-card:hover .news-read-more {
    gap: 10px;
}

/* ============================================
   INSTAGRAM SECTION
   ============================================ */
.instagram-section {
    background: transparent;
}

.instagram-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    margin-bottom: 40px;
}

.instagram-banner.glass-card {
    background: linear-gradient(135deg,
        rgba(240, 148, 51, 0.15) 0%,
        rgba(220, 39, 67, 0.15) 50%,
        rgba(188, 24, 136, 0.15) 100%);
    border: 1px solid rgba(220, 39, 67, 0.3);
}

.instagram-profile {
    display: flex;
    align-items: center;
    gap: 20px;
}

.insta-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(220, 39, 67, 0.5);
}

.insta-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insta-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--black);
}

.insta-info p {
    color: var(--gray-500);
    font-size: 14px;
}

.instagram-placeholder {
    text-align: center;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.insta-item {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--baby-blue);
}

.insta-item.glass-card-mini {
    background: linear-gradient(135deg,
        rgba(137, 207, 240, 0.25) 0%,
        rgba(137, 207, 240, 0.15) 100%);
}

.insta-cta a {
    color: var(--baby-blue-dark);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.insta-cta a:hover {
    text-decoration: underline;
}

/* Instagram Posts Grid (from Cloud Function) */
.insta-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.insta-post-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: var(--gradient-hero);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insta-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(137, 207, 240, 0.3);
}

.insta-post-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.insta-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.insta-post-card:hover .insta-post-image img {
    transform: scale(1.05);
}

.insta-video-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.insta-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 15px 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.insta-post-card:hover .insta-overlay {
    opacity: 1;
}

.insta-stats {
    display: flex;
    gap: 20px;
    color: white;
    font-size: 14px;
}

.insta-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.insta-stats .fa-heart {
    color: #ff6b6b;
}

.insta-caption {
    padding: 15px;
    color: var(--gray-300);
    font-size: 13px;
    line-height: 1.4;
    background: var(--black);
}

@media (max-width: 768px) {
    .insta-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .insta-posts-grid {
        grid-template-columns: 1fr;
    }
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 30px;
    text-decoration: none;
    color: var(--gray-500);
    transition: all 0.3s;
}

.social-card.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.social-card i {
    font-size: 32px;
}

.social-card span {
    font-weight: 600;
    font-size: 14px;
}

.social-card:hover {
    transform: translateY(-5px);
}

.social-card.instagram:hover {
    background: linear-gradient(45deg, rgba(240,148,51,0.2) 0%, rgba(220,39,67,0.2) 50%, rgba(188,24,136,0.2) 100%);
    border-color: #DC2743;
    color: #DC2743;
}

.social-card.facebook:hover {
    background: rgba(24, 119, 242, 0.15);
    border-color: #1877F2;
    color: #1877F2;
}

.social-card.twitter:hover {
    background: rgba(29, 161, 242, 0.15);
    border-color: #1DA1F2;
    color: #1DA1F2;
}

.social-card.youtube:hover {
    background: rgba(255, 0, 0, 0.15);
    border-color: #FF0000;
    color: #FF0000;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: var(--black);
    color: var(--white);
    padding: 100px 0;
}

.about-section .section-tag {
    background: rgba(137, 207, 240, 0.2);
    border-color: rgba(137, 207, 240, 0.4);
    color: var(--baby-blue);
}

.about-section .section-title {
    color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.feature-item.glass-card {
    background: linear-gradient(135deg,
        rgba(137, 207, 240, 0.15) 0%,
        rgba(137, 207, 240, 0.1) 100%);
    border: 1px solid rgba(137, 207, 240, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: var(--shadow-blue);
}

.feature-text h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.elite-emblem {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emblem-ring {
    position: absolute;
    border: 2px solid rgba(137, 207, 240, 0.3);
    border-radius: 50%;
    animation: emblem-pulse 3s ease-in-out infinite;
}

.emblem-ring:nth-child(1) {
    width: 100%;
    height: 100%;
    animation-delay: 0s;
}

.emblem-ring:nth-child(2) {
    width: 80%;
    height: 80%;
    animation-delay: 0.5s;
}

.emblem-ring:nth-child(3) {
    width: 60%;
    height: 60%;
    animation-delay: 1s;
}

@keyframes emblem-pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

.emblem-center {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-cosmic);
    z-index: 2;
    overflow: hidden;
}

.emblem-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--black-soft);
    padding: 80px 0 30px;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid rgba(137, 207, 240, 0.3);
}

.footer-logo-name {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
}

.footer-logo-sub {
    display: block;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 3px;
    opacity: 0.7;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 350px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(137, 207, 240, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s;
    border: 1px solid rgba(137, 207, 240, 0.2);
}

.footer-social a:hover {
    background: var(--baby-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-blue);
}

.footer-links h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--baby-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(137, 207, 240, 0.2);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.footer-badges {
    display: flex;
    gap: 12px;
}

.badge {
    background: rgba(137, 207, 240, 0.15);
    color: var(--baby-blue);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid rgba(137, 207, 240, 0.3);
}

/* ============================================
   MODAL
   ============================================ */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 2001;
    padding: 0;
}

.modal-content.glass-card {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(248, 250, 252, 0.98) 100%);
    border: 1px solid var(--glass-border);
}

.events-modal-content {
    width: 100%;
    max-width: 600px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--gray-500);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.modal-close:hover {
    background: var(--danger);
    border-color: var(--danger);
    color: var(--white);
}

.modal-body {
    padding: 40px;
}

.modal-body img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 25px;
}

.modal-body h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--black);
}

.modal-body .meta {
    display: flex;
    gap: 20px;
    color: var(--gray-400);
    font-size: 13px;
    margin-bottom: 25px;
}

.modal-body .meta i {
    color: var(--baby-blue-dark);
}

.modal-body .content {
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 15px;
}

/* Events Modal */
.events-modal-body {
    padding: 30px;
}

.events-modal-header {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(137, 207, 240, 0.2);
    margin-bottom: 25px;
}

.events-modal-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.events-modal-team {
    text-align: center;
    flex: 1;
}

.events-modal-team img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
    border-radius: 8px;
}

.events-modal-team-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--black);
}

.events-modal-score {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--baby-blue-dark);
}

.events-modal-info {
    font-size: 12px;
    color: var(--gray-400);
    margin-top: 15px;
}

.events-list {
    max-height: 400px;
    overflow-y: auto;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(137, 207, 240, 0.1);
    border-radius: 12px;
    margin-bottom: 10px;
    border-left: 4px solid var(--baby-blue);
}

.event-minute {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--baby-blue-dark);
    min-width: 40px;
}

.event-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.event-icon.goal {
    background: var(--success);
    color: var(--white);
}

.event-icon.yellow {
    background: var(--warning);
    color: var(--black);
}

.event-icon.red {
    background: var(--danger);
    color: var(--white);
}

.event-icon.sub {
    background: var(--baby-blue);
    color: var(--white);
}

.event-details {
    flex: 1;
}

.event-player {
    font-weight: 600;
    font-size: 14px;
    color: var(--black);
}

.event-assist {
    font-size: 12px;
    color: var(--gray-400);
}

.no-events {
    text-align: center;
    padding: 40px;
    color: var(--gray-400);
}

.no-events i {
    font-size: 40px;
    color: var(--baby-blue-light);
    margin-bottom: 15px;
    display: block;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .standings-header,
    .standings-row {
        grid-template-columns: 40px 2fr 40px 40px 40px 40px 50px 50px 60px 80px;
    }

    .standings-header > *:nth-child(11),
    .standings-row > *:nth-child(11) {
        display: none;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        order: 2;
    }

    .hero-visual {
        order: 1;
    }

    .title-with-logo {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-features {
        align-items: center;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .standings-header,
    .standings-row {
        grid-template-columns: 35px 2fr 35px 35px 35px 60px 70px;
    }

    .standings-header > *:nth-child(4),
    .standings-header > *:nth-child(5),
    .standings-header > *:nth-child(7),
    .standings-header > *:nth-child(8),
    .standings-header > *:nth-child(9),
    .standings-row > *:nth-child(4),
    .standings-row > *:nth-child(5),
    .standings-row > *:nth-child(7),
    .standings-row > *:nth-child(8),
    .standings-row > *:nth-child(9) {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(137, 207, 240, 0.98) 0%, rgba(91, 181, 224, 0.98) 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 22px;
        color: var(--black);
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 100px 20px 80px;
    }

    .hero-card {
        max-width: 100%;
    }

    .title-logo {
        width: 60px;
        height: 60px;
    }

    .container {
        padding: 0 20px;
    }

    section {
        padding: 70px 0;
    }

    .match-item {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }

    .match-team {
        justify-content: center;
    }

    .match-team.away {
        flex-direction: row;
    }

    .match-meta {
        text-align: center;
    }

    .match-venue {
        justify-content: center;
    }

    .standings-header,
    .standings-row {
        grid-template-columns: 30px 1fr 50px 60px;
    }

    .standings-header > *:nth-child(3),
    .standings-header > *:nth-child(4),
    .standings-header > *:nth-child(5),
    .standings-header > *:nth-child(6),
    .standings-header > *:nth-child(7),
    .standings-header > *:nth-child(8),
    .standings-header > *:nth-child(9),
    .standings-row > *:nth-child(3),
    .standings-row > *:nth-child(4),
    .standings-row > *:nth-child(5),
    .standings-row > *:nth-child(6),
    .standings-row > *:nth-child(7),
    .standings-row > *:nth-child(8),
    .standings-row > *:nth-child(9) {
        display: none;
    }

    .insta-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .social-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .instagram-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .instagram-profile {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .league-filter-tabs {
        gap: 5px;
    }

    .league-filter-tab {
        padding: 8px 14px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero-stat {
        width: 100%;
        max-width: 200px;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .teams-grid.centered {
        justify-content: center;
    }

    .teams-grid.centered .team-card {
        width: 100%;
        max-width: 300px;
    }

    .players-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .scorers-grid {
        grid-template-columns: 1fr;
    }

    .countdown-mini {
        padding: 12px;
    }

    .countdown-item span {
        font-size: 20px;
    }

    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .elite-emblem {
        width: 220px;
        height: 220px;
    }

    .emblem-center {
        width: 90px;
        height: 90px;
    }

    .title-with-logo {
        flex-direction: column;
        gap: 15px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.5s ease forwards;
}

/* Cosmic glow effect for special elements */
@keyframes cosmic-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(137, 207, 240, 0.3), 0 0 40px rgba(137, 207, 240, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(137, 207, 240, 0.5), 0 0 60px rgba(137, 207, 240, 0.3);
    }
}

.cosmic-glow {
    animation: cosmic-glow 3s ease-in-out infinite;
}

/* ============================================================================
   CIFA-STYLE DARK THEME + CHAMPIONS HERO  (2026 redesign)
   Appended last so these rules win over the original light theme.
   Adopts the CIFA website's dark, cinematic aesthetic while keeping Elite's
   baby-blue identity and adding a championship gold accent.
   ============================================================================ */

:root {
    --champ-gold: #F5C451;
    --champ-gold-deep: #E0A92E;
    --night-900: #04101F;
    --night-800: #07182C;
    --night-700: #0C2238;
}

/* ---- Canvas ---- */
body {
    font-family: 'Outfit', 'Inter', sans-serif;
    background: var(--night-900);
    color: #E2E8F0;
}

.bg-shapes {
    background:
        radial-gradient(ellipse at 18% 12%, rgba(137, 207, 240, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 82% 88%, rgba(30, 144, 255, 0.14) 0%, transparent 55%),
        linear-gradient(180deg, var(--night-900) 0%, var(--night-800) 100%);
}
.bg-shapes::before { background: var(--baby-blue); opacity: 0.12; }
.bg-shapes::after { background: var(--cosmic-blue); opacity: 0.12; }

/* ---- Navbar (dark glass, both states) ---- */
.navbar.scrolled {
    background: rgba(4, 16, 31, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(137, 207, 240, 0.18);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
}
.logo, .navbar.scrolled .logo { color: var(--white); }
.logo-name {
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(135deg, var(--baby-blue) 0%, var(--cosmic-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.logo-sub { color: var(--baby-blue-light); }
.nav-links a,
.navbar.scrolled .nav-links a { color: rgba(226, 232, 240, 0.75); }
.nav-links a:hover, .nav-links a.active,
.navbar.scrolled .nav-links a:hover, .navbar.scrolled .nav-links a.active { color: var(--white); }
.nav-links a::after,
.navbar.scrolled .nav-links a::after {
    background: linear-gradient(135deg, var(--baby-blue) 0%, var(--cosmic-blue) 100%);
}

/* ---- Section headers (light text + gradient accent) ---- */
.section-title, .subsection-title { color: var(--white); font-family: 'Space Grotesk', 'Montserrat', sans-serif; }
.section-title span {
    background: linear-gradient(135deg, var(--baby-blue) 0%, var(--cosmic-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-subtitle { color: rgba(226, 232, 240, 0.6); }
.section-tag {
    background: rgba(137, 207, 240, 0.12);
    border-color: rgba(137, 207, 240, 0.3);
    color: var(--baby-blue-light);
    box-shadow: none;
}

/* ============================================================================
   CHAMPIONS HERO
   ============================================================================ */
.champions-hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Full-bleed champions photo covering the hero.
   The sharp graphic is shown in full (contain) over a blurred, darkened copy
   of itself that fills the rest of the hero — so the "CHAMPIONS" wordmark is
   never cropped on any screen size. */
.champ-hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.champ-hero-media::before {
    content: '';
    position: absolute; inset: -6%;
    background: url('images/elite-champs.png') center center / cover no-repeat;
    filter: blur(40px) brightness(0.45) saturate(1.15);
    transform: scale(1.12);
}
.champ-hero-img {
    position: absolute; inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    animation: heroKenBurns 32s ease-in-out infinite alternate;
    will-change: transform;
}
.champ-hero-scrim {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg,
            rgba(4, 16, 31, 0.66) 0%,
            rgba(4, 16, 31, 0.12) 20%,
            rgba(4, 16, 31, 0.05) 42%,
            rgba(4, 16, 31, 0.55) 72%,
            rgba(4, 16, 31, 0.97) 100%);
}
@media (prefers-reduced-motion: reduce) { .champ-hero-img { animation: none; } }

.champions-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px clamp(46px, 8vh, 88px);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.champions-hero .hero-subtitle { margin: 0 auto 28px; }

/* Hero background atmosphere */
.champions-hero .hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-bg-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(137, 207, 240, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(137, 207, 240, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at 50% 30%, #000 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 0%, transparent 75%);
}
.hero-bg-aurora {
    position: absolute; top: -40%; left: -20%; width: 140%; height: 140%;
    background:
        radial-gradient(ellipse at 30% 25%, rgba(137, 207, 240, 0.22) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(245, 196, 81, 0.10) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 50%, rgba(30, 144, 255, 0.14) 0%, transparent 55%);
    animation: gradientMove 16s ease-in-out infinite;
}
@keyframes gradientMove {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(2%, 2%) rotate(2deg); }
    66% { transform: translate(-2%, -1%) rotate(-1deg); }
}

/* Champions badge (gold) */
.champions-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(245, 196, 81, 0.16) 0%, rgba(224, 169, 46, 0.10) 100%);
    border: 1px solid rgba(245, 196, 81, 0.45);
    color: var(--champ-gold);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
    box-shadow: 0 0 30px rgba(245, 196, 81, 0.18);
    animation: champPulse 2.4s ease-in-out infinite;
}
.champions-badge i { color: var(--champ-gold); }
@keyframes champPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 196, 81, 0.35); }
    50% { box-shadow: 0 0 0 14px rgba(245, 196, 81, 0); }
}

/* Hero title */
.champions-hero .hero-title {
    font-family: 'Space Grotesk', 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin: 0 0 22px;
    line-height: 1;
}
.title-eyebrow {
    font-size: clamp(14px, 2.4vw, 20px);
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.7);
}
.title-champions {
    font-size: clamp(54px, 11vw, 132px);
    font-weight: 700;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--champ-gold) 45%, var(--champ-gold-deep) 75%, #FFF6DC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 80px rgba(245, 196, 81, 0.35);
}
.champions-hero .hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(226, 232, 240, 0.72);
    max-width: 640px;
    margin: 0 auto 44px;
    line-height: 1.7;
}
.champions-hero .hero-subtitle strong { color: var(--champ-gold); font-weight: 600; }

/* Cinematic champions image (CIFA-style frame) */
.hero-cinematic {
    position: relative;
    width: min(720px, 92vw);
    margin: 0 auto 46px;
    animation: heroFloat 9s ease-in-out infinite;
}
.hero-cinematic-frame {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 28px;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(245, 196, 81, 0.28);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(137, 207, 240, 0.12) inset;
}
.hero-cinematic-image {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    animation: heroKenBurns 28s ease-in-out infinite alternate;
    will-change: transform;
}
.hero-cinematic-grade {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 25% 12%, rgba(137, 207, 240, 0.16) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 90%, rgba(245, 196, 81, 0.12) 0%, transparent 55%);
    mix-blend-mode: screen;
    pointer-events: none;
}
.hero-cinematic-shine {
    position: absolute; top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, 0.10) 50%, transparent 58%);
    mix-blend-mode: screen;
    pointer-events: none;
    animation: heroShine 9s ease-in-out infinite;
}
.hero-cinematic-glow {
    position: absolute; inset: -12% -10%;
    z-index: 0;
    background:
        radial-gradient(ellipse at 35% 30%, rgba(137, 207, 240, 0.32) 0%, transparent 55%),
        radial-gradient(ellipse at 65% 70%, rgba(245, 196, 81, 0.22) 0%, transparent 55%);
    filter: blur(45px);
    pointer-events: none;
    animation: heroGlowPulse 7s ease-in-out infinite;
}
@keyframes heroKenBurns {
    0%   { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.05) translate(-1%, -0.5%); }
}
@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}
@keyframes heroGlowPulse {
    0%, 100% { opacity: 0.7; }
    50%      { opacity: 1; }
}
@keyframes heroShine {
    0%   { transform: translate(-30%, -30%); opacity: 0; }
    50%  { transform: translate(0, 0); opacity: 1; }
    100% { transform: translate(30%, 30%); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
    .hero-cinematic,
    .hero-cinematic-image,
    .hero-cinematic-glow,
    .hero-cinematic-shine,
    .hero-bg-aurora { animation: none; }
}

/* Hero buttons */
.champions-hero .hero-cta { justify-content: center; }
.btn-primary {
    background: linear-gradient(135deg, var(--baby-blue) 0%, var(--cosmic-blue) 100%);
    box-shadow: 0 0 40px rgba(30, 144, 255, 0.35);
}
.btn-primary:hover { box-shadow: 0 0 60px rgba(30, 144, 255, 0.55); transform: translateY(-3px) scale(1.02); }
.btn-secondary {
    background: transparent;
    border: 1px solid rgba(137, 207, 240, 0.45);
    color: var(--white);
}
.btn-secondary:hover { background: rgba(137, 207, 240, 0.10); border-color: var(--baby-blue); }

/* ============================================================================
   NEXT MATCH + SEASON SNAPSHOT SECTION
   ============================================================================ */
.next-match-section { padding: 30px 0 90px; background: transparent; }
.snapshot-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 30px;
    align-items: stretch;
}
.snapshot-grid .hero-card { max-width: none; }
.snapshot-stats {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    padding: 32px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(12, 34, 56, 0.85) 0%, rgba(7, 24, 44, 0.9) 100%);
    border: 1px solid rgba(137, 207, 240, 0.18);
}
.snapshot-title h3 {
    font-family: 'Space Grotesk', 'Montserrat', sans-serif;
    font-size: clamp(20px, 2.4vw, 28px);
    font-weight: 700;
    color: var(--white);
    margin-top: 10px;
    line-height: 1.25;
}
.snapshot-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.snapshot-stats .hero-stat { padding: 18px 10px; border-radius: 14px; }
.snapshot-cta { align-self: flex-start; }

@media (max-width: 860px) {
    .snapshot-grid { grid-template-columns: 1fr; }
}

/* ============================================================================
   DARK GLASS CARDS + MODALS (flip remaining light surfaces)
   ============================================================================ */
.glass-card,
.modal-content.glass-card {
    background: linear-gradient(135deg, rgba(12, 34, 56, 0.92) 0%, rgba(7, 24, 44, 0.95) 100%);
    border: 1px solid rgba(137, 207, 240, 0.20);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}
.modal-body h2 { color: var(--white); }
.modal-body .content, .modal-body p { color: rgba(226, 232, 240, 0.78); }
.modal-close { color: rgba(226, 232, 240, 0.7); }

/* Instagram banner / social on dark */
.insta-info h3 { color: var(--white); }
.insta-info p { color: rgba(226, 232, 240, 0.6); }
.social-card span, .social-card i { color: var(--white); }

/* Footer brand accent stays on theme */
.footer-logo-name {
    background: linear-gradient(135deg, var(--baby-blue) 0%, var(--cosmic-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.footer-badges .badge {
    border: 1px solid rgba(245, 196, 81, 0.35);
    color: var(--champ-gold);
}

/* ============================================================================
   EXPLORE HUB (CIFA-style competition cards, Elite-tuned)
   ============================================================================ */
.comp-hub-section { padding: 70px 0 40px; background: transparent; }
.comp-hub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.comp-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background:
        linear-gradient(160deg, rgba(137, 207, 240, 0.12) 0%, transparent 60%),
        linear-gradient(180deg, rgba(12, 34, 56, 0.88) 0%, rgba(7, 24, 44, 0.9) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(137, 207, 240, 0.26);
    border-radius: 20px;
    padding: 22px 22px 0;
    color: var(--white);
    text-decoration: none;
    overflow: hidden;
    min-height: 240px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.comp-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(137, 207, 240, 0.6), rgba(245, 196, 81, 0.5), transparent);
    opacity: 0.7; pointer-events: none;
}
.comp-card:hover {
    transform: translateY(-4px);
    border-color: rgba(137, 207, 240, 0.6);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 70px rgba(137, 207, 240, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.comp-card-head {
    display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px;
}
.comp-card-title {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'Space Grotesk', 'Montserrat', sans-serif;
    font-weight: 600; font-size: 17px; color: var(--white);
}
.comp-card-title i {
    width: 32px; height: 32px; border-radius: 9px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 14px; color: var(--baby-blue);
    background: rgba(137, 207, 240, 0.12);
    border: 1px solid rgba(137, 207, 240, 0.28);
}
.comp-card-meta {
    font-size: 11px; text-transform: uppercase; letter-spacing: 1px;
    color: rgba(226, 232, 240, 0.65);
    background: rgba(137, 207, 240, 0.08);
    padding: 4px 10px; border-radius: 14px; white-space: nowrap;
}
.comp-card-body { flex: 1; }
.comp-card-body p { color: rgba(226, 232, 240, 0.72); font-size: 14.5px; line-height: 1.6; margin: 0; }
.comp-card-cta {
    display: flex; align-items: center; justify-content: space-between;
    margin: 18px -22px 0; padding: 14px 22px;
    border-top: 1px solid rgba(137, 207, 240, 0.15);
    color: var(--baby-blue); font-weight: 600; font-size: 14px;
    transition: background 0.25s, color 0.25s;
}
.comp-card-cta i { transition: transform 0.25s; }
.comp-card:hover .comp-card-cta { background: rgba(137, 207, 240, 0.08); color: var(--white); }
.comp-card:hover .comp-card-cta i { transform: translateX(4px); }
.comp-card-social .comp-card-title i,
.comp-card-social .comp-card-cta { color: #E1306C; }
.comp-card-social .comp-card-title i {
    background: rgba(225, 48, 108, 0.12); border-color: rgba(225, 48, 108, 0.28);
}

@media (max-width: 980px) { .comp-hub-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .comp-hub-grid { grid-template-columns: 1fr; } }

/* ============================================================================
   OFF-SEASON / SEASON-COMPLETE STATES
   ============================================================================ */
.offseason-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 32px;
    gap: 10px;
}
.offseason-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; color: var(--champ-gold);
    background: linear-gradient(135deg, rgba(245, 196, 81, 0.18) 0%, rgba(224, 169, 46, 0.10) 100%);
    border: 1px solid rgba(245, 196, 81, 0.4);
    box-shadow: 0 0 30px rgba(245, 196, 81, 0.18);
    margin-bottom: 6px;
}
.offseason-eyebrow {
    font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    color: var(--champ-gold);
}
.offseason-card h3 {
    font-family: 'Space Grotesk', 'Montserrat', sans-serif;
    font-size: 22px; font-weight: 700; color: var(--white); margin: 0;
}
.offseason-card p {
    color: rgba(226, 232, 240, 0.72);
    font-size: 14.5px; line-height: 1.6; max-width: 360px; margin: 0;
}
.offseason-card p strong { color: var(--champ-gold); }
.offseason-pill {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 10px;
    padding: 9px 18px; border-radius: 50px;
    font-size: 13px; font-weight: 600;
    color: var(--baby-blue-light);
    background: rgba(137, 207, 240, 0.10);
    border: 1px solid rgba(137, 207, 240, 0.3);
}
.offseason-pill i { color: var(--baby-blue); }

/* Off-season empty state inside the fixtures list */
.no-matches.offseason-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 56px 28px;
}
.no-matches.offseason-empty i {
    font-size: 40px; color: var(--champ-gold);
    text-shadow: 0 0 30px rgba(245, 196, 81, 0.4);
}
.no-matches.offseason-empty h3 {
    font-family: 'Space Grotesk', 'Montserrat', sans-serif;
    font-size: 22px; font-weight: 700; color: var(--white); margin: 0;
}
.no-matches.offseason-empty p {
    color: rgba(226, 232, 240, 0.7);
    font-size: 15px; line-height: 1.6; max-width: 460px; margin: 0;
}
.no-matches.offseason-empty p strong { color: var(--champ-gold); }
