:root {
  --bg-void: #030712;
  --bg-dark: #070d1d;
  --bg-card: rgba(10, 18, 36, 0.75);
  --bg-card-hover: rgba(14, 25, 52, 0.85);
  --bg-glass: rgba(15, 23, 42, 0.65);
  
  --border-glow: rgba(0, 240, 255, 0.25);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-active: rgba(0, 240, 255, 0.6);
  
  --neon-cyan: #00f0ff;
  --neon-pink: #ff0055;
  --neon-green: #00ff9d;
  --neon-amber: #ffb700;
  --neon-purple: #9d4edd;
  
  --text-main: #f1f5f9;
  --text-dim: #94a3b8;
  --text-muted: #64748b;
  
  --font-display: 'Orbitron', 'Rajdhani', sans-serif;
  --font-body: 'Rajdhani', 'Inter', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  
  --glow-cyan: 0 0 15px rgba(0, 240, 255, 0.4);
  --glow-pink: 0 0 15px rgba(255, 0, 85, 0.4);
  --glow-green: 0 0 15px rgba(0, 255, 157, 0.4);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
}

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

body {
  background-color: var(--bg-void);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Background Cyber Grid & Vignette */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: 
    radial-gradient(circle at 50% 10%, rgba(0, 240, 255, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 90% 90%, rgba(157, 78, 221, 0.06) 0%, transparent 50%),
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
  pointer-events: none;
  z-index: 0;
}

/* Scrollbars */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: rgba(0,0,0,0.3); }
::-webkit-scrollbar-thumb { background: rgba(0, 240, 255, 0.25); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--neon-cyan); }

/* Typography Helpers */
.font-display { font-family: var(--font-display); }
.font-mono { font-family: var(--font-mono); }
.neon-cyan { color: var(--neon-cyan); text-shadow: 0 0 10px rgba(0,240,255,0.4); }
.neon-green { color: var(--neon-green); text-shadow: 0 0 10px rgba(0,255,157,0.4); }
.neon-pink { color: var(--neon-pink); text-shadow: 0 0 10px rgba(255,0,85,0.4); }
.neon-amber { color: var(--neon-amber); text-shadow: 0 0 10px rgba(255,183,0,0.4); }

/* Layout Structure */
#cockpit-app {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Top Navigation Bar */
.cockpit-header {
  height: 70px;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.brand-section {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(0,240,255,0.2), rgba(157,78,221,0.2));
  border: 1px solid var(--border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--neon-cyan);
  box-shadow: var(--glow-cyan);
}

.brand-title-group h1 {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 2px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-title-group .sub {
  font-size: 11px;
  color: var(--neon-cyan);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Navigation Tabs */
.cockpit-tabs {
  display: flex;
  gap: 6px;
  background: rgba(0, 0, 0, 0.35);
  padding: 5px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.tab-btn {
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  text-decoration: none;
}

.tab-btn:hover {
  color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.08);
}

.tab-btn.active {
  color: #030712;
  background: var(--neon-cyan);
  box-shadow: var(--glow-cyan);
}

.tab-btn.active i {
  color: #030712;
}

/* Header Right Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-mono);
  background: rgba(0, 255, 157, 0.1);
  border: 1px solid rgba(0, 255, 157, 0.3);
  color: var(--neon-green);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-green);
  box-shadow: 0 0 8px var(--neon-green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; filter: brightness(1.3); }
  100% { transform: scale(0.9); opacity: 0.8; }
}

/* Discord Profile Pill */
.user-profile-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  padding: 4px 12px 4px 6px;
  border-radius: 30px;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: all 0.2s ease;
}

.user-profile-pill:hover {
  border-color: var(--border-glow);
  background: rgba(0, 240, 255, 0.05);
}

.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--neon-cyan);
  object-fit: cover;
}

.user-meta {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.user-role-badge {
  font-size: 10px;
  color: var(--neon-pink);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Main Container */
.cockpit-main {
  flex: 1;
  padding: 24px;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
}

/* Tab Views */
.tab-content {
  display: none;
  animation: fadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Cyber Cards */
.cyber-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
}

.cyber-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cyber-card:hover {
  border-color: var(--border-glow);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.cyber-card:hover::before {
  opacity: 1;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
}

.card-title {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--neon-cyan);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Node Hardware Grid */
.nodes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
}

.node-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.node-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.node-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.node-role-text {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 2px;
}

.gauges-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 10px 0;
}

.gauge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0, 0, 0, 0.25);
  padding: 12px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.gauge-circle {
  width: 64px;
  height: 64px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gauge-circle svg {
  width: 64px;
  height: 64px;
  transform: rotate(-90deg);
}

.gauge-circle .bg-circle {
  stroke: rgba(255, 255, 255, 0.06);
  stroke-width: 6;
  fill: transparent;
}

.gauge-circle .progress-circle {
  stroke-width: 6;
  stroke-linecap: round;
  fill: transparent;
  transition: stroke-dashoffset 0.8s ease;
}

.gauge-val {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

.gauge-label {
  font-size: 11px;
  font-family: var(--font-display);
  color: var(--text-muted);
  margin-top: 6px;
  letter-spacing: 1px;
}

.node-metrics-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  background: rgba(0,0,0,0.2);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}

.metric-row {
  display: flex;
  justify-content: space-between;
}

.metric-row .lbl { color: var(--text-dim); }
.metric-row .val { font-family: var(--font-mono); font-weight: 600; }

/* Buttons & Inputs */
.cyber-btn {
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid var(--border-glow);
  color: var(--neon-cyan);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.cyber-btn:hover {
  background: var(--neon-cyan);
  color: #030712;
  box-shadow: var(--glow-cyan);
  transform: translateY(-1px);
}

.cyber-btn-pink {
  background: rgba(255, 0, 85, 0.1);
  border-color: rgba(255, 0, 85, 0.3);
  color: var(--neon-pink);
}

.cyber-btn-pink:hover {
  background: var(--neon-pink);
  color: #fff;
  box-shadow: var(--glow-pink);
}

.cyber-btn-green {
  background: rgba(0, 255, 157, 0.1);
  border-color: rgba(0, 255, 157, 0.3);
  color: var(--neon-green);
}

.cyber-btn-green:hover {
  background: var(--neon-green);
  color: #030712;
  box-shadow: var(--glow-green);
}

.cyber-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.2s ease;
}

.cyber-input:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

/* Radio Player HUD */
.radio-hud-container {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 20px;
}

.equalizer-canvas {
  width: 100%;
  height: 70px;
  background: rgba(0,0,0,0.4);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  margin-top: 14px;
}

.stations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
  margin: 14px 0;
}

.station-card {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.station-card:hover {
  border-color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.05);
}

.station-card.active {
  border-color: var(--neon-green);
  background: rgba(0, 255, 157, 0.1);
  box-shadow: 0 0 12px rgba(0, 255, 157, 0.2);
}

.station-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

/* Console Log Box */
.terminal-box {
  background: #02040a;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.6;
  color: #38bdf8;
  height: 380px;
  overflow-y: auto;
  white-space: pre-wrap;
  word-break: break-all;
}

/* Gameserver Grid */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.game-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.game-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.game-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.game-slots-pill {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 12px;
  background: rgba(0, 240, 255, 0.1);
  color: var(--neon-cyan);
  border: 1px solid rgba(0, 240, 255, 0.3);
}

/* Toast Notifications */
#toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.toast {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glow);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  animation: slideIn 0.3s ease;
}

.toast-success { border-color: var(--neon-green); color: var(--neon-green); }
.toast-error { border-color: var(--neon-pink); color: var(--neon-pink); }
.toast-info { border-color: var(--neon-cyan); color: var(--neon-cyan); }

@keyframes slideIn {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Modal Overlay */
.cockpit-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.cockpit-modal-overlay.active {
  display: flex;
}

.cockpit-modal {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(0, 240, 255, 0.2);
}

.modal-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-body {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .cockpit-header { height: auto; padding: 14px 18px; flex-wrap: wrap; gap: 14px; }
  .cockpit-tabs { order: 3; width: 100%; overflow-x: auto; justify-content: flex-start; }
  .radio-hud-container { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .cockpit-main { padding: 14px; }
  .nodes-grid, .games-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   LOGIN SCREEN
═══════════════════════════════════════════════════════ */

#nxp-login-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-void);
  backdrop-filter: blur(20px);
}

#nxp-login-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 240, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(157, 78, 221, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 0, 85, 0.04) 0%, transparent 70%),
    linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 40px 40px, 40px 40px;
  pointer-events: none;
  animation: loginBgPulse 8s ease-in-out infinite alternate;
}

@keyframes loginBgPulse {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

.login-card {
  position: relative;
  z-index: 1;
  width: 420px;
  max-width: calc(100vw - 40px);
  background: rgba(7, 13, 29, 0.92);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: var(--radius-lg);
  box-shadow:
    0 0 60px rgba(0, 240, 255, 0.08),
    0 0 120px rgba(157, 78, 221, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.06);
  overflow: hidden;
  animation: loginCardIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes loginCardIn {
  from { transform: translateY(30px) scale(0.95); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.login-card-top {
  padding: 36px 36px 28px;
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
  background: linear-gradient(180deg, rgba(0,240,255,0.04) 0%, transparent 100%);
}

.login-logo {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--neon-cyan);
  box-shadow: 0 0 30px rgba(0,240,255,0.2), inset 0 0 20px rgba(0,240,255,0.05);
  animation: loginLogoPulse 3s ease-in-out infinite;
}

@keyframes loginLogoPulse {
  0%, 100% { box-shadow: 0 0 30px rgba(0,240,255,0.2), inset 0 0 20px rgba(0,240,255,0.05); }
  50% { box-shadow: 0 0 50px rgba(0,240,255,0.35), inset 0 0 30px rgba(0,240,255,0.1); }
}

.login-title {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 3px;
  color: var(--neon-cyan);
  text-shadow: 0 0 15px rgba(0,240,255,0.5);
  margin-bottom: 4px;
}

.login-subtitle {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.login-card-body {
  padding: 28px 36px 36px;
}

.login-field {
  margin-bottom: 16px;
}

.login-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.login-input-wrap {
  position: relative;
}

.login-input-wrap i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.2s;
}

.login-field input {
  width: 100%;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-family: var(--font-mono);
  font-size: 14px;
  padding: 12px 14px 12px 40px;
  outline: none;
  transition: all 0.2s;
  letter-spacing: 0.5px;
}

.login-field input::placeholder {
  color: var(--text-muted);
  font-size: 13px;
}

.login-field input:focus {
  border-color: rgba(0,240,255,0.5);
  box-shadow: 0 0 0 2px rgba(0,240,255,0.1), 0 0 20px rgba(0,240,255,0.05);
  background: rgba(0,240,255,0.03);
}

.login-field input:focus + i,
.login-input-wrap:focus-within i {
  color: var(--neon-cyan);
}

.login-field input[type="password"]:focus {
  letter-spacing: 2px;
}

#login-error-msg {
  display: none;
  align-items: center;
  gap: 8px;
  background: rgba(255, 0, 85, 0.1);
  border: 1px solid rgba(255, 0, 85, 0.3);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: #ff6688;
  font-family: var(--font-mono);
  font-size: 12px;
  margin-bottom: 16px;
  animation: shakeError 0.4s ease;
}

#login-error-msg.visible { display: flex; }

@keyframes shakeError {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

#btn-discord-oauth {
  width: 100%;
  padding: 14px;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 2px;
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.25) 0%, rgba(88, 101, 242, 0.12) 100%);
  border: 1px solid rgba(88, 101, 242, 0.6);
  border-radius: var(--radius-sm);
  color: #7289da;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

#btn-discord-oauth::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(88,101,242,0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

#btn-discord-oauth:hover::before { transform: translateX(100%); }
#btn-discord-oauth:hover {
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.4) 0%, rgba(88, 101, 242, 0.2) 100%);
  border-color: #7289da;
  color: #fff;
  box-shadow: 0 0 30px rgba(88, 101, 242, 0.3);
}
#btn-discord-oauth:active { transform: scale(0.98); }
#btn-discord-oauth i { font-size: 18px; }

.login-discord-info {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 20px;
  text-align: center;
}

.login-discord-info p {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.7;
}

.login-discord-info strong {
  color: #7289da;
}


.login-footer-note {
  margin-top: 20px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.login-footer-note span {
  color: var(--neon-pink);
}

/* Logout button in header */
#btn-logout {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 11px;
  letter-spacing: 1px;
}

