* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0b0b0b;
  color: white;
  font-family: 'Inter', sans-serif;
}

.hero {
  position: relative;
  min-height: 60vh;
  background: linear-gradient(to bottom right, #000000, #2a0000);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero-content h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  letter-spacing: 3px;
}

.hero-content span {
  color: #ff2020;
}

.hero-content p {
  margin-top: 1rem;
  color: #bbbbbb;
  font-size: 1.1rem;
}

.user-box {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.user-box input {
  padding: 12px;
  width: 220px;
  border: none;
  border-radius: 8px;
  background: #1d1d1d;
  color: white;
}

.user-box button {
  background: #ff2020;
  border: none;
  color: white;
  padding: 12px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}

.featured-video {
  padding: 4rem 2rem;
  text-align: center;
}

.featured-video h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
}

.video-wrapper {
  max-width: 900px;
  margin: auto;
  aspect-ratio: 16/9;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.subscribe-btn {
  display: inline-block;
  margin-top: 2rem;
  background: red;
  color: white;
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
}

.group-section {
  margin-bottom: 50px;
}

.group-title {
  color: red;
  font-size: 32px;
  margin-bottom: 20px;
  border-left: 5px solid red;
  padding-left: 12px;
}

.group-video {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 16px;
  margin-bottom: 20px;
}

.match-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  opacity: 0.7;
}

.matches,
.leaderboard {
  padding: 4rem 2rem;
}

.matches h2,
.leaderboard h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
}

.match-card {
  background: #151515;
  border: 1px solid #2d2d2d;
  padding: 1.5rem;
  border-radius: 16px;
  margin-bottom: 1rem;
  text-align: center;
}

.match-teams {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.score-inputs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 1rem;
}

.score-inputs input {
  width: 60px;
  padding: 10px;
  background: #222;
  border: none;
  border-radius: 8px;
  color: white;
  text-align: center;
}

.predict-btn {
  display: block;
  margin: 1rem auto 0;
  background: #ff2020;
  color: white;
  border: none;
  padding: 12px 18px;
  border-radius: 8px;
  cursor: pointer;
}

.locked {
  opacity: 0.5;
  pointer-events: none;
}

.leaderboard-row {
  background: #141414;
  border: 1px solid #2b2b2b;
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}
