/* ===== Global ===== */
body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Orbitron', Arial, sans-serif;
  color: #fff;
  background: radial-gradient(circle at bottom, #ff0080, #7928ca 40%, #0f0f1a 100%);
  position: relative;
  overflow-x: hidden;
}

/* Grid overlay */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: -1;
}

/* ===== Header ===== */
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 0;
}

header img {
  max-width: 480px;
  height: auto;
  margin-bottom: 15px;
}

/* ===== Navigation ===== */
nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 30px;
}

nav ul li a {
  color: #0ff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  text-shadow: 0 0 6px #0ff, 0 0 12px #f0f;
  transition: all 0.2s;
}

nav ul li a:hover {
  color: #ff0;
  text-shadow: 0 0 12px #ff0, 0 0 24px #f00;
}

/* ===== Glass Panels / Cards ===== */
.card,
.panel {
  background: rgba(0, 0, 0, 0.55);
  border-radius: 16px;
  padding: 25px;
  margin: 20px auto;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 255, 255, 0.15);
  max-width: 800px;
}

/* Section Headers */
.card h2,
.panel h2 {
  margin-top: 0;
  margin-bottom: 15px;
  text-align: center;
  font-size: 1.8rem;
  color: #ffcc00;
  text-shadow: 0 0 8px #ff00ff, 0 0 16px #ff0080;
  letter-spacing: 2px;
}

/* ===== Leaderboard Table ===== */
table.leaderboard {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

table.leaderboard th {
  text-align: left;
  padding: 12px;
  color: #ffcc00;
  font-size: 1rem;
  text-transform: uppercase;
}

table.leaderboard td {
  padding: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  font-size: 1.1rem;
}

/* Callsign links */
.leaderboard a {
  color: #fff;
  font-weight: bold;
  /* text-shadow: 0 0 5px #00eaff, 0 0 12px #00ffff; */
  transition: all 0.2s ease;
}

.leaderboard a:hover {
  color: #ff0;
  text-shadow: 0 0 8px #ff0, 0 0 18px #ff0080;
}

/* ===== Progress Bar ===== */
.progress-container {
  width: 100%;
  height: 22px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
  margin: 15px 0;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #00eaff, #0099ff, #0066ff);
  box-shadow: 0 0 12px rgba(0, 200, 255, 0.8);
  transition: width 0.5s ease;
}

#season-label {
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 6px #0ff, 0 0 12px #f0f;
  margin-top: 8px;
}

/* ===== Dashboard Grid ===== */
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Stats List */
.stats {
  list-style: none;
  padding: 0;
  margin: 0;
}

.stats li {
  margin: 8px 0;
  font-size: 1rem;
}

/* ===== Footer ===== */
footer {
  text-align: center;
  padding: 15px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
