:root {
    --bg-dark: #060913;
    --bg-card: rgba(13, 20, 38, 0.45);
    --bg-card-hover: rgba(18, 28, 54, 0.65);
    --border-color: rgba(255, 255, 255, 0.07);
    --border-color-hover: rgba(59, 130, 246, 0.3);
    
    /* Harmonious Brand Colors */
    --primary: #3b82f6;
    --primary-glow: rgba(59, 130, 246, 0.25);
    --accent-cyan: #06b6d4;
    --accent-purple: #8b5cf6;
    --accent-gold: #fbbf24;
    --accent-rose: #f43f5e;
    
    /* Text Colors */
    --text-main: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    
    --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 40%);
    background-attachment: fixed;
    min-height: 100vh;
    color: var(--text-main);
    overflow-x: hidden;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(6, 9, 19, 0.75), rgba(6, 9, 19, 0.85)), url('world_cup_banner.webp') no-repeat center center;
    background-size: cover;
    backdrop-filter: blur(10px);
    padding: 50px 20px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--accent-cyan), transparent);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.hero-left {
    flex: 1;
    min-width: 300px;
}

.hero-right {
    flex: 0 0 auto;
}

.main-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 10px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 30%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-title::before {
    content: '🏆 FIFA WORLD CUP 2026';
    display: block;
    font-size: 0.85rem;
    color: var(--accent-gold);
    letter-spacing: 4px;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.highlight {
    background: linear-gradient(135deg, var(--accent-cyan), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.timezone-info {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.timezone-info::before {
    content: '🌐';
}

/* Clock Widget */
.clock-widget {
    background: rgba(13, 20, 38, 0.7);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 18px 24px;
    text-align: center;
    min-width: 280px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
}

.clock-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-bottom: 6px;
    font-weight: 700;
    text-transform: uppercase;
}

.clock-time {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 4px;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px;
}

.clock-date {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Broadcaster Scrolling Ticker */
.broadcaster-ticker {
    display: flex;
    align-items: center;
    background: rgba(8, 12, 24, 0.95);
    border-bottom: 1px solid var(--border-color);
    height: 46px;
    overflow: hidden;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.ticker-title {
    background: linear-gradient(135deg, var(--accent-rose), #e11d48);
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
    position: relative;
    z-index: 5;
    box-shadow: 6px 0 12px rgba(0, 0, 0, 0.35);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
    margin-right: 6px;
    display: inline-block;
    box-shadow: 0 0 6px #ffffff;
    animation: livePulse 1.5s infinite;
}

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

.ticker-content-wrap {
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

/* Gradient fades on the edges of the ticker */
.ticker-content-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(8, 12, 24, 0.95));
    pointer-events: none;
    z-index: 2;
}

.ticker-scroll {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: scrollTicker 40s linear infinite;
    padding-left: 30px;
    white-space: nowrap;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-main);
    letter-spacing: 0.3px;
}

.ticker-item img {
    height: 24px;
    width: auto;
    max-width: 60px;
    object-fit: contain;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: #ffffff;
    padding: 2px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

@keyframes scrollTicker {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        /* Translating by 33.3333% (2 sets out of 6) to ensure seamless loop without gaps on wide screens */
        transform: translate3d(-33.3333%, 0, 0);
    }
}

/* Pause scroll on hover to let users read easily */
.broadcaster-ticker:hover .ticker-scroll {
    animation-play-state: paused;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

/* Intro Section */
.intro-section {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    padding: 24px 30px;
    border-radius: 16px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.intro-section h2 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    margin-bottom: 10px;
    font-size: 1.6rem;
    font-weight: 700;
}

.intro-section p {
    line-height: 1.6;
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Countdown Widget */
.countdown-section {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(139, 92, 246, 0.08));
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
    backdrop-filter: blur(12px);
}

.countdown-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-weight: 700;
}

.countdown-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(13, 20, 38, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 10px 15px;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-num {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 4px;
}

.countdown-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
}

/* Controls Section (Search + Filters) */
.controls-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    width: 100%;
}

.search-box-container {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: var(--text-muted);
    pointer-events: none;
}

.search-input {
    width: 100%;
    background: rgba(13, 20, 38, 0.75);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 12px 16px 12px 46px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
}

.search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 12px var(--primary-glow);
    background: rgba(13, 20, 38, 0.95);
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    gap: 8px;
    background: rgba(13, 20, 38, 0.4);
    padding: 5px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    color: var(--text-secondary);
}

.tab-btn:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.03);
}

.tab-btn.active {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 3px 10px rgba(59, 130, 246, 0.25);
}

/* Fixtures Section */
.fixtures-section {
    margin-bottom: 50px;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    font-size: 1.6rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Match Day */
.match-day {
    margin-bottom: 35px;
}

.match-day-title {
    color: var(--text-main);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 16px;
    border-left: 3px solid var(--primary);
    padding-left: 12px;
    letter-spacing: 0.5px;
}

/* Match Grid - Compact responsive grid */
.match-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

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

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

/* Match Card - Small, Colorful & Highly Attractive */
.match-card {
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.match-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.015) 0%, transparent 100%);
    pointer-events: none;
}

/* Match Header */
.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    background: rgba(4, 6, 14, 0.45);
    border-bottom: 1px solid var(--border-color);
}

.match-stage {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.match-status {
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-upcoming {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.25);
}

.status-live {
    background: rgba(244, 63, 94, 0.15);
    color: #fb7185;
    border: 1px solid rgba(244, 63, 94, 0.25);
    animation: pulse 2s infinite;
}

.status-knockout {
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
    border: 1px solid rgba(139, 92, 246, 0.25);
}

.status-final {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.25);
}

/* Match Body */
.match-body {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 10px;
    padding: 18px 16px;
    flex-grow: 1;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.team-flag {
    width: 44px;
    height: 30px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-smooth);
}

.match-card:hover .team-flag {
    transform: scale(1.08);
}

.flag-placeholder {
    width: 44px;
    height: 30px;
    background: rgba(13, 20, 38, 0.85);
    border: 1.5px dashed var(--text-muted);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 700;
}

.team-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
}

.team-code {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* VS / Score Bubble */
.match-vs-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 70px;
}

.score-display {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(4, 6, 14, 0.65);
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    margin-bottom: 6px;
    transition: var(--transition-smooth);
}

.score {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
}

.score-divider {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.vs-text {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 1.5px;
}

/* Match Footer */
.match-footer {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px 16px;
    background: rgba(4, 6, 14, 0.25);
    border-top: 1px solid var(--border-color);
}

.match-info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    font-size: 0.78rem;
}

.info-icon {
    font-size: 0.85rem;
}

.info-text {
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

/* Group Colorful Styling & Hover Glow Effects */
.group-A { border-left: 3px solid #3b82f6; }
.group-A:hover { border-color: #3b82f6; box-shadow: 0 6px 20px rgba(59, 130, 246, 0.2); }
.group-A .match-stage { color: #60a5fa; }

.group-B { border-left: 3px solid #10b981; }
.group-B:hover { border-color: #10b981; box-shadow: 0 6px 20px rgba(16, 185, 129, 0.2); }
.group-B .match-stage { color: #34d399; }

.group-C { border-left: 3px solid #8b5cf6; }
.group-C:hover { border-color: #8b5cf6; box-shadow: 0 6px 20px rgba(139, 92, 246, 0.2); }
.group-C .match-stage { color: #a78bfa; }

.group-D { border-left: 3px solid #ec4899; }
.group-D:hover { border-color: #ec4899; box-shadow: 0 6px 20px rgba(236, 72, 153, 0.2); }
.group-D .match-stage { color: #f472b6; }

.group-E { border-left: 3px solid #f59e0b; }
.group-E:hover { border-color: #f59e0b; box-shadow: 0 6px 20px rgba(245, 158, 11, 0.2); }
.group-E .match-stage { color: #fbbf24; }

.group-F { border-left: 3px solid #06b6d4; }
.group-F:hover { border-color: #06b6d4; box-shadow: 0 6px 20px rgba(6, 182, 212, 0.2); }
.group-F .match-stage { color: #22d3ee; }

.group-G { border-left: 3px solid #f43f5e; }
.group-G:hover { border-color: #f43f5e; box-shadow: 0 6px 20px rgba(244, 63, 94, 0.2); }
.group-G .match-stage { color: #fb7185; }

.group-H { border-left: 3px solid #14b8a6; }
.group-H:hover { border-color: #14b8a6; box-shadow: 0 6px 20px rgba(20, 184, 166, 0.2); }
.group-H .match-stage { color: #2dd4bf; }

.group-I { border-left: 3px solid #6366f1; }
.group-I:hover { border-color: #6366f1; box-shadow: 0 6px 20px rgba(99, 102, 241, 0.2); }
.group-I .match-stage { color: #818cf8; }

.group-J { border-left: 3px solid #84cc16; }
.group-J:hover { border-color: #84cc16; box-shadow: 0 6px 20px rgba(132, 204, 22, 0.2); }
.group-J .match-stage { color: #a3e635; }

.group-K { border-left: 3px solid #e11d48; }
.group-K:hover { border-color: #e11d48; box-shadow: 0 6px 20px rgba(225, 29, 72, 0.2); }
.group-K .match-stage { color: #fb7185; }

.group-L { border-left: 3px solid #a855f7; }
.group-L:hover { border-color: #a855f7; box-shadow: 0 6px 20px rgba(168, 85, 247, 0.2); }
.group-L .match-stage { color: #c084fc; }

.match-card:hover {
    transform: translateY(-3px);
    background: var(--bg-card-hover);
}

.match-card:hover .score-display {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Knockout Specific Cards */
.knockout-card {
    border-left: 3px solid var(--accent-purple);
}
.knockout-card:hover {
    border-color: var(--accent-purple);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.2);
}
.knockout-card .match-stage {
    color: #c084fc;
}

.final-card {
    border: 1.5px solid var(--accent-gold);
    border-left: 3px solid var(--accent-gold);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.03) 0%, rgba(13, 20, 38, 0.65) 100%);
}
.final-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.2);
}
.final-card .match-stage {
    color: var(--accent-gold);
}

/* No matches found text styling */
.no-matches {
    text-align: center;
    padding: 30px;
    font-size: 1rem;
    color: var(--text-secondary);
    background: var(--bg-card);
    border-radius: 10px;
    border: 1px dashed var(--border-color);
    width: 100%;
    grid-column: 1 / -1;
}

/* Host Cities Info */
.info-section {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.city-card {
    background: rgba(13, 20, 38, 0.4);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.city-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    background: rgba(13, 20, 38, 0.75);
}

.city-card h3 {
    margin-bottom: 8px;
    font-size: 1.15rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
}

.city-card p {
    line-height: 1.6;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Fun Facts */
.fun-facts {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.facts-container-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
}

@media (min-width: 768px) {
    .facts-container-layout {
        grid-template-columns: 1fr 2fr;
    }
}

.trophy-promo-card {
    background: rgba(13, 20, 38, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.trophy-promo-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.trophy-promo-card:hover {
    transform: translateY(-3px);
    border-color: rgba(251, 191, 36, 0.3);
    background: rgba(13, 20, 38, 0.6);
}

.trophy-img {
    width: 100%;
    max-height: 180px;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(251, 191, 36, 0.2));
    transition: var(--transition-smooth);
}

.trophy-promo-card:hover .trophy-img {
    transform: scale(1.06) rotate(2deg);
    filter: drop-shadow(0 12px 24px rgba(251, 191, 36, 0.35));
}

.trophy-text h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    color: var(--accent-gold);
    margin-bottom: 8px;
    font-weight: 700;
}

.trophy-text p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.fact-card {
    text-align: center;
    padding: 20px 15px;
    background: rgba(13, 20, 38, 0.4);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.fact-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    background: rgba(13, 20, 38, 0.75);
}

.fact-icon {
    font-size: 2.2rem;
    margin-bottom: 8px;
    display: inline-block;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
}

.fact-card h3 {
    color: var(--text-main);
    margin-bottom: 6px;
    font-size: 1.1rem;
    font-family: 'Outfit', sans-serif;
}

.fact-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Footer */
footer {
    background: rgba(4, 6, 14, 0.85);
    color: var(--text-secondary);
    text-align: center;
    padding: 30px 20px;
    margin-top: 50px;
    border-top: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

footer p {
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 10px;
}

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

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(244, 63, 94, 0.4);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(244, 63, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(244, 63, 94, 0);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .main-title {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .main-title::before {
        text-align: center;
    }
    
    .timezone-info {
        justify-content: center;
    }
    
    .clock-widget {
        width: 100%;
        max-width: 100%;
    }
    
    .section-title {
        font-size: 1.35rem;
        justify-content: center;
    }
    
    .match-body {
        padding: 14px 12px;
    }
    
    .team-flag {
        width: 40px;
        height: 28px;
    }
    
    .team-name {
        font-size: 0.8rem;
    }
    
    .score {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .countdown-grid {
        gap: 8px;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 8px;
    }
    
    .countdown-num {
        font-size: 1.5rem;
    }
    
    .countdown-label {
        font-size: 0.65rem;
    }
    
    .match-header {
        padding: 8px 12px;
    }
    
    .match-body {
        gap: 6px;
    }
    
    .match-footer {
        padding: 8px 12px;
    }
    
    .filter-tabs {
        width: 100%;
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
    }
    
    /* Broadcaster ticker mobile adjustments */
    .broadcaster-ticker {
        height: 38px;
    }
    
    .ticker-title {
        font-size: 0.6rem;
        padding: 0 10px;
        letter-spacing: 1px;
    }
    
    .ticker-scroll {
        gap: 35px;
        padding-left: 15px;
        animation-duration: 28s;
    }
    
    .ticker-item {
        font-size: 0.75rem;
        gap: 6px;
    }
    
    .ticker-item img {
        height: 18px;
        width: auto;
        max-width: 45px;
    }
}

/* Printing styles */
@media print {
    body {
        background: #ffffff;
        color: #000000;
    }
    
    .hero-section, .controls-section, .countdown-section, .broadcaster-ticker, footer {
        display: none;
    }
    
    .match-card {
        border: 1px solid #000000;
        box-shadow: none;
        break-inside: avoid;
        margin-bottom: 20px;
    }
}
