/* ============================================ */
/* RESET & BASE */
/* ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0e14;
    --bg-secondary: #111820;
    --bg-card: #16202a;
    --bg-hover: #1c2836;
    --bg-card-hover: #1e2a3a;
    --text-primary: #f0f4f8;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --gold: #fbbf24;
    --gold-dark: #f59e0b;
    --red: #dc2626;
    --green: #22c55e;
    --border-color: #1e293b;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    --card-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ============================================ */
/* SCROLLBAR */
/* ============================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* ============================================ */
/* NAVIGATION */
/* ============================================ */
.navbar {
    background: rgba(10, 14, 20, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.6rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo span:first-child {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 6px 12px;
    border-radius: 8px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a:hover {
    color: var(--text-primary);
    background: rgba(251, 191, 36, 0.1);
}

.nav-links a.active {
    color: var(--gold);
    background: rgba(251, 191, 36, 0.15);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.live-indicator {
    background: var(--red);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(220, 38, 38, 0.3);
    }

    50% {
        box-shadow: 0 0 25px rgba(220, 38, 38, 0.6);
    }
}

.live-indicator i {
    font-size: 0.5rem;
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ============================================ */
/* SECTIONS */
/* ============================================ */
.section {
    display: none;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeIn 0.5s ease;
}

.section.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header {
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-header p {
    color: var(--text-secondary);
    margin-top: 4px;
}

/* ============================================ */
/* HERO */
/* ============================================ */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 24px;
    padding: 50px 60px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.05), transparent 70%);
    border-radius: 50%;
}

.hero-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 12px;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--bg-primary);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
}

.cta-btn:hover {
    background: var(--gold-dark);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.3);
}

.hero-image {
    flex: 0 0 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ============================================ */
/* ADS - FULL FLEXIBLE (No Fixed Sizes) */
/* ============================================ */
.ad-container {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    margin: 10px 0;
    width: 100%;
}

.ad-wrapper {
    padding: 8px;
    width: 100%;
}

.ad-label {
    display: block;
    font-size: 0.6rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    text-align: center;
}

.ad-space {
    width: 100%;
    min-height: 40px;
    background: rgba(148, 163, 184, 0.03);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-placeholder {
    width: 100%;
    padding: 12px;
    text-align: center;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 40px;
}

.ad-placeholder i {
    font-size: 1.5rem;
    color: var(--text-muted);
    opacity: 0.5;
}

.ad-placeholder span {
    font-size: 0.8rem;
    font-weight: 600;
}

/* Sidebar ads - fully flexible */
.ad-sidebar .ad-space {
    min-height: 100px;
}

.ad-sidebar .ad-placeholder {
    min-height: 100px;
}

/* Player sidebar ads - fully flexible */
.player-side-ad .ad-space {
    min-height: 150px;
}

.player-side-ad .ad-placeholder {
    min-height: 150px;
}

/* ============================================ */
/* CONTENT WITH AD SIDEBAR */
/* ============================================ */
.content-with-ad {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 24px;
    align-items: start;
}

.main-content {
    min-width: 0;
}

.sidebar-ad {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 100px;
}

.sidebar-ad .ad-container {
    width: 100%;
}

/* ============================================ */
/* FILTERS */
/* ============================================ */
.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    background: var(--bg-secondary);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
    align-items: flex-end;
}

.filter-group {
    flex: 1;
    min-width: 150px;
}

.filter-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-group select,
.filter-group input {
    width: 100%;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
    cursor: pointer;
}

.filter-group select:focus,
.filter-group input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.filter-group select option {
    background: var(--bg-primary);
}

.search-group {
    flex: 2;
    min-width: 200px;
}

.search-wrapper {
    position: relative;
}

.search-wrapper input {
    padding-right: 40px;
}

.search-wrapper .search-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.refresh-btn {
    background: var(--gold);
    color: var(--bg-primary);
    border: none;
    padding: 10px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    height: 44px;
}

.refresh-btn:hover {
    background: var(--gold-dark);
    transform: scale(1.02);
}

.refresh-btn i {
    transition: transform 0.5s ease;
}

.refresh-btn:hover i {
    transform: rotate(180deg);
}

/* ============================================ */
/* SCHEDULE GRID */
/* ============================================ */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

/* ============================================ */
/* MATCH CARD */
/* ============================================ */
.match-card {
    background: var(--bg-card);
    border-radius: var(--card-radius);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.match-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.match-card .match-head {
    background: rgba(251, 191, 36, 0.05);
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.match-card .league-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gold);
}

.match-card .league-badge img {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    object-fit: contain;
}

.match-card .match-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.match-card .match-row {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.match-card .match-teams {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 8px;
}

.match-card .match-teams .team {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}

.match-card .match-teams .team img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: contain;
    background: #1e293b;
    padding: 4px;
}

.match-card .match-teams .vs-middle {
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 1px;
}

.match-card .match-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

.match-card .match-time {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.match-card .countdown {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 600;
    background: rgba(251, 191, 36, 0.1);
    padding: 2px 12px;
    border-radius: 20px;
}

.match-card .countdown.live {
    background: var(--red);
    color: #fff;
    animation: pulse-bg 2s infinite;
}

.match-card .watch-btn {
    margin: 0 20px 20px;
    background: var(--gold);
    border: none;
    padding: 12px 0;
    border-radius: 10px;
    font-weight: 700;
    color: var(--bg-primary);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
    width: auto;
}

.match-card .watch-btn:hover {
    background: var(--gold-dark);
    transform: scale(1.02);
}

.match-card .watch-btn i {
    font-size: 0.9rem;
}

.match-card .watch-btn:hover {
    background: var(--gold-dark);
    transform: scale(1.02);
}

/* ============================================ */
/* LOADING & ERROR */
/* ============================================ */
.loader {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

.loader i {
    font-size: 3rem;
    color: var(--gold);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader p {
    margin-top: 16px;
    color: var(--text-secondary);
}

.error-msg {
    background: rgba(220, 38, 38, 0.1);
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    grid-column: 1 / -1;
    color: #fca5a5;
    border: 1px solid var(--red);
}

.no-matches {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: var(--text-secondary);
    background: var(--bg-secondary);
    border-radius: 16px;
}

/* ============================================ */
/* ARTICLE */
/* ============================================ */
.featured-article {
    background: linear-gradient(135deg, #0f172a, #1a2332);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--border-color);
    margin-top: 50px;
}

.article-header {
    margin-bottom: 24px;
}

.article-badge {
    background: var(--gold);
    color: var(--bg-primary);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 12px;
}

.article-header h2 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
}

.article-content {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: 30px;
    align-items: start;
}

.article-image {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(251, 191, 36, 0.05);
    border-radius: 16px;
    padding: 30px;
    border: 1px dashed var(--border-color);
    min-height: 200px;
}

.article-text p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.9;
    font-size: 0.98rem;
}

.article-text strong {
    color: var(--text-primary);
}

.article-text h3 {
    color: var(--gold);
    margin: 20px 0 10px;
    font-size: 1.2rem;
}

.article-text ul {
    list-style: none;
    margin: 16px 0;
}

.article-text ul li {
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
}

.article-text ul li i {
    color: var(--gold);
    width: 20px;
}

/* ============================================ */
/* PLAYER PAGE */
/* ============================================ */
.player-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Match Info Bar */
.match-info-bar {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px 24px;
    margin: 20px 0;
}

.match-info-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.match-teams-display {
    display: flex;
    align-items: center;
    gap: 20px;
}

.team-display {
    display: flex;
    align-items: center;
    gap: 10px;
}

.team-display img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: contain;
    background: #1e293b;
    padding: 4px;
}

.team-display span {
    font-weight: 700;
    font-size: 1.1rem;
}

.vs-display {
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.8rem;
}

.match-meta {
    display: flex;
    gap: 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.match-meta i {
    margin-right: 6px;
    color: var(--gold);
}

/* Player Container */
.player-container {
    display: grid;
    grid-template-columns: 160px 1fr 160px;
    gap: 16px;
    margin: 20px 0;
}

.player-main {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.player-wrapper {
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.player-iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #0a0e14;
}

.player-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
}

.player-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    cursor: pointer;
    transition: var(--transition);
}

.player-overlay:hover {
    background: rgba(0, 0, 0, 0.5);
}

.player-overlay i {
    font-size: 4rem;
    color: var(--gold);
}

.player-overlay span {
    margin-top: 12px;
    color: var(--text-secondary);
    font-weight: 600;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.control-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 6px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.control-btn:hover {
    background: var(--bg-hover);
    border-color: var(--gold);
}

.stream-status {
    margin-left: auto;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Player Side Ads - Fully Flexible */
.player-side-ad {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.player-side-ad .ad-space {
    min-height: 100px;
}

.player-side-ad .ad-placeholder {
    min-height: 100px;
}

/* Related Matches */
.related-matches {
    margin-top: 40px;
}

.related-matches h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.related-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.related-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--gold);
    transform: translateY(-4px);
}

.related-card .related-teams {
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.related-card .related-teams .vs {
    color: var(--text-muted);
    font-size: 0.7rem;
}

.related-card .related-time {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 8px;
}

/* ============================================ */
/* FOOTER */
/* ============================================ */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 40px 20px 20px;
    margin-top: 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-brand h3 {
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 20px auto 0;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ============================================ */
/* RESPONSIVE */
/* ============================================ */
@media (max-width: 1024px) {
    .content-with-ad {
        grid-template-columns: 1fr;
    }

    .sidebar-ad {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 16px;
        position: relative;
        top: 0;
    }

    .player-container {
        grid-template-columns: 1fr;
    }

    .player-side-ad {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .hero {
        padding: 40px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .article-content {
        grid-template-columns: 1fr;
    }

    .schedule-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        padding: 20px;
        border-bottom: 1px solid var(--border-color);
        gap: 8px;
    }

    .nav-links.open {
        display: flex;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-stats {
        justify-content: center;
        gap: 20px;
    }

    .hero-image {
        display: none;
    }

    .filters {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-group {
        min-width: unset;
    }

    .refresh-btn {
        justify-content: center;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .article-header h2 {
        font-size: 1.5rem;
    }

    .match-teams-display {
        flex-wrap: wrap;
        justify-content: center;
    }

    .match-meta {
        flex-wrap: wrap;
        justify-content: center;
    }

    .player-side-ad {
        grid-template-columns: 1fr;
    }

    .match-card .match-teams {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .match-card .match-teams .vs-middle {
        padding: 4px 0;
    }

    .sidebar-ad {
        grid-template-columns: 1fr;
    }

    .match-info-content {
        flex-direction: column;
        text-align: center;
    }

    .match-teams-display {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 12px;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .featured-article {
        padding: 20px;
    }

    .article-header h2 {
        font-size: 1.2rem;
    }
}