/* ==========================================================================
   CYBER ARCADE 1000 - Master Design System & Stylesheet
   Modern Cyberpunk Glassmorphism, Responsive Arcade Layout & Retro Aesthetics
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Press+Start+2P&family=Plus+Jakarta+Sans:wght@400;600;700&display=swap');

:root {
  --bg-darkest: #050811;
  --bg-dark: #0a0f1d;
  --bg-surface: #111a2e;
  --bg-surface-elevated: #18233c;
  --bg-glass: rgba(17, 26, 46, 0.75);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(0, 240, 255, 0.25);

  --neon-cyan: #00f0ff;
  --neon-pink: #ff007f;
  --neon-purple: #9d4edd;
  --neon-amber: #ffb703;
  --neon-emerald: #00f5d4;

  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --font-main: 'Outfit', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-retro: 'Press Start 2P', monospace;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-glow-cyan: 0 0 25px rgba(0, 240, 255, 0.35);
  --shadow-glow-pink: 0 0 25px rgba(255, 0, 127, 0.35);
  --shadow-glow-amber: 0 0 25px rgba(255, 183, 3, 0.35);
}

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

body {
  background-color: var(--bg-darkest);
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(157, 78, 221, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(0, 240, 255, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(255, 0, 127, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #050811 0%, #0a0f1d 100%);
  background-attachment: fixed;
  color: var(--text-primary);
  font-family: var(--font-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.5;
  overflow-x: hidden;
}

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

a {
  color: var(--neon-cyan);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: #fff;
  text-shadow: 0 0 10px var(--neon-cyan);
}

.text-gradient-cyan {
  background: linear-gradient(135deg, #00f0ff 0%, #7000ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-pink {
  background: linear-gradient(135deg, #ff007f 0%, #ffb703 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.font-retro {
  font-family: var(--font-retro);
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================================================
   Navigation Bar
   ========================================================================== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 15, 29, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  color: #fff;
}

.brand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #7000ff, #00f0ff);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
  font-size: 1.3rem;
}

.brand-badge-tag {
  font-family: var(--font-retro);
  font-size: 0.55rem;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(0, 240, 255, 0.15);
  border: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
  vertical-align: middle;
  margin-left: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.nav-link:hover, .nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
  color: var(--neon-cyan);
  border-bottom: 2px solid var(--neon-cyan);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Free Plays Counter HUD */
.guest-plays-hud {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 183, 3, 0.1);
  border: 1px solid rgba(255, 183, 3, 0.35);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--neon-amber);
}

.guest-plays-hud.warning {
  background: rgba(255, 0, 127, 0.12);
  border-color: rgba(255, 0, 127, 0.4);
  color: var(--neon-pink);
  animation: pulse-glow 2s infinite;
}

.guest-plays-hud.unlimited {
  background: rgba(0, 245, 212, 0.1);
  border-color: rgba(0, 245, 212, 0.35);
  color: var(--neon-emerald);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #00f0ff 0%, #7000ff 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 240, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 240, 255, 0.5);
  color: #fff;
}

.btn-secondary {
  background: var(--bg-surface-elevated);
  border-color: var(--border-glass);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.btn-accent {
  background: linear-gradient(135deg, #ff007f 0%, #ff5e00 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 0, 127, 0.3);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 0, 127, 0.5);
  color: #fff;
}

.btn-sm {
  padding: 0.4rem 0.85rem;
  font-size: 0.85rem;
  border-radius: 6px;
}

.btn-retro {
  font-family: var(--font-retro);
  font-size: 0.75rem;
  padding: 0.75rem 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* User Avatar Pill */
.user-avatar-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  padding: 0.3rem 0.75rem 0.3rem 0.4rem;
  border-radius: var(--radius-full);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

.user-avatar-badge img, .avatar-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--neon-cyan);
  object-fit: cover;
  background: var(--bg-dark);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 4rem 0 3rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.3);
  color: var(--neon-cyan);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-stats-row {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-glass);
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-retro);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero Showcase Card */
.hero-card-featured {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), var(--shadow-glow-cyan);
  transition: transform 0.3s;
}

.hero-card-featured:hover {
  transform: translateY(-4px);
}

.featured-preview-box {
  height: 260px;
  position: relative;
  background: linear-gradient(180deg, #101935 0%, #080c14 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.preview-grid-anim {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0, 240, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.1) 1px, transparent 1px);
  background-size: 24px 24px;
}

.featured-content {
  padding: 1.5rem;
}

/* ==========================================================================
   Cards & Grids
   ========================================================================== */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.section-title {
  font-size: 1.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-top: 0.25rem;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.game-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: var(--neon-cyan);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 240, 255, 0.25);
}

.game-card-thumb {
  position: relative;
  height: 160px;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.game-thumb-icon {
  font-size: 3.5rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
  transition: transform 0.3s;
}

.game-card:hover .game-thumb-icon {
  transform: scale(1.15);
}

.playable-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 245, 212, 0.2);
  border: 1px solid var(--neon-emerald);
  color: var(--neon-emerald);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.game-category-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.game-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.game-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}

.game-card-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 1rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.game-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.game-play-count {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ==========================================================================
   Arcade Cabinet & Play Screen
   ========================================================================== */
.arcade-container {
  padding: 1.5rem 0 3rem;
}

.arcade-wrapper {
  background: var(--bg-surface);
  border: 2px solid rgba(0, 240, 255, 0.3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(0, 240, 255, 0.2);
}

.arcade-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: #090e1b;
  border-bottom: 1px solid var(--border-glass);
}

.arcade-game-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.arcade-game-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
}

.arcade-hud-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.arcade-hud-box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.arcade-hud-label {
  font-family: var(--font-retro);
  font-size: 0.6rem;
  color: var(--text-muted);
}

.arcade-hud-value {
  font-family: var(--font-retro);
  font-size: 1rem;
  color: var(--neon-cyan);
}

.arcade-screen-frame {
  position: relative;
  background: #000;
  width: 100%;
  height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.arcade-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Guest Lockout Overlay */
.lockout-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 17, 0.94);
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  z-index: 50;
}

.lockout-card {
  max-width: 580px;
  background: var(--bg-surface-elevated);
  border: 2px solid var(--neon-pink);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 0 40px rgba(255, 0, 127, 0.35);
}

.lockout-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: pulse-glow 1.5s infinite alternate;
}

.lockout-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: #fff;
}

.lockout-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.75rem;
}

.lockout-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-align: left;
  margin-bottom: 2rem;
  background: rgba(0, 0, 0, 0.3);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #e2e8f0;
}

.benefit-check {
  color: var(--neon-emerald);
  font-weight: bold;
}

.lockout-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* ==========================================================================
   Leaderboards & Scorecards (Daily, Weekly, Monthly, Yearly)
   ========================================================================== */
.leaderboard-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.timeframe-tabs {
  display: inline-flex;
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  padding: 0.4rem;
  border-radius: var(--radius-full);
  gap: 0.3rem;
  margin-top: 1.5rem;
}

.timeframe-tab {
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.timeframe-tab:hover {
  color: #fff;
}

.timeframe-tab.active {
  background: linear-gradient(135deg, var(--neon-cyan), #7000ff);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 240, 255, 0.35);
}

/* Top 3 Podium */
.podium-container {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding: 0 2rem;
}

.podium-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: transform 0.3s;
}

.podium-card:hover {
  transform: translateY(-5px);
}

.podium-1 {
  border: 2px solid var(--neon-amber);
  background: linear-gradient(180deg, rgba(255, 183, 3, 0.15) 0%, var(--bg-surface) 100%);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), var(--shadow-glow-amber);
  padding-bottom: 2.5rem;
}

.podium-2 {
  border: 2px solid #cbd5e1;
  background: linear-gradient(180deg, rgba(203, 213, 225, 0.12) 0%, var(--bg-surface) 100%);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.podium-3 {
  border: 2px solid #d97706;
  background: linear-gradient(180deg, rgba(217, 119, 6, 0.12) 0%, var(--bg-surface) 100%);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.podium-crown {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.podium-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid #fff;
  margin-bottom: 0.75rem;
  object-fit: cover;
  background: #111;
}

.podium-username {
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
  color: #fff;
}

.podium-score {
  font-family: var(--font-retro);
  font-size: 1.2rem;
  color: var(--neon-cyan);
  margin-bottom: 0.5rem;
}

.podium-badge-rank {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
}

/* Leaderboard Table */
.leaderboard-table-wrap {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 3rem;
}

.table-custom {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.table-custom th {
  background: #090e1b;
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-glass);
}

.table-custom td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.95rem;
  vertical-align: middle;
}

.table-custom tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.rank-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 700;
  font-size: 0.9rem;
}

/* ==========================================================================
   Dashboard & Profile
   ========================================================================== */
.dashboard-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.profile-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile-avatar-large {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 3px solid var(--neon-cyan);
  box-shadow: var(--shadow-glow-cyan);
  margin-bottom: 1rem;
}

.profile-name {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.rank-badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  background: rgba(157, 78, 221, 0.15);
  border: 1px solid var(--neon-purple);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.dashboard-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.stat-tile {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
}

.stat-tile-val {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-retro);
  margin-top: 0.5rem;
}

/* ==========================================================================
   Arcade Score Toast Overlay
   ========================================================================== */
.arcade-score-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99999;
  max-width: 440px;
  background: var(--bg-surface-elevated);
  border: 2px solid var(--neon-cyan);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), var(--shadow-glow-cyan);
  padding: 1rem 1.25rem;
  animation: slideUpToast 0.35s ease-out;
}

.arcade-score-toast.fade-out {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease-out;
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.toast-icon {
  font-size: 2rem;
}

.toast-body {
  flex: 1;
}

.toast-title {
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  letter-spacing: 0.5px;
}

.toast-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.toast-btn {
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
}

.toast-btn.highlight {
  background: var(--neon-pink);
  color: #fff;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  margin-top: auto;
  background: #050811;
  border-top: 1px solid var(--border-glass);
  padding: 3rem 0 2rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-col-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--neon-cyan);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Animations */
@keyframes pulse-glow {
  0% { transform: scale(1); filter: brightness(1); }
  50% { transform: scale(1.04); filter: brightness(1.2); }
  100% { transform: scale(1); filter: brightness(1); }
}

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

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; }
  .podium-container { grid-template-columns: 1fr; gap: 1rem; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .dashboard-stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-title { font-size: 2.4rem; }
  .dashboard-stats-grid { grid-template-columns: 1fr; }
  .arcade-screen-frame { height: 420px; }
  .footer-grid { grid-template-columns: 1fr; }
}
