:root {
    --color-navy: #0a1128;
    --color-navy-light: #162244;
    --color-cyan: #00d4ff;
    --color-cyan-dark: #0099cc;
    --color-red: #ff2e4d;
    --color-red-dark: #cc0020;
    --color-green: #00e676;
    --color-white: #ffffff;
    --color-white-soft: #f0f4ff;
    --color-gray: #8892a8;
    --color-glass: rgba(255, 255, 255, 0.07);
    --color-glass-border: rgba(255, 255, 255, 0.12);
    --shadow-premium: 0 25px 60px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(0, 212, 255, 0.15);
    --shadow-card: 0 15px 40px rgba(0, 0, 0, 0.3);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font: 'Inter', sans-serif;
    --gradient-hero: linear-gradient(135deg, #0a1128 0%, #1a2a5e 50%, #0d1f3c 100%);
    --gradient-card: linear-gradient(145deg, rgba(22, 34, 68, 0.85), rgba(10, 17, 40, 0.92));
    --gradient-cyan: linear-gradient(135deg, #00d4ff, #0099cc);
    --gradient-red: linear-gradient(135deg, #ff2e4d, #cc0020);
    --gradient-green: linear-gradient(135deg, #00e676, #00b248);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    background: var(--color-navy);
    color: var(--color-white-soft);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-navy); }
::-webkit-scrollbar-thumb { background: var(--color-cyan); border-radius: 10px; }

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(10, 17, 40, 0.82);
    backdrop-filter: blur(18px) saturate(1.4);
    border-bottom: 1px solid var(--color-glass-border);
    transition: var(--transition);
}
.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { font-size: 28px; filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.3)); }
.logo-text { font-size: 22px; font-weight: 800; color: var(--color-white); letter-spacing: -0.5px; }
.logo-text span { color: var(--color-cyan); font-weight: 900; }
.nav-links { display: flex; list-style: none; gap: 8px; }
.nav-links li a {
    color: var(--color-gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    transition: var(--transition);
    letter-spacing: 0.3px;
}
.nav-links li a:hover, .nav-links li a.active {
    color: var(--color-white);
    background: var(--color-glass);
    backdrop-filter: blur(4px);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.08);
}
.nav-links li a.active { color: var(--color-cyan); background: rgba(0, 212, 255, 0.12); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-toggle span { width: 26px; height: 2.5px; background: var(--color-white); border-radius: 4px; }

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    background: var(--gradient-hero);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(255, 46, 77, 0.06) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 80%, rgba(0, 230, 118, 0.04) 0%, transparent 40%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300d4ff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(255, 46, 77, 0.04) 0%, transparent 40%);
    pointer-events: none;
}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 900px; }
.hero-badge {
    display: inline-block;
    background: var(--color-glass);
    backdrop-filter: blur(8px);
    border: 1px solid var(--color-glass-border);
    padding: 6px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-cyan);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeInDown 0.8s ease forwards;
}
.hero-title {
    font-size: clamp(2.8rem, 10vw, 5.8rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 20px;
    animation: fadeInUp 0.9s ease forwards;
}
.hero-title span {
    background: var(--gradient-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 620px;
    margin: 0 auto 36px;
    font-weight: 400;
    line-height: 1.8;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.1s;
    opacity: 0;
    animation-fill-mode: forwards;
}
.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-cyan);
    color: var(--color-navy);
    font-weight: 700;
    font-size: 16px;
    padding: 16px 42px;
    border-radius: 60px;
    text-decoration: none;
    box-shadow: 0 8px 40px rgba(0, 212, 255, 0.3);
    transition: var(--transition);
    animation: fadeInUp 1.1s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
    letter-spacing: 0.5px;
}
.btn-hero:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 50px rgba(0, 212, 255, 0.45);
}
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
    animation: fadeInUp 1.2s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
}
.hero-stats span { font-size: 15px; color: rgba(255, 255, 255, 0.6); display: flex; align-items: center; gap: 8px; }
.hero-stats strong { font-size: 28px; font-weight: 800; color: var(--color-white); display: block; text-align: center; }
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.25);
    font-size: 28px;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 2;
}

/* Search & Filters */
.search-section { padding: 40px 0 20px; background: var(--color-navy); position: relative; z-index: 5; }
.search-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 60px;
    border: 1px solid var(--color-glass-border);
    padding: 4px 4px 4px 24px;
    backdrop-filter: blur(8px);
    transition: var(--transition);
    max-width: 700px;
    margin: 0 auto 28px;
}
.search-wrapper:focus-within { border-color: var(--color-cyan); box-shadow: 0 0 30px rgba(0, 212, 255, 0.06); }
.search-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 16px 8px;
    color: var(--color-white);
    font-size: 15px;
    font-family: var(--font);
    outline: none;
}
.search-input::placeholder { color: var(--color-gray); font-weight: 400; }
.search-btn {
    background: var(--gradient-cyan);
    border: none;
    color: var(--color-navy);
    font-size: 18px;
    padding: 12px 28px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
}
.search-btn:hover { transform: scale(1.04); box-shadow: 0 0 30px rgba(0, 212, 255, 0.2); }
.filter-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}
.filter-btn {
    background: transparent;
    border: 1px solid var(--color-glass-border);
    color: var(--color-gray);
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.3px;
}
.filter-btn:hover { border-color: var(--color-cyan); color: var(--color-white); background: rgba(0, 212, 255, 0.06); }
.filter-btn.active {
    background: var(--gradient-cyan);
    border-color: var(--color-cyan);
    color: var(--color-navy);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.2);
}

/* Gallery */
.gallery-section { padding: 30px 0 60px; background: var(--color-navy); }
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 12px;
}
.section-header h2 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--color-white), var(--color-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.match-count { font-size: 14px; color: var(--color-gray); background: var(--color-glass); padding: 6px 18px; border-radius: 50px; border: 1px solid var(--color-glass-border); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 28px;
}
.match-card {
    background: var(--gradient-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-glass-border);
    backdrop-filter: blur(8px);
    transition: var(--transition);
    position: relative;
}
.match-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.25);
    box-shadow: var(--shadow-premium), 0 0 40px rgba(0, 212, 255, 0.04);
}
.match-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-md);
    padding: 1px;
    background: linear-gradient(135deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: var(--transition);
}
.match-card:hover::before { opacity: 1; }
.card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--color-navy-light);
}
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.match-card:hover .card-image img { transform: scale(1.08); }
.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    opacity: 0.85;
    z-index: 2;
}
.match-card:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.12);
    background: rgba(0, 212, 255, 0.3);
    border-color: var(--color-cyan);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.2);
}
.card-score {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 800;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 0.5px;
    z-index: 2;
}
.card-flags {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 6px;
    z-index: 2;
}
.flag { font-size: 22px; filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5)); }
.card-body { padding: 18px 20px 22px; }
.card-teams {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 16px;
    color: var(--color-white);
    margin-bottom: 6px;
}
.card-teams span { flex: 1; text-align: center; }
.card-teams span:first-child { text-align: left; }
.card-teams span:last-child { text-align: right; }
.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--color-gray);
    margin: 8px 0 14px;
    padding-top: 8px;
    border-top: 1px solid var(--color-glass-border);
}
.stage {
    color: var(--color-cyan);
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(0, 212, 255, 0.08);
    padding: 3px 12px;
    border-radius: 50px;
}
.date { font-size: 12px; }
.btn-watch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-cyan);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
    padding: 6px 0;
}
.btn-watch:hover { color: var(--color-white); gap: 14px; }

/* Bannières de drapeaux (remplacement des images) */
.flag-banner {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(10,17,40,0.85), rgba(26,42,94,0.85));
    backdrop-filter: blur(4px);
    z-index: 1;
    transition: var(--transition);
}
.flag-big {
    font-size: 4.5rem;
    line-height: 1;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.6));
    text-shadow: 0 0 20px rgba(0,212,255,0.3);
}
.latest-image .flag-banner {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

/* Latest */
.latest-section { padding: 40px 0 60px; background: var(--color-navy-light); border-top: 1px solid var(--color-glass-border); border-bottom: 1px solid var(--color-glass-border); }
.latest-badge { font-size: 12px; font-weight: 700; color: var(--color-navy); background: var(--gradient-green); padding: 4px 16px; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.5px; }
.latest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}
.latest-card {
    background: var(--gradient-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-glass-border);
    transition: var(--transition);
    backdrop-filter: blur(8px);
}
.latest-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 212, 255, 0.2);
    box-shadow: var(--shadow-premium);
}
.latest-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.latest-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.latest-card:hover .latest-image img { transform: scale(1.05); }
.latest-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 212, 255, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
    z-index: 2;
}
.latest-card:hover .latest-play {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(0, 212, 255, 0.25);
    border-color: var(--color-cyan);
}
.latest-score {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 800;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 2;
}
.latest-body { padding: 20px 24px 24px; }
.latest-teams { display: flex; gap: 16px; font-size: 14px; font-weight: 600; color: var(--color-cyan); margin-bottom: 6px; }
.latest-body h3 { font-size: 18px; font-weight: 700; color: var(--color-white); margin-bottom: 8px; line-height: 1.3; }
.latest-body p { font-size: 14px; color: var(--color-gray); margin-bottom: 14px; line-height: 1.6; }
.latest-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--color-glass-border);
    font-size: 12px;
    color: var(--color-gray);
}
.btn-latest { color: var(--color-cyan); text-decoration: none; font-weight: 600; font-size: 13px; transition: var(--transition); }
.btn-latest:hover { color: var(--color-white); }

/* Footer */
.footer {
    background: var(--color-navy);
    padding: 60px 0 30px;
    border-top: 1px solid var(--color-glass-border);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 40px;
}
.footer-brand p { color: var(--color-gray); font-size: 14px; max-width: 320px; margin: 16px 0 22px; line-height: 1.7; }
.footer-social { display: flex; gap: 12px; }
.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-glass);
    border: 1px solid var(--color-glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    color: var(--color-gray);
    transition: var(--transition);
}
.social-icon:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--color-cyan);
    color: var(--color-cyan);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.08);
}
.footer-links h4 { color: var(--color-white); font-size: 15px; font-weight: 700; margin-bottom: 16px; }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { color: var(--color-gray); text-decoration: none; font-size: 14px; transition: var(--transition); }
.footer-links ul li a:hover { color: var(--color-cyan); }
.footer-newsletter h4 { color: var(--color-white); font-size: 15px; font-weight: 700; margin-bottom: 12px; }
.footer-newsletter p { color: var(--color-gray); font-size: 14px; margin-bottom: 16px; line-height: 1.6; }
.newsletter-input {
    display: flex;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50px;
    border: 1px solid var(--color-glass-border);
    overflow: hidden;
    transition: var(--transition);
}
.newsletter-input:focus-within { border-color: var(--color-cyan); }
.newsletter-input input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 14px 18px;
    color: var(--color-white);
    font-family: var(--font);
    font-size: 14px;
    outline: none;
}
.newsletter-input input::placeholder { color: var(--color-gray); }
.newsletter-input button {
    background: var(--gradient-cyan);
    border: none;
    color: var(--color-navy);
    padding: 0 24px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}
.newsletter-input button:hover { background: var(--gradient-red); color: var(--color-white); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    border-top: 1px solid var(--color-glass-border);
    font-size: 13px;
    color: var(--color-gray);
    flex-wrap: wrap;
    gap: 12px;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-12px); }
    60% { transform: translateX(-50%) translateY(-6px); }
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .latest-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 17, 40, 0.96);
        backdrop-filter: blur(18px);
        flex-direction: column;
        padding: 20px 24px;
        gap: 4px;
        border-bottom: 1px solid var(--color-glass-border);
    }
    .nav-links li a { display: block; padding: 12px 16px; border-radius: var(--radius-sm); }
    .nav-toggle { display: flex; }
    .hero-title { font-size: 2.4rem; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .hero-stats strong { font-size: 22px; }
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; }
    .latest-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .filter-group { gap: 6px; }
    .filter-btn { font-size: 11px; padding: 6px 14px; }
    .search-wrapper { padding: 4px 4px 4px 16px; }
    .search-input { padding: 12px 6px; font-size: 14px; }
    .search-btn { padding: 10px 18px; font-size: 15px; }
    .section-header h2 { font-size: 22px; }
    .hero-badge { font-size: 11px; padding: 4px 16px; }
    .btn-hero { padding: 14px 32px; font-size: 14px; }
    .card-score { font-size: 15px; padding: 3px 12px; }
    .play-icon { width: 44px; height: 44px; font-size: 18px; }
    .latest-play { width: 48px; height: 48px; font-size: 20px; }
    .latest-body h3 { font-size: 16px; }
    .footer-newsletter .newsletter-input input { padding: 12px 14px; }
    .flag-big { font-size: 3rem; }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero { padding: 100px 16px 60px; min-height: 90vh; }
    .hero-title { font-size: 1.8rem; letter-spacing: -1px; }
    .hero-subtitle { font-size: 0.95rem; }
    .hero-stats { gap: 16px; }
    .hero-stats span { font-size: 12px; }
    .hero-stats strong { font-size: 18px; }
    .gallery-grid { grid-template-columns: 1fr; gap: 18px; }
    .filter-group { gap: 4px; }
    .filter-btn { font-size: 10px; padding: 5px 12px; }
    .btn-hero { padding: 12px 24px; font-size: 13px; }
    .card-teams { font-size: 14px; }
    .card-meta { font-size: 11px; }
    .btn-watch { font-size: 12px; }
    .latest-card { border-radius: var(--radius-sm); }
    .latest-body { padding: 16px 18px 20px; }
    .latest-body h3 { font-size: 15px; }
    .latest-body p { font-size: 13px; }
    .footer { padding: 40px 0 20px; }
    .footer-grid { gap: 24px; }
    .logo-text { font-size: 18px; }
    .logo-icon { font-size: 22px; }
    .social-icon { width: 38px; height: 38px; font-size: 15px; }
    .newsletter-input input { font-size: 13px; padding: 10px 12px; }
    .newsletter-input button { padding: 0 16px; font-size: 16px; }
    .hero-scroll { display: none; }
    .play-icon { width: 38px; height: 38px; font-size: 15px; }
    .card-score { font-size: 13px; padding: 2px 10px; bottom: 10px; right: 10px; }
    .flag { font-size: 18px; }
    .card-flags { top: 8px; left: 8px; gap: 4px; }
    .match-count { font-size: 12px; padding: 4px 12px; }
    .section-header { margin-bottom: 20px; }
    .section-header h2 { font-size: 20px; }
    .latest-score { font-size: 14px; padding: 2px 10px; bottom: 8px; right: 8px; }
    .latest-play { width: 40px; height: 40px; font-size: 16px; }
    .latest-meta { font-size: 11px; flex-wrap: wrap; gap: 6px; }
    .btn-latest { font-size: 12px; }
    .footer-brand p { font-size: 13px; }
    .footer-links ul li a { font-size: 13px; }
    .footer-links h4 { font-size: 14px; }
    .footer-newsletter p { font-size: 13px; }
    .footer-bottom { font-size: 12px; }
    .flag-big { font-size: 2.4rem; }
}