body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #111;
  color: #fff;
}

/* HEADER FREEZE */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #000;
  border-bottom: 3px solid red;
  text-align: center;
  padding: 15px;
}

/* biar teks tetap jelas */
.header h1 {
  color: yellow;
  font-size: 20px;
  margin: 0;
}

/* HEADER CONTENT JADI COLUMN */
.header-content {
  display: flex;
  flex-direction: column; /* 🔥 ini kunci */
  align-items: center;
  gap: 10px;
}

/* LOGO */
.logo {
  color: yellow;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
}

/* BUTTON WRAPPER */
.auth-buttons {
  display: flex;
  gap: 10px;
}

/* BUTTON */
.btn {
  padding: 6px 14px;
  text-decoration: none; /* 🔥 hilangkan garis bawah */
  display: inline-block;
  border-radius: 4px;
  font-size: 28px;
}

.login {
  background: #333;
  color: white;
}

.register {
  background: red;
  color: white;
  font-weight: bold;
}

.btn:hover {
  opacity: 0.8;
}

/* CONTAINER */
.container {
  max-width: 1000px;
  margin: auto;
  padding: 10px;
  margin-top: 10px;
}

/* MATCH LIST */
.match {
  background: #1a1a1a;
  border: 1px solid #333;
  margin-bottom: 10px;
  padding: 12px;
}

/* LEAGUE */
.league-name {
  color: #ffcc00;
  font-size: 13px;
  margin-bottom: 8px;
  font-weight: bold;
}

/* TEAMS */
.teams {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.team {
  display: flex;
  align-items: center;
  gap: 8px;
}

.team-logo {
  width: 25px;
  height: 25px;
}

.team span {
  font-size: 14px;
}

/* VS */
.vs {
  color: #aaa;
  font-size: 12px;
}

/* TIME */
.time {
  font-size: 12px;
  color: #bbb;
  margin-top: 5px;
}

/* PREDICTION BOX */
.prediction {
  margin-top: 10px;
  padding: 8px;
  background: #000;
  border-left: 3px solid red;
}

/* RESULT */
.result {
  color: #00ffcc;
  font-weight: bold;
  font-size: 13px;
}

/* SCORE */
.score {
  color: yellow;
  font-size: 16px;
  margin-top: 3px;
}

/* LOADING */
.loading {
  text-align: center;
  padding: 20px;
  color: #888;
}

/* BANNER */
.banner {
  text-align: center;
  margin: 10px 0;
}

.banner img {
  max-width: 100%;
  border-radius: 5px;
}

/* KHUSUS TOP */
.banner-top {
  background: #000;
  padding: 10px;
  border-bottom: 2px solid red;
}