body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0f0f12;
  color: white;
}

header {
  text-align: center;
  padding: 20px;
  background: #18181b;
}

.game-card {
  background: #1c1c1e;
  border-radius: 24px;
  padding: 40px 20px;
  margin: 20px;
}

/* ===== 分數橫排 ===== */

.score-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.score {
  font-size: 96px;
  font-weight: 200;
  letter-spacing: -2px;
}

/* ===== 隊伍橫排 ===== */

.team-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
}

.team {
  display: flex;
  align-items: center;
  gap: 12px;
}

.team.reverse {
  flex-direction: row-reverse;
}

.team img {
  height: 30px;
  width: 30px;
  object-fit: contain;
}

.team-name {
  font-size: 24px;
  font-weight: 500;
}

/* ===== 狀態 ===== */

.status {
  text-align: center;
  margin-top: 25px;
  font-size: 16px;
  color: #aaa;
}

.live { color: #22c55e; }
.final { color: #9ca3af; }
.scheduled { color: #3b82f6; }

/* ===== 手機 ===== */

@media (max-width:600px){

  .score {
    font-size: 64px;
  }

  .team img {
    height: 20px;
    width: 20px;
  }

  .team-name {
    font-size: 18px;
  }

}
