:root {
  --bg: #0a0f2c;
  --card: #0d1338;
  --accent: #1e90ff;
  --accent-hover: #3ba1ff;
  --muted: #aab7d4;
  --glass: rgba(255, 255, 255, 0.06);
  --radius: 12px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--bg);
  color: #e6eef6;
  line-height: 1.6;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  padding: 16px 24px;
  align-items: center;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  font-weight: 700;
  color: white;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

nav a:hover {
  color: white;
}

/* PAGE LAYOUT */
.page-content {
  max-width: 850px;
  margin: 30px auto;
  padding: 0 16px;
}

/* CARD STYLE */
.card {
  background: var(--card);
  padding: 20px;
  border-radius: var(--radius);
  margin-bottom: 14px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
}

/* CTA BUTTON */
.cta {
  display: inline-block;
  padding: 12px 20px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}

.cta:hover {
  background: var(--accent-hover);
  transform: scale(1.03);
}

/* PLAYER STATUS */
#playerStatus {
  margin: 18px 0;
  padding: 12px;
  background: var(--glass);
  border-radius: var(--radius);
  text-align: center;
  font-weight: 500;
  backdrop-filter: blur(8px);
}

/* DISCORD WIDGET */
.discord-widget {
  margin-top: 24px;
  background: var(--glass);
  padding: 8px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}
