/* =========================
   BASE
========================= */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #fff;
    background: url("https://images.unsplash.com/photo-1620742820748-87c09249a72a?q=80&w=654&auto=format&fit=crop") no-repeat center center fixed;
    background-size: cover;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(139, 46, 0, 0.55);
    z-index: -1;
}

/* =========================
   HEADER
========================= */
.header {
    text-align: center;
    padding: 14px;
    font-size: 20px;
    background: rgba(139, 46, 0, 0.7);
    border-radius: 0 0 60px 60px;
    color: #ffe7c2;
    font-weight: bold;
}

/* =========================
   HOME BUTTON
========================= */
.top-nav {
    display: flex;
    justify-content: center;
    margin: 12px 0;
}

.home-btn {
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(0,0,0,0.4);
    color: #ffe082;
    text-decoration: none;
    font-weight: bold;
}

/* =========================
   CONTAINER
========================= */
.container {
    max-width: 520px;
    margin: 0 auto;
    padding: 10px;
}

/* =========================
   GROUP TITLE
========================= */
.group-title {
    text-align: center;
    margin: 18px 0 10px;
    font-size: 16px;
    font-weight: bold;
    color: #ffe082;
}

/* =========================
   MATCH ROW (1 ZEILE)
========================= */
.match-row {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 10px 12px;
    margin-bottom: 8px;

    background: rgba(255,255,255,0.95);
    color: #2b2b2b;

    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

/* Spieler Text */
.match-teams {
    font-weight: bold;
    font-size: 14px;
}

/* VS optisch optional */
.match-vs {
    opacity: 0.5;
    margin: 0 8px;
}

/* =========================
   RESULT BADGE
========================= */
.match-result {
    min-width: 55px;
    text-align: center;

    padding: 6px 10px;
    border-radius: 8px;

    background: #8b2e00;
    color: #ffe082;

    font-weight: bold;
    font-size: 13px;
}

/* kein Ergebnis */
.match-result.empty {
    background: #555;
    color: #fff;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 600px) {

    .match-row {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .match-result {
        width: 100%;
    }
}