﻿body {
    font-family: "Bebas Neue", sans-serif;
    background: #f5f5f5;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.hero {
    position: relative;
    width: 100%;
    height: 30vmin;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 20%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.4) 0%, rgba(196, 30, 58, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    padding-left: 60px;
    width: 100%;
    max-width: 100%;
}

.hero-title {
    font-size: 13vmin;
    font-weight: 900;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1;
    word-spacing: 9999px;
    margin: 0;
}

.main-content {
    display: flex;
    margin: 10px 0;
    gap: 10px;
    flex-direction: column;
}

.stat-section {
    display: flex;
    background-color: #b21724;
    gap: 10px;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.stat-number {
    font-size: 10vmin;
    line-height: 1;
}

.stat-label {
    font-size: 6vmin;
}

.scorers-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 10px;
    row-gap: 3px;
    font-size: 4vmin;
    max-width: 800px;
    align-self: center;
}

.scorers-table > :nth-child(-n + 3) {
    font-weight: bold;
    border-bottom: 2px solid white;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .hero-content {
        padding-left: 20px;
        gap: 25px;
    }
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
    body {
        background: #0a0a0a;
        color: #e6eef8;
    }
}