/* ============================================
   CIFA - CINEMATIC DARK BLUE THEME
   Inspired by Stadium Floodlights
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Dark Blue Backgrounds */
    --dark-900: #020817;
    --dark-800: #0A1628;
    --dark-700: #0F2847;
    --dark-600: #1E3A5F;
    --dark-500: #2D4A6F;

    /* Neon Blue Accents */
    --neon-blue: #3B82F6;
    --neon-cyan: #06B6D4;
    --neon-sky: #0EA5E9;
    --electric-blue: #2563EB;
    --deep-blue: #1D4ED8;

    /* Secondary Accents */
    --gold: #F59E0B;
    --silver: #94A3B8;
    --bronze: #D97706;
    --success: #10B981;
    --danger: #EF4444;
    --warning: #F59E0B;

    /* Text Colors */
    --white: #FFFFFF;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;

    /* Glows */
    --glow-blue: 0 0 60px rgba(59, 130, 246, 0.5);
    --glow-cyan: 0 0 60px rgba(6, 182, 212, 0.5);
    --glow-strong: 0 0 100px rgba(59, 130, 246, 0.8);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #3B82F6 0%, #06B6D4 100%);
    --gradient-hero: linear-gradient(135deg, #3B82F6 0%, #0EA5E9 50%, #06B6D4 100%);
    --gradient-card: linear-gradient(135deg, rgba(15, 40, 71, 0.8) 0%, rgba(10, 22, 40, 0.9) 100%);
    --gradient-dark: linear-gradient(180deg, var(--dark-900) 0%, var(--dark-800) 100%);

    /* Glassmorphism */
    --glass-bg: rgba(10, 22, 40, 0.7);
    --glass-border: rgba(59, 130, 246, 0.2);
    --glass-blur: blur(20px);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--dark-900);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    max-width: 100vw;
}

/* ============================================
   GLOW CURSOR EFFECT
   ============================================ */
.glow-cursor {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: opacity 0.3s;
    opacity: 0;
}

body:hover .glow-cursor {
    opacity: 1;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(2, 8, 23, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    padding: 15px 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;
}

.logo-img {
    height: 50px;
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.5));
    transition: transform 0.3s;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-primary);
    color: var(--white) !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--glow-blue);
    transition: all 0.3s !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-strong);
}

.nav-cta::after {
    display: none !important;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 10000;
    position: relative;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 40px 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(6, 182, 212, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(14, 165, 233, 0.15) 0%, transparent 60%);
    animation: gradientMove 15s 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); }
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--neon-cyan);
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(59, 130, 246, 0); }
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(60px, 12vw, 140px);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 30px;
    letter-spacing: -4px;
}

.hero-title .highlight {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    text-shadow: 0 0 80px rgba(59, 130, 246, 0.5);
}

.hero-title .location {
    display: block;
    font-size: clamp(40px, 8vw, 100px);
    color: var(--white);
    opacity: 0.9;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray-400);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Next Match Card */
.next-match-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 30px 40px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--glow-blue);
}

.next-match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.next-match-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--neon-cyan);
    text-transform: uppercase;
}

.next-match-competition {
    font-size: 13px;
    color: var(--gray-400);
    background: rgba(59, 130, 246, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
}

.next-match-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.next-match-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.next-match-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.3));
    transition: transform 0.3s;
}

.next-match-logo:hover {
    transform: scale(1.1);
}

.next-match-name {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
}

.next-match-vs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
}

.next-match-vs span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-500);
}

.next-match-time {
    font-size: 14px;
    color: var(--neon-cyan);
    font-weight: 600;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}

.countdown-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.countdown-label {
    font-size: 12px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.next-match-venue {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--gray-400);
    font-size: 14px;
}

.next-match-venue i {
    color: var(--neon-blue);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--glow-blue);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--glow-strong);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--neon-blue);
}

.btn-secondary:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--neon-cyan);
    transform: translateY(-3px);
}

/* ============================================
   SECTIONS COMMON STYLES
   ============================================ */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    overflow-x: hidden;
}

section {
    padding: 120px 0;
    overflow-x: hidden;
    max-width: 100vw;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.section-title span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
}

.subsection-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.subsection-title i {
    color: var(--neon-blue);
}

/* ============================================
   LIVE SCORES SECTION
   ============================================ */
.live-scores {
    background: var(--gradient-dark);
    position: relative;
}

.live-scores::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
}

.live-matches-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--neon-blue) var(--dark-700);
}

.live-matches-container::-webkit-scrollbar {
    height: 8px;
}

.live-matches-container::-webkit-scrollbar-track {
    background: var(--dark-700);
    border-radius: 4px;
}

.live-matches-container::-webkit-scrollbar-thumb {
    background: var(--neon-blue);
    border-radius: 4px;
}

.no-live-matches {
    text-align: center;
    padding: 60px 40px;
    background: var(--dark-700);
    border-radius: 20px;
    border: 1px solid var(--dark-600);
    width: 100%;
}

.no-live-matches i {
    font-size: 48px;
    color: var(--gray-500);
    margin-bottom: 15px;
    display: block;
}

.no-live-matches p {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-300);
    margin-bottom: 8px;
}

.no-live-matches span {
    font-size: 14px;
    color: var(--gray-500);
}

.live-match-card {
    flex: 0 0 320px;
    background: var(--dark-700);
    border: 1px solid var(--dark-600);
    border-radius: 20px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.live-match-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--danger);
    animation: liveGlow 1.5s ease-in-out infinite;
}

@keyframes liveGlow {
    0%, 100% { opacity: 1; box-shadow: 0 0 10px var(--danger); }
    50% { opacity: 0.5; box-shadow: 0 0 20px var(--danger); }
}

.live-match-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-blue);
    box-shadow: var(--glow-blue);
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--danger);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
}

.live-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.match-teams-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.match-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.match-team-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.match-team-name {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.match-score {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
}

.match-score span {
    font-size: 32px;
    font-weight: 700;
}

.match-score .score-divider {
    font-size: 20px;
    color: var(--gray-500);
}

.match-minute {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: var(--neon-cyan);
    font-weight: 600;
}

.todays-matches {
    margin-top: 60px;
}

.matches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.match-card {
    background: var(--dark-700);
    border: 1px solid var(--dark-600);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s;
}

.match-card:hover {
    border-color: var(--neon-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.1);
}

.match-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 12px;
    color: var(--gray-400);
}

.match-card-competition {
    background: rgba(59, 130, 246, 0.1);
    padding: 4px 10px;
    border-radius: 10px;
    color: var(--neon-blue);
}

.match-card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.match-card-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.match-card-logo {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.match-card-name {
    font-size: 13px;
    font-weight: 500;
    text-align: center;
}

.match-card-vs {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 15px;
}

.match-card-time {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--neon-cyan);
}

.match-card-date {
    font-size: 11px;
    color: var(--gray-500);
}

.match-card-score {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.match-card-footer {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--dark-600);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--gray-400);
}

.match-card-footer i {
    color: var(--neon-blue);
}

/* ============================================
   FIXTURES & RESULTS SECTION
   ============================================ */
.fixtures-section {
    background: var(--dark-900);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-tab {
    background: var(--dark-700);
    border: 1px solid var(--dark-600);
    color: var(--gray-400);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-tab:hover {
    border-color: var(--neon-blue);
    color: var(--white);
}

.filter-tab.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--white);
    box-shadow: var(--glow-blue);
}

.fixtures-results-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.column-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--dark-600);
}

.column-title i {
    color: var(--neon-blue);
}

.column-hint {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.column-hint::before {
    content: '\f05a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--neon-cyan);
    font-size: 12px;
}

.fixtures-list, .results-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fixture-item, .result-item {
    background: var(--dark-700);
    border: 1px solid var(--dark-600);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s;
}

.fixture-item:hover, .result-item:hover {
    border-color: var(--neon-blue);
    transform: translateX(5px);
}

.fixture-item.upcoming {
    border-left: 4px solid var(--neon-blue);
}

.result-item.completed {
    border-left: 4px solid var(--success);
}

/* ============================================
   STANDINGS SECTION
   ============================================ */
.standings-section {
    background: linear-gradient(180deg, var(--dark-900) 0%, var(--dark-800) 50%, var(--dark-900) 100%);
    position: relative;
}

.standings-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.league-selector {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.league-btn {
    background: var(--dark-700);
    border: 1px solid var(--dark-600);
    color: var(--gray-400);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.league-btn:hover {
    border-color: var(--neon-blue);
    color: var(--white);
}

.league-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--white);
    box-shadow: var(--glow-blue);
}

.standings-container {
    position: relative;
    z-index: 2;
}

.standings-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.standings-header {
    display: grid;
    grid-template-columns: 50px 1fr 50px 50px 50px 50px 60px 60px 60px 80px 120px;
    gap: 10px;
    padding: 15px 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.standings-row {
    display: grid;
    grid-template-columns: 50px 1fr 50px 50px 50px 50px 60px 60px 60px 80px 120px;
    gap: 10px;
    padding: 15px 20px;
    background: var(--dark-700);
    border: 1px solid var(--dark-600);
    border-radius: 12px;
    align-items: center;
    transition: all 0.3s;
    margin-bottom: 10px;
}

.standings-row:hover {
    border-color: var(--neon-blue);
    transform: translateX(5px);
    box-shadow: 0 5px 30px rgba(59, 130, 246, 0.1);
}

.standings-row.top-1 {
    border-left: 4px solid var(--gold);
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.1), transparent);
}

.standings-row.top-2 {
    border-left: 4px solid var(--silver);
}

.standings-row.top-3 {
    border-left: 4px solid var(--bronze);
}

.standings-row.relegation {
    border-left: 4px solid var(--danger);
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.05), transparent);
}

.standings-position {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--neon-blue);
}

.standings-team {
    display: flex;
    align-items: center;
    gap: 12px;
}

.standings-team-logo {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.standings-team-name {
    font-weight: 500;
}

.standings-stat {
    text-align: center;
    font-size: 14px;
}

.standings-points {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--neon-cyan);
    text-align: center;
}

.standings-form {
    display: flex;
    gap: 4px;
    justify-content: center;
}

.form-indicator {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
}

.form-indicator.W {
    background: var(--success);
    color: var(--white);
}

.form-indicator.D {
    background: var(--warning);
    color: var(--dark-900);
}

.form-indicator.L {
    background: var(--danger);
    color: var(--white);
}

/* ============================================
   TOP SCORERS SECTION
   ============================================ */
.scorers-section {
    background: var(--dark-900);
}

.scorers-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    max-width: 100%;
    overflow: hidden;
}

.scorer-card {
    flex: 0 1 320px;
    max-width: 350px;
    background: linear-gradient(145deg, var(--dark-700) 0%, var(--dark-800) 100%);
    border: 1px solid var(--dark-600);
    border-radius: 20px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.scorer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s;
}

.scorer-card:hover::before {
    opacity: 1;
}

.scorer-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-blue);
    box-shadow: var(--glow-blue);
}

.scorer-card.top-1 {
    border: 2px solid var(--gold);
}

.scorer-card.top-1::before {
    background: linear-gradient(90deg, var(--gold), var(--warning));
    opacity: 1;
}

.scorer-rank {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.scorer-card.top-1 .scorer-rank {
    background: linear-gradient(135deg, var(--gold), var(--warning));
}

.scorer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.scorer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--dark-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.scorer-details h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.scorer-team {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-400);
}

.scorer-team-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.scorer-stats {
    display: flex;
    justify-content: space-around;
    padding-top: 20px;
    border-top: 1px solid var(--dark-600);
}

.scorer-stat {
    text-align: center;
}

.scorer-stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.scorer-stat-label {
    font-size: 11px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hidden scorers (show top 3 initially) */
.scorer-card.scorer-hidden {
    display: none;
}

.scorer-card.scorer-hidden.scorer-visible {
    display: block;
}

/* View All button for scorers */
.scorers-view-all-btn {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    border: 2px solid var(--glass-border);
    border-radius: 50px;
    color: var(--neon-blue);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.scorers-view-all-btn:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--neon-blue);
    transform: translateY(-2px);
}

.scorers-view-all-btn i {
    transition: transform 0.3s ease;
}

.scorers-view-all-btn.expanded i {
    transform: rotate(180deg);
}

/* ============================================
   NEWS SECTION
   ============================================ */
.news-section {
    background: linear-gradient(180deg, var(--dark-800) 0%, var(--dark-900) 100%);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.news-card {
    background: var(--dark-700);
    border: 1px solid var(--dark-600);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-8px);
    border-color: var(--neon-blue);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
}

.news-card.featured {
    grid-column: span 2;
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-card.featured .news-image {
    height: 300px;
}

.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%;
    background: linear-gradient(135deg, var(--dark-600), var(--dark-700));
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-image-placeholder i {
    font-size: 48px;
    color: var(--gray-500);
}

.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.news-content {
    padding: 25px;
}

.news-date {
    font-size: 13px;
    color: var(--gray-400);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-date i {
    color: var(--neon-blue);
}

.news-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}

.news-card.featured .news-title {
    font-size: 26px;
}

.news-excerpt {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    color: var(--neon-blue);
    font-weight: 500;
    font-size: 14px;
    transition: gap 0.3s;
}

.news-card:hover .news-read-more {
    gap: 12px;
}

/* ============================================
   TEAMS SECTION
   ============================================ */
.teams-section {
    background: var(--dark-900);
}

.teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 25px;
}

.team-card {
    background: var(--dark-700);
    border: 1px solid var(--dark-600);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: var(--neon-blue);
    box-shadow: var(--glow-blue);
}

.team-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
    transition: transform 0.3s;
}

.team-card:hover .team-logo {
    transform: scale(1.1);
}

.team-logo-placeholder {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background: var(--dark-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-logo-placeholder i {
    font-size: 32px;
    color: var(--gray-500);
}

.team-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.team-division {
    font-size: 12px;
    color: var(--gray-400);
}

/* ============================================
   APP CTA SECTION
   ============================================ */
.app-cta {
    padding: 150px 0;
    position: relative;
    overflow: hidden;
}

.app-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(59, 130, 246, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(6, 182, 212, 0.2) 0%, transparent 60%);
    filter: blur(80px);
}

.app-cta-content {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.app-cta-text {
    flex: 1;
}

.app-cta-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
}

.app-cta-text h2 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-cta-text > p {
    font-size: 18px;
    color: var(--gray-400);
    margin-bottom: 30px;
    max-width: 500px;
}

.app-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.app-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-300);
}

.app-feature i {
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-blue);
}

.app-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.store-badge img {
    height: 50px;
    border-radius: 8px;
    transition: all 0.3s;
}

.store-badge:hover img {
    transform: scale(1.05);
    box-shadow: var(--glow-blue);
}

.app-cta-image {
    flex: 0 0 350px;
}

.phone-mockup {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.phone-frame {
    width: 280px;
    height: 580px;
    background: linear-gradient(145deg, #1a1a2e 0%, #0f0f1a 100%);
    border-radius: 45px;
    padding: 12px;
    box-shadow:
        0 0 60px rgba(59, 130, 246, 0.4),
        0 25px 80px rgba(0, 0, 0, 0.5),
        inset 0 0 0 2px rgba(59, 130, 246, 0.3);
    position: relative;
    margin: 0 auto;
}

.phone-notch {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #0a0a14;
    border-radius: 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 35px;
    overflow: hidden;
    background: linear-gradient(145deg, var(--dark-700) 0%, var(--dark-900) 100%);
}

.phone-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 40px;
}

.app-preview-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.5));
}

.app-preview-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.phone-home-indicator {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    z-index: 10;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark-800);
    padding: 100px 40px 50px;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.5));
}

.footer-brand p {
    color: var(--gray-400);
    margin-bottom: 25px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--dark-600);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--neon-blue);
    border-color: var(--neon-blue);
    color: var(--white);
    box-shadow: var(--glow-blue);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--neon-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 14px;
}

.footer-badges {
    display: flex;
    gap: 15px;
}

.badge {
    background: rgba(59, 130, 246, 0.1);
    color: var(--neon-blue);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* ============================================
   MODAL
   ============================================ */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(2, 8, 23, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--dark-700);
    border: 1px solid var(--dark-600);
    border-radius: 24px;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--dark-600);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.modal-close:hover {
    background: var(--danger);
}

.modal-body {
    padding: 40px;
}

.modal-body img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 25px;
}

.modal-body h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.modal-body .meta {
    display: flex;
    gap: 20px;
    color: var(--gray-400);
    font-size: 14px;
    margin-bottom: 25px;
}

.modal-body .content {
    color: var(--gray-300);
    line-height: 1.8;
}

/* ============================================
   EVENTS MODAL (Match Results)
   ============================================ */
.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
}

.events-modal-content {
    max-width: 600px;
    width: 95%;
    padding: 0;
}

.events-modal-body {
    padding: 30px;
}

.events-modal-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--dark-600);
}

.events-modal-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.events-modal-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
    max-width: 150px;
}

.events-modal-team img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 12px;
    background: var(--dark-600);
    padding: 8px;
}

.events-modal-team-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    text-align: center;
    line-height: 1.3;
}

.events-modal-score {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 42px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 100px;
    text-align: center;
}

.events-modal-info {
    color: var(--gray-400);
    font-size: 13px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    background: var(--dark-600);
    border-radius: 12px;
    transition: all 0.2s;
}

.event-item:hover {
    background: var(--dark-500);
}

.event-minute {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--neon-cyan);
    min-width: 35px;
}

.event-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.event-icon.goal {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success);
}

.event-icon.yellow {
    background: rgba(245, 158, 11, 0.2);
    color: var(--gold);
}

.event-icon.red {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger);
}

.event-icon.sub {
    background: rgba(59, 130, 246, 0.2);
    color: var(--neon-blue);
}

.event-details {
    flex: 1;
}

.event-player {
    font-weight: 600;
    color: var(--white);
    font-size: 14px;
}

.event-assist {
    color: var(--gray-400);
    font-size: 12px;
    margin-top: 2px;
}

.no-events {
    text-align: center;
    padding: 40px;
    color: var(--gray-400);
}

.no-events i {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
    opacity: 0.5;
}

.no-events p {
    font-size: 14px;
}

/* Make result items clickable */
.result-item.completed {
    cursor: pointer;
    transition: all 0.3s;
}

.result-item.completed:hover {
    transform: translateY(-3px);
    border-color: var(--neon-blue);
    box-shadow: var(--glow-blue);
}

.result-item.completed::after {
    content: 'View Details';
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 11px;
    color: var(--neon-cyan);
    opacity: 0;
    transition: opacity 0.3s;
}

.result-item.completed:hover::after {
    opacity: 1;
}

/* Make sure result items are positioned relative for the ::after */
.result-item {
    position: relative;
}

@media (max-width: 480px) {
    .events-modal-body {
        padding: 20px;
    }

    .events-modal-team img {
        width: 50px;
        height: 50px;
    }

    .events-modal-score {
        font-size: 32px;
        min-width: 80px;
    }

    .events-modal-team-name {
        font-size: 12px;
    }

    .event-item {
        padding: 10px 12px;
        gap: 10px;
    }

    .event-minute {
        font-size: 12px;
        min-width: 30px;
    }

    .event-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .event-player {
        font-size: 13px;
    }
}

/* ============================================
   LOADING INDICATOR
   ============================================ */
.loading-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 60px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--dark-600);
    border-top-color: var(--neon-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-indicator span {
    color: var(--gray-400);
    font-size: 14px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .standings-header,
    .standings-row {
        grid-template-columns: 40px 1fr 40px 40px 40px 40px 50px 50px 50px 70px 100px;
        font-size: 12px;
    }

    .fixtures-results-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .app-cta-content {
        flex-direction: column;
        text-align: center;
    }

    .app-cta-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .app-cta-text > p {
        max-width: 100%;
    }

    .app-buttons {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .standings-header,
    .standings-row {
        grid-template-columns: 35px 1fr 35px 35px 35px 70px 90px;
    }

    .standings-header > *:nth-child(4),
    .standings-header > *:nth-child(5),
    .standings-header > *:nth-child(7),
    .standings-header > *:nth-child(8),
    .standings-row > *:nth-child(4),
    .standings-row > *:nth-child(5),
    .standings-row > *:nth-child(7),
    .standings-row > *:nth-child(8) {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--dark-900);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        z-index: 9999;
        padding-top: 80px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 24px;
        color: var(--white);
    }

    .nav-links a:hover {
        color: var(--neon-cyan);
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 120px 20px 60px;
    }

    .hero-title {
        letter-spacing: -2px;
    }

    .next-match-card {
        padding: 20px;
    }

    .next-match-teams {
        flex-direction: column;
        gap: 20px;
    }

    .next-match-vs {
        flex-direction: row;
        gap: 20px;
    }

    .countdown {
        gap: 10px;
    }

    .countdown-value {
        font-size: 28px;
    }

    .container {
        padding: 0 20px;
    }

    section {
        padding: 80px 0;
    }

    .news-card.featured {
        grid-column: span 1;
    }

    .news-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .news-card {
        padding: 12px;
    }

    .news-card:nth-child(1),
    .news-card:nth-child(2) {
        grid-column: span 2;
    }

    .news-card:nth-child(1) .news-image,
    .news-card:nth-child(2) .news-image {
        height: 180px;
    }

    .news-card:nth-child(1) .news-content h3,
    .news-card:nth-child(2) .news-content h3 {
        font-size: 16px;
    }

    .news-card .news-image {
        height: 120px;
    }

    .news-card .news-content h3 {
        font-size: 13px;
        line-height: 1.3;
    }

    .news-card .news-meta {
        font-size: 10px;
    }

    .news-card {
        border-radius: 14px;
    }

    .news-image {
        height: 160px;
    }

    .news-card.featured .news-image {
        height: 180px;
    }

    .news-content {
        padding: 16px;
    }

    .news-title {
        font-size: 16px;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .news-excerpt {
        font-size: 13px;
        line-height: 1.4;
        -webkit-line-clamp: 2;
    }

    .news-date {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .news-read-more {
        font-size: 13px;
        margin-top: 10px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .standings-header,
    .standings-row {
        grid-template-columns: 30px 1fr 60px 80px;
    }

    .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;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .teams-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .team-card {
        padding: 20px 15px;
    }

    .team-logo {
        width: 60px;
        height: 60px;
    }

    .app-features {
        grid-template-columns: 1fr;
    }

    .phone-frame {
        width: 240px;
        height: 500px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Stagger delays */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

/* ============================================
   FIFA+ SECTION
   ============================================ */
.fifa-plus-section {
    background: linear-gradient(180deg, var(--dark-900) 0%, var(--dark-800) 100%);
    position: relative;
    overflow: hidden;
}

.fifa-plus-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
}

.fifa-plus-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
    max-width: 100%;
    overflow: hidden;
}

.fifa-card {
    flex: 0 1 350px;
    max-width: 400px;
    background: var(--dark-700);
    border: 1px solid var(--dark-600);
    border-radius: 20px;
    padding: 30px;
    text-decoration: none;
    color: var(--white);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.fifa-card:hover {
    transform: translateY(-8px);
    border-color: var(--neon-blue);
    box-shadow: var(--glow-blue);
}

.fifa-card-featured {
    grid-column: span 1;
    background: linear-gradient(145deg, var(--dark-700) 0%, var(--dark-800) 100%);
    border: 2px solid var(--neon-blue);
}

.fifa-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.fifa-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.fifa-card-content {
    position: relative;
    z-index: 2;
}

.fifa-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: var(--neon-cyan);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.fifa-card-badge-gold {
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.3);
    color: var(--gold);
}

.fifa-card-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.5));
}

.fifa-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.fifa-card p {
    color: var(--gray-400);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.fifa-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--neon-blue);
    font-weight: 600;
    font-size: 14px;
    transition: gap 0.3s;
}

.fifa-card:hover .fifa-card-cta {
    gap: 12px;
}

.fifa-banner {
    background: linear-gradient(135deg, var(--dark-700) 0%, var(--dark-600) 100%);
    border: 1px solid var(--dark-500);
    border-radius: 20px;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.fifa-banner-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

.fifa-banner-logo {
    height: 50px;
    filter: brightness(0) invert(1);
}

.fifa-banner-text h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.fifa-banner-text p {
    color: var(--gray-400);
    font-size: 14px;
}

/* ============================================
   NEXT MATCHES SECTION
   ============================================ */
.next-matches-section {
    background: var(--dark-900);
}

.league-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.league-tab {
    background: var(--dark-700);
    border: 1px solid var(--dark-600);
    color: var(--gray-400);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.league-tab:hover {
    border-color: var(--neon-blue);
    color: var(--white);
}

.league-tab.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--white);
    box-shadow: var(--glow-blue);
}

.next-matches-content {
    min-height: 300px;
}

.next-matches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.next-match-item {
    background: var(--dark-700);
    border: 1px solid var(--dark-600);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s;
}

.next-match-item:hover {
    border-color: var(--neon-blue);
    transform: translateY(-4px);
    box-shadow: var(--glow-blue-soft);
}

.next-match-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--dark-600);
}

.next-match-item-competition {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.next-match-item-date {
    color: var(--gray-400);
    font-size: 12px;
}

.next-match-item-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.next-match-item-team {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.next-match-item-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 8px;
    background: var(--dark-600);
    padding: 6px;
}

.next-match-item-name {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.next-match-item-vs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 70px;
}

.next-match-item-time {
    background: var(--dark-600);
    color: var(--neon-cyan);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
}

.next-match-item-vs .vs-text {
    color: var(--gray-500);
    font-size: 12px;
    font-weight: 600;
}

.next-match-item-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--gray-400);
    font-size: 13px;
    padding-top: 12px;
    border-top: 1px solid var(--dark-600);
}

.next-match-item-footer i {
    color: var(--neon-blue);
}

.no-matches-message {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray-400);
}

.no-matches-message i {
    font-size: 48px;
    color: var(--gray-600);
    margin-bottom: 16px;
    display: block;
}

.no-matches-message p {
    font-size: 16px;
}

/* See All Button */
.see-all-container {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    margin-top: 20px;
}

.see-all-btn {
    background: var(--dark-700);
    border: 1px solid var(--dark-600);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.see-all-btn:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    box-shadow: var(--glow-blue);
    transform: translateY(-2px);
}

.see-all-btn i {
    font-size: 12px;
}

/* ============================================
   RESPONSIVE - FIFA+ & NEXT MATCHES
   ============================================ */
@media (max-width: 1200px) {
    .fifa-plus-grid {
        gap: 20px;
    }

    .fifa-card {
        flex: 0 1 300px;
    }
}

@media (max-width: 768px) {
    .fifa-plus-grid {
        gap: 16px;
    }

    .fifa-card {
        flex: 0 1 calc(50% - 10px);
        max-width: none;
        padding: 16px;
        border-radius: 14px;
    }

    .fifa-card h3 {
        font-size: 14px;
    }

    .fifa-card p {
        font-size: 12px;
    }

    .fifa-card-badge {
        font-size: 10px;
        padding: 4px 8px;
    }

    .fifa-card-cta {
        font-size: 12px;
    }

    .fifa-banner {
        flex-direction: column;
        text-align: center;
    }

    .fifa-banner-content {
        flex-direction: column;
    }

    .league-tabs {
        gap: 8px;
    }

    .league-tab {
        padding: 10px 20px;
        font-size: 13px;
    }

    .next-matches-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .fifa-plus-grid {
        gap: 12px;
    }

    .fifa-card {
        flex: 0 1 calc(50% - 8px);
    }

    .fifa-card h3 {
        font-size: 13px;
    }

    .fifa-card-badge {
        font-size: 9px;
        padding: 3px 6px;
    }

    .next-matches-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .news-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .news-card {
        padding: 10px;
    }

    .news-card:nth-child(1),
    .news-card:nth-child(2) {
        grid-column: span 2;
    }

    .news-card:nth-child(1) .news-image,
    .news-card:nth-child(2) .news-image {
        height: 150px;
    }

    .news-card:nth-child(1) .news-content h3,
    .news-card:nth-child(2) .news-content h3 {
        font-size: 14px;
    }

    .news-card .news-image {
        height: 100px;
    }

    .news-card .news-content h3 {
        font-size: 12px;
    }
}
