* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #ffffff;
    color: #111111;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.container {
    max-width: 560px;
    margin: 0 auto;
    padding: 40px 32px 40px;
}

.page-header {
    margin-bottom: 32px;
}

.logo {
    margin: 0;
    font-size: 40px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
}

.logo-main {
    color: #3A3A3A; /* updated */
}

.logo-sub {
    color: #A6A6A6;
}

/* ---------- Cards ---------- */

.game-card,
.main-card {
    border-radius: 5px;
}

.game-card {
    background: #ffffff;
    border: 1px solid #DDDDDD;
    padding: 29px 24px 17px;
    margin-bottom: 45px;
}

.main-card {
    background: #FBFBFB;
    padding: 24px 24px 24px 27px;
    margin-bottom: 16px;
}

.main-card:last-child {
    margin-bottom: 0;
}

/* ---------- Game Header ---------- */

.team-name {
    margin: 0 0 4px;
    font-size: 20px;
    font-weight: 800;
}

.opponent-line,
.game-meta {
    font-size: 20px;
    font-weight: 500;
}

.opponent-line {
    margin: 0 0 4px;
}

.game-meta {
    margin: 0;
}

/* ---------- Status Row ---------- */

.status-row {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
    margin-top: 24px;
}

.status-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* circles */

.status-circle {
    width: 50px;
    height: 50px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 17px;
}

.status-circle.green {
    background: #6EB578;
}

.status-circle.red {
    background: #E77272;
}

.status-circle.gray {
    background: #A6A6A6;
}

/* labels */

.status-label {
    font-size: 16px;
    font-weight: 900;
    text-align: center;
}

.status-label.in {
    color: #6EB578;
}

.status-label.out {
    color: #E77272;
}

.status-label.no-reply {
    color: #A6A6A6; /* MATCHES circle now */
}

/* ---------- Section Headers ---------- */

.section-title {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.section-title.in {
    color: #5F9B67; /* darker green */
}

.section-title.out {
    color: #D86969; /* darker red */
}

.section-title.no-reply {
    color: #707070; /* lighter than circle */
    font-weight: 700; /* prevents heaviness */
}

/* ---------- Players ---------- */

.player-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.player-row {
    margin: 0 0 4px;
}

.player-name {
    font-size: 18px;
    font-weight: 400;
}

.player-sub {
    margin-top: 4px;
    font-size: 13px;
    color: #707070;
}

/* ---------- Misc ---------- */

.empty {
    font-size: 16px;
    color: #707070;
}