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

body {
    font-family: 'Inter', sans-serif;
    background: #0b0e14;
    color: #f0f4fa;
    padding: 24px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #1e2630;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #f5c842, #e89c31);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav {
    display: flex;
    gap: 24px;
    font-size: 15px;
    font-weight: 500;
    flex-wrap: wrap;
}

.nav a {
    color: #a6b3c9;
    text-decoration: none;
    transition: 0.2s;
}

.nav a:hover {
    color: #fff;
}

.nav a.active {
    color: #f5c842;
}

/* HERO */
.hero {
    background: linear-gradient(145deg, #131b26, #0b0e14);
    border-radius: 24px;
    padding: 48px 40px;
    margin-bottom: 40px;
    border: 1px solid #1e2630;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.hero h1 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
}

.hero h1 span {
    color: #f5c842;
}

.hero p {
    color: #a6b3c9;
    margin-top: 12px;
    font-size: 18px;
    max-width: 500px;
}

.hero-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.hero-tags span {
    background: #1e2630;
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 500;
    color: #d0dbe8;
}

.hero-date {
    background: #1e2630;
    padding: 12px 24px;
    border-radius: 60px;
    font-size: 14px;
    color: #a6b3c9;
    border: 1px solid #2a3440;
    white-space: nowrap;
}

/* SECTION TITLE */
.section-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.section-title a {
    color: #f5c842;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

/* GRID */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

/* CARD */
.card {
    background: #131b26;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #1e2630;
    transition: 0.2s;
}

.card:hover {
    border-color: #f5c84240;
}

.card-img {
    height: 180px;
    background: #1e2630;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    color: #2a3440;
}

.card-body {
    padding: 18px 20px 20px;
}

.card-tag {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #f5c842;
    margin-bottom: 6px;
}

.card h3 {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 6px;
}

.card p {
    font-size: 14px;
    color: #a6b3c9;
    line-height: 1.5;
}

/* TABLE */
.table-wrap {
    background: #131b26;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #1e2630;
    margin-bottom: 48px;
}

.table-row {
    display: grid;
    grid-template-columns: 30px 1fr 60px 60px 60px;
    padding: 12px 0;
    border-bottom: 1px solid #1a222e;
    font-size: 14px;
    align-items: center;
}

.table-row:last-child {
    border-bottom: none;
}

.table-row .pos {
    color: #a6b3c9;
    font-weight: 500;
}

.table-row .team {
    font-weight: 500;
}

.table-row .pts {
    font-weight: 700;
    color: #f5c842;
}

/* FOOTER */
.footer {
    border-top: 1px solid #1e2630;
    padding-top: 24px;
    margin-top: 16px;
    font-size: 14px;
    color: #5e6f84;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer a {
    color: #a6b3c9;
    text-decoration: none;
}

.footer a:hover {
    color: #f0f4fa;
}

/* MOBILE */
@media (max-width: 768px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .hero {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero h1 {
        font-size: 28px;
    }

    .nav {
        gap: 14px;
        font-size: 13px;
    }

    .table-row {
        grid-template-columns: 25px 1fr 40px 40px 40px;
        font-size: 13px;
    }

    .header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .hero-date {
        white-space: normal;
    }
}