@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --obsidian-bg: #080b11;
  --neon-green: #22c55e;
  --neon-glow: rgba(34, 197, 94, 0.3);
  --glass-bg: rgba(17, 24, 39, 0.4);
  --glass-border: rgba(255, 255, 255, 0.08);
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--obsidian-bg);
  color: #f3f4f6;
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
}

/* Glassmorphism panel */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
}

/* Glowing text */
.glow-text-green {
  color: var(--neon-green);
  text-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

/* Custom button */
.btn-premium {
  background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
  color: #000;
  font-weight: 600;
  border: none;
  box-shadow: 0 0 15px rgba(34, 197, 94, 0.4);
  transition: all 0.3s ease;
}
.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(34, 197, 94, 0.7);
}

/* Custom cards */
.card-premium {
  background: rgba(31, 41, 55, 0.3);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-premium:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 197, 94, 0.4);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3), 0 0 15px rgba(34, 197, 94, 0.15);
}

/* Header */
header {
  background: rgba(17, 24, 39, 0.75) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  position: sticky;
  top: 0;
  z-index: 50;
  transition: all 0.3s ease;
}

/* Autocomplete suggestion styles */
.suggestions-box {
  background: rgba(17, 24, 39, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

/* Checkbox and table styling overrides */
table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
table tr:last-child {
  border-bottom: none;
}

/* Custom selection */
::selection {
  background: rgba(34, 197, 94, 0.3);
  color: white;
}

/* Steam requirements html styling overrides */
.steam-reqs ul {
  list-style-type: none;
  padding-left: 0;
  margin-top: 0.5rem;
  margin-bottom: 0;
}
.steam-reqs li {
  margin-bottom: 0.4rem;
  color: #9ca3af;
  line-height: 1.4;
  font-size: 0.75rem;
}
.steam-reqs strong {
  color: #ffffff;
  font-weight: 700;
}
.steam-reqs br {
  display: none;
}
.steam-reqs {
  color: #d1d5db;
}