/* =========================
   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(120, 30, 20, 0.55); /* etwas ruhigeres Rot */
    z-index: -1;
}

/* =========================
   HEADER + HOME
========================= */
.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;
}

.top-nav {
    display: flex;
    justify-content: center;
    margin: 12px 0;
}

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

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

/* =========================
   MATCH CARD
========================= */
.match-card {
    border-radius: 14px;
    overflow: hidden; /* sauberer Rand */
    margin-bottom: 12px;
    background: #fff;
    color: #222;
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
    position: relative;
}

/* =========================
   🔴 LIVE DOT (INTERN)
========================= */
.live-dot {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 10px;
    height: 10px;
    background: #c62828; /* 🔥 modernes Turnier-Rot */
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(198, 40, 40, 0.6);
    animation: pulse 1.2s infinite;
    z-index: 2;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.5; }
    100% { transform: scale(0.9); opacity: 1; }
}

/* =========================
   TOP (PLATZ / INFO)
========================= */
.match-top {
    background: #8b2e00;
    color: #ffe7c2;
    padding: 10px;
    font-weight: bold;
    text-align: center;
}

/* =========================
   MATCH BODY
========================= */
.match-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
}

.team {
    flex: 1;
    text-align: center;
    font-weight: bold;
}

.vs {
    opacity: 0.5;
    font-size: 12px;
}

/* =========================
   RESULT (ROT BADGE)
========================= */
.result {
    background: #8b2e00;
    color: white;
    text-align: center;
    padding: 8px;
    font-weight: bold;
}