#standings-content {
    width: 85vw;
    max-width: 1500px;
    padding: 40px 0 96px;
}

#standings-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
    gap: 16px;
    flex-wrap: wrap;
}

.header-text {
    margin: 0;
    color: #fff;
    font-family: "Abolition", sans-serif;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.header-text.title {
    font-size: 56px;
    line-height: 1;
    letter-spacing: 4px;
}

.header-text.subtitle {
    font-size: 20px;
    letter-spacing: 5px;
    color: rgba(255,255,255,0.45);
    margin-top: 10px;
    font-family: "Archimoto V01", sans-serif;
    font-weight: normal;
}

.nav-to-bracket {
    font-family: "Archimoto V01", sans-serif;
    font-size: 15px;
    letter-spacing: 2.5px;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.15);
    padding: 12px 22px;
    border-radius: 2px;
    transition: color 0.15s, border-color 0.15s;
    white-space: nowrap;
}

.nav-to-bracket:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}

#groups-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
}

.group-section {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    overflow: hidden;
}

.group-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 28px;
    background: rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.group-label {
    font-family: "Abolition", sans-serif;
    font-size: 26px;
    letter-spacing: 4px;
    color: #fff;
}

.group-advances-note {
    font-family: "Archimoto V01", sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
}

.standings-table {
    width: 100%;
    border-collapse: collapse;
    font-family: "Archimoto V01", sans-serif;
}

.standings-table thead th {
    padding: 14px 18px;
    font-size: 13px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.4);
    text-align: center;
    font-weight: normal;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.standings-table thead th.col-rank { width: 52px; }
.standings-table thead th.col-team { text-align: left; }

.standing-row td {
    padding: 18px 18px;
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.1s;
}

.standing-row:last-child td { border-bottom: none; }
.standing-row:hover td { background: rgba(255,255,255,0.03); }

.standing-row.advances {
    border-left: 4px solid #4ade80;
}

.col-rank {
    font-size: 17px;
    color: rgba(255,255,255,0.35);
    font-family: "Archimoto V01 Black", sans-serif;
}

.col-team {
    text-align: left !important;
    display: flex;
    align-items: center;
    gap: 14px;
}

.team-logo-sm {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
}

.team-name-link {
    color: #fff;
    text-decoration: none;
    font-family: "Archimoto V01 Black", sans-serif;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: color 0.15s;
}

.team-name-link:hover { color: rgba(255,255,255,0.7); }

.seed-tag {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.06);
    padding: 3px 8px;
    border-radius: 2px;
    letter-spacing: 0.5px;
    margin-left: 4px;
}

.val-win {
    color: #4ade80;
    font-family: "Archimoto V01 Black", sans-serif;
}

.val-loss {
    color: rgba(255,80,80,0.85);
    font-family: "Archimoto V01 Black", sans-serif;
}

.val-map-pct {
    font-family: "Archimoto V01 Black", sans-serif;
    color: rgba(255,255,255,0.7);
}

.empty-state {
    font-family: "Archimoto V01", sans-serif;
    color: rgba(255,255,255,0.3);
    letter-spacing: 2px;
    font-size: 13px;
    text-align: center;
    padding: 60px 0;
}

@media screen and (max-width: 768px) {
    #standings-content { width: 100%; padding: 20px 16px 80px; box-sizing: border-box; }
    #standings-header { margin-bottom: 24px; }
    .header-text.title { font-size: 26px; }
    #groups-grid { grid-template-columns: 1fr; gap: 20px; }
}

@media screen and (max-width: 480px) {
    .header-text.title { font-size: 20px; letter-spacing: 2px; }
    .standings-table thead th,
    .standing-row td { padding: 10px 8px; font-size: 12px; }
    .team-name-link { font-size: 12px; }
}
