html, body {
  margin: 0;
  padding: 0;

  font-family: Inter, Arial, sans-serif;
  color: white;

  min-height: 100%;
  overflow-x: hidden;

  /* ✨ Premium Base Background Feel */
  background: radial-gradient(
      circle at 20% 10%,
      rgba(0, 212, 255, 0.08),
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(124, 58, 237, 0.08),
      transparent 45%
    ),
    #0a0a0f;
}

/* =========================
   PAGE
========================= */

.page {
  position: relative;
  z-index: 1;

  padding: 28px;
  text-align: center;

  opacity: 1;
  transform: none;
}

/* =========================
   TITLE
========================= */

.title {
  font-size: 44px;
  margin: 10px 0 5px;

  font-weight: 800;
  letter-spacing: -0.5px;

  text-shadow: 0 0 25px rgba(255,255,255,0.06);
}

.subtitle {
  opacity: 0.65;
  margin-bottom: 30px;

  font-size: 14px;
  letter-spacing: 0.2px;
}

/* =========================
   TOURNAMENT CARD
========================= */

.tournament {
  max-width: 700px;
  margin: 0 auto;

  padding: 30px;
  border-radius: 18px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.06),
      rgba(255,255,255,0.03)
    );

  border: 1px solid rgba(255,255,255,0.10);

  backdrop-filter: blur(14px);

  position: relative;

  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

/* glow layer refinement */
.tournament::after {
  content: "";
  position: absolute;
  inset: 0;

  border-radius: inherit;
  pointer-events: none;

  box-shadow: 0 0 0 rgba(120, 0, 139, 0);
  transition: box-shadow 0.3s ease;
}

.tournament:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 58, 237, 0.35);
  box-shadow: 0 18px 50px rgba(0,0,0,0.45);
}

.tournament:hover::after {
  box-shadow: 0 0 28px rgba(124, 58, 237, 0.35);
}

/* =========================
   BADGE
========================= */

.badge {
  margin-top: 20px;
  display: inline-block;

  padding: 8px 14px;
  border-radius: 999px;

  background: rgba(255, 200, 0, 0.12);
  border: 1px solid rgba(255, 200, 0, 0.25);

  font-size: 12px;

  backdrop-filter: blur(10px);
}

/* =========================
   BUTTON
========================= */

.btn-primary {
  display: inline-block;
  margin-top: 12px;

  padding: 12px 18px;
  border-radius: 12px;

  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);

  color: white;
  text-decoration: none;

  transition: all 0.25s ease;
  backdrop-filter: blur(12px);

  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.03);

  background: rgba(255,255,255,0.10);

  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

/* animated sheen */
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 212, 255, 0.25),
    transparent
  );

  transform: translateX(-120%);
}

.btn-primary:hover::after {
  transform: translateX(120%);
  transition: transform 0.7s ease;
}

/* =========================
   SUCCESS
========================= */

.success-banner {
  max-width: 650px;
  margin: 20px auto;
  padding: 12px 16px;

  border-radius: 12px;

  background: rgba(0, 255, 157, 0.12);
  border: 1px solid rgba(0, 255, 157, 0.35);

  color: #00ff9d;

  text-align: center;
  font-weight: 600;

  backdrop-filter: blur(10px);
}

.hidden {
  display: none;
}

/* =========================
   TEAMS
========================= */

.team-card {
  padding: 14px;
  margin: 10px 0;

  border-radius: 14px;

  background:
    rgba(255,255,255,0.04);

  border: 1px solid rgba(255,255,255,0.08);

  transition: 0.25s ease;
  contain: layout paint;
  will-change: transform;
}

.team-card:hover {
  border-color: rgba(0,212,255,0.2);
  transform: translateY(-2px);
}

.players {
  margin-top: 10px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* =========================
   PLAYER
========================= */

.player {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  user-select: none;
}

/* =========================
   RANK
========================= */

.rank {
  display: flex;
  align-items: center;
  gap: 6px;

  opacity: 0.8;
  font-size: 12px;

  margin: 16px 0 8px;
}

.rank-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* =========================
   TROPHIES
========================= */

.trophies {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  opacity: 0.75;
  font-size: 12px;

  margin-top: 8px;
}

.trophy-icon {
  width: 14px;
  height: 14px;
  object-fit: contain;

  filter: drop-shadow(0 0 6px rgba(255,255,255,0.08));
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 600px) {

  .page {
    padding: 14px;
  }

  .title {
    font-size: 30px;
  }

  .subtitle {
    font-size: 14px;
  }

  .tournament {
    padding: 20px;
  }
}

.rank-icon,
.trophy-icon {
  opacity: 1;
}

/* ========================================
   SEASON LIVE CTA
======================================== */

.season-live-wrap {
  margin-top: 12px;
  margin-bottom: 20px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* BUTTON */
.season-live-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 20px;

  border-radius: 14px;

  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.4px;

  text-decoration: none;
  color: white;

  background: linear-gradient(
    135deg,
    rgba(255, 45, 94, 0.18),
    rgba(0, 212, 255, 0.12)
  );

  border: 1px solid rgba(255, 45, 94, 0.35);

  backdrop-filter: blur(16px);

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.35),
    0 0 24px rgba(255, 45, 94, 0.12);

  position: relative;
  overflow: hidden;

  transition: all 0.25s ease;
}

/* glow sweep */
.season-live-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;

  width: 120%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.18),
    transparent
  );

  transition: 0.6s ease;
}

.season-live-btn:hover {
  transform: translateY(-3px) scale(1.03);

  border-color: rgba(255, 45, 94, 0.6);

  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.45),
    0 0 30px rgba(255, 45, 94, 0.22),
    0 0 18px rgba(0, 212, 255, 0.12);
}

.season-live-btn:hover::before {
  left: 120%;
}

/* small mobile tuning */
@media (max-width: 600px) {
  .season-live-btn {
    width: 100%;
    font-size: 12px;
    padding: 12px 16px;
  }
}