:root {
  /* Permanent Dark Theme Colors */
  --primary: #ff6b6b;
  --primary-hover: #ff4f4f;
  --bg: #0f0f12;
  --card: #16161a;
  --text: #f2f2f2;
  --subtext: #a1a1aa;
  --border: #262626;
  --online: #22c55e;
  --offline: #ef4444;
}

* { 
  box-sizing: border-box; 
  font-family: 'Inter', system-ui, -apple-system, sans-serif; 
}

body { 
  margin: 0; 
  background: var(--bg); 
  color: var(--text); 
  line-height: 1.6; 
}

/* Updated Navigation */
    nav {
      width: 100%;
      padding: 20px;
      display: flex;
      justify-content: center;
      gap: 20px;
      border-bottom: 1px solid var(--border);
      background: var(--bg);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    nav a {
      text-decoration: none;
      color: var(--subtext);
      font-weight: 500;
      font-size: 0.95rem;
      transition: color 0.2s;
    }

    nav a:hover {
      color: var(--primary);
    }

.container { 
  max-width: 900px; 
  margin: 40px auto; 
  padding: 0 20px; 
  text-align: center; 
}

.card { 
  background: var(--card); 
  border: 1px solid var(--border); 
  padding: 30px; 
  border-radius: 16px; 
  margin-bottom: 20px; 
  text-align: left; /* Better for reading rules and news */
}

.accent { color: var(--primary); }

.btn {
  display: inline-block;
  padding: 12px 24px;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: 0.2s;
}

.btn:hover { 
  background: var(--primary-hover); 
  transform: translateY(-2px); 
}