:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --neon-green: #39ff14;
  --neon-cyan: #00ffff;
  --neon-magenta: #ff00ff;
  --neon-red: #ff0044;
  --neon-yellow: #ffd700;
  --text-primary: #e0e0e0;
  --text-secondary: #777777;
  --font-pixel: 'Press Start 2P', monospace;
  --font-gaming: 'Rajdhani', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-gaming);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---------- Scanlines ---------- */
.scanlines {
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 255, 65, 0.018) 2px,
    rgba(0, 255, 65, 0.018) 4px
  );
  pointer-events: none;
  z-index: 9999;
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(57, 255, 20, 0.15);
}

.nav-brand {
  font-family: var(--font-pixel);
  font-size: 0.7rem;
  color: var(--neon-green);
  text-shadow: 0 0 12px rgba(57, 255, 20, 0.8);
  letter-spacing: 2px;
}

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

.nav-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-family: var(--font-pixel);
  font-size: 0.5rem;
  letter-spacing: 1px;
  transition: color 0.2s, text-shadow 0.2s;
}

.nav-links a:hover {
  color: var(--neon-cyan);
  text-shadow: 0 0 8px var(--neon-cyan);
}

.btn-nav {
  border: 1px solid var(--neon-green) !important;
  color: var(--neon-green) !important;
  padding: 0.45rem 1rem;
  transition: background 0.2s, box-shadow 0.2s !important;
}

.btn-nav:hover {
  background: rgba(57, 255, 20, 0.1) !important;
  box-shadow: 0 0 14px rgba(57, 255, 20, 0.4) !important;
}

/* ---------- Layout ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

#matrix-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 2rem;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-pixel);
  font-size: 0.5rem;
  color: var(--neon-green);
  border: 1px solid var(--neon-green);
  padding: 0.4rem 1.2rem;
  margin-bottom: 1.5rem;
  letter-spacing: 3px;
  animation: pulse-border 2s ease-in-out infinite;
}

@keyframes pulse-border {
  0%, 100% { box-shadow: 0 0 5px rgba(57, 255, 20, 0.3); }
  50%       { box-shadow: 0 0 22px rgba(57, 255, 20, 0.8); }
}

/* ---------- Glitch ---------- */
.glitch {
  font-family: var(--font-pixel);
  font-size: clamp(1.4rem, 6vw, 3.8rem);
  color: var(--neon-green);
  text-shadow: 0 0 24px rgba(57, 255, 20, 0.6);
  position: relative;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  animation: glitch-main 4s infinite;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch::before {
  color: var(--neon-magenta);
  clip-path: polygon(0 0, 100% 0, 100% 42%, 0 42%);
  text-shadow: -2px 0 var(--neon-magenta);
  animation: glitch-before 4s infinite;
}

.glitch::after {
  color: var(--neon-cyan);
  clip-path: polygon(0 58%, 100% 58%, 100% 100%, 0 100%);
  text-shadow: 2px 0 var(--neon-cyan);
  animation: glitch-after 4s infinite;
}

@keyframes glitch-main {
  0%, 88%, 100% { transform: translate(0); }
  90%  { transform: translate(-2px, 1px); }
  92%  { transform: translate(2px, -1px); }
  94%  { transform: translate(-1px, 2px); }
  96%  { transform: translate(0); }
}

@keyframes glitch-before {
  0%, 88%, 100% { transform: translate(0); opacity: 0; }
  90%  { transform: translate(-4px, 0); opacity: 0.85; }
  93%  { transform: translate(4px, 0); opacity: 0.85; }
  96%  { opacity: 0; }
}

@keyframes glitch-after {
  0%, 88%, 100% { transform: translate(0); opacity: 0; }
  91%  { transform: translate(4px, 0); opacity: 0.85; }
  94%  { transform: translate(-4px, 0); opacity: 0.85; }
  97%  { opacity: 0; }
}

.hero-tagline {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2.5rem;
  min-height: 2rem;
  letter-spacing: 3px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Buttons ---------- */
.btn-primary,
.btn-secondary {
  display: inline-block;
  font-family: var(--font-pixel);
  font-size: 0.6rem;
  padding: 1rem 2rem;
  text-decoration: none;
  letter-spacing: 2px;
  cursor: pointer;
  border: none;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: all 0.2s;
}

.btn-primary {
  color: var(--bg-primary);
  background: var(--neon-green);
}

.btn-primary:hover {
  background: var(--neon-cyan);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.55);
  transform: translateY(-2px);
}

.btn-secondary {
  color: var(--neon-cyan);
  background: transparent;
  border: 1px solid var(--neon-cyan);
}

.btn-secondary:hover {
  background: rgba(0, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-large {
  font-size: 0.75rem;
  padding: 1.2rem 3rem;
}

/* ---------- Scroll Indicator ---------- */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-pixel);
  font-size: 0.38rem;
  color: var(--text-secondary);
  letter-spacing: 4px;
  animation: fade-bounce 2s ease-in-out infinite;
}

.scroll-arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--text-secondary);
  border-bottom: 2px solid var(--text-secondary);
  transform: rotate(45deg);
}

@keyframes fade-bounce {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 1;   transform: translateX(-50%) translateY(6px); }
}

/* ---------- Stats ---------- */
.stats {
  padding: 5rem 0;
  background: var(--bg-secondary);
  border-top: 1px solid rgba(57, 255, 20, 0.15);
  border-bottom: 1px solid rgba(57, 255, 20, 0.15);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-card {
  padding: 1.5rem;
}

.stat-number {
  font-family: var(--font-pixel);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--neon-green);
  text-shadow: 0 0 18px rgba(57, 255, 20, 0.6);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 3px;
}

/* ---------- Section headers ---------- */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-family: var(--font-pixel);
  font-size: clamp(0.9rem, 3vw, 1.4rem);
  color: var(--neon-cyan);
  text-shadow: 0 0 16px rgba(0, 255, 255, 0.5);
  margin-bottom: 0.75rem;
  letter-spacing: 3px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  letter-spacing: 2px;
  font-weight: 600;
}

/* ---------- Games ---------- */
.games-section {
  padding: 6rem 0;
  background: var(--bg-primary);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.game-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.game-card:hover {
  transform: translateY(-5px);
  border-color: rgba(57, 255, 20, 0.35);
  box-shadow: 0 8px 30px rgba(57, 255, 20, 0.08);
}

.game-card.featured {
  border-color: rgba(255, 0, 68, 0.4);
}

.game-card.featured:hover {
  border-color: var(--neon-red);
  box-shadow: 0 8px 30px rgba(255, 0, 68, 0.15);
}

.game-badge {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  font-family: var(--font-pixel);
  font-size: 0.4rem;
  background: var(--neon-red);
  color: #fff;
  padding: 0.3rem 0.6rem;
  z-index: 1;
  letter-spacing: 1px;
}

.game-icon {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.game-icon-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.15));
}

.game-info {
  padding: 1.25rem;
}

.game-genre {
  display: block;
  font-family: var(--font-pixel);
  font-size: 0.38rem;
  color: var(--neon-magenta);
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.game-info h3 {
  font-family: var(--font-pixel);
  font-size: 0.6rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.game-rating {
  color: var(--neon-yellow);
  font-size: 1rem;
  margin-bottom: 0.6rem;
  letter-spacing: 2px;
}

.game-info p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.btn-play {
  font-family: var(--font-pixel);
  font-size: 0.48rem;
  color: var(--bg-primary);
  background: var(--neon-green);
  border: none;
  padding: 0.65rem 1rem;
  cursor: pointer;
  letter-spacing: 1px;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
  transition: background 0.2s, box-shadow 0.2s;
  width: 100%;
}

.btn-play:hover {
  background: var(--neon-cyan);
  box-shadow: 0 0 16px rgba(0, 255, 255, 0.45);
}

/* ---------- About ---------- */
.about-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about-text strong {
  color: var(--neon-green);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
}

/* ---------- Terminal ---------- */
.about-terminal {
  background: #080808;
  border: 1px solid rgba(57, 255, 20, 0.25);
  box-shadow: 0 0 40px rgba(57, 255, 20, 0.06);
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: #141414;
  border-bottom: 1px solid rgba(57, 255, 20, 0.15);
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.dot.red    { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green  { background: #28ca41; }

.terminal-title {
  font-family: var(--font-pixel);
  font-size: 0.42rem;
  color: var(--text-secondary);
  margin-left: 0.5rem;
}

.terminal-body {
  padding: 1.5rem;
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  line-height: 2.1;
}

.terminal-body p { color: #666; }
.prompt  { color: var(--neon-green); }
.cmd     { color: var(--text-primary); margin-left: 0.5rem; }
.output  { color: #555; padding-left: 1.2rem; }
.output.success { color: var(--neon-green); }

.cursor-blink {
  color: var(--neon-green);
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ---------- CTA ---------- */
.cta-section {
  padding: 7rem 0;
  background: var(--bg-primary);
  text-align: center;
  border-top: 1px solid rgba(255, 0, 68, 0.25);
  border-bottom: 1px solid rgba(255, 0, 68, 0.25);
}

.cta-section h2 {
  font-family: var(--font-pixel);
  font-size: clamp(0.9rem, 3vw, 1.6rem);
  color: var(--neon-magenta);
  text-shadow: 0 0 24px rgba(255, 0, 255, 0.5);
  margin-bottom: 1rem;
  letter-spacing: 3px;
}

.cta-section p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  letter-spacing: 2px;
}

/* ---------- Footer ---------- */
footer {
  background: var(--bg-secondary);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-logo {
  font-family: var(--font-pixel);
  font-size: 0.65rem;
  color: var(--neon-green);
  text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-links h4 {
  font-family: var(--font-pixel);
  font-size: 0.46rem;
  color: var(--neon-cyan);
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links ul a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ---------- Downloads ---------- */
.downloads-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
  border-top: 1px solid rgba(0, 255, 255, 0.1);
}

.dl-game {
  margin-bottom: 3.5rem;
}

.dl-game:last-child {
  margin-bottom: 0;
}

.dl-game-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(57, 255, 20, 0.2);
}

.dl-game-icon {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
}

.dl-game-icon img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

.dl-game-header h3 {
  font-family: var(--font-pixel);
  font-size: clamp(0.6rem, 2vw, 0.9rem);
  color: var(--neon-green);
  text-shadow: 0 0 10px rgba(57, 255, 20, 0.4);
  letter-spacing: 2px;
}

.dl-tag {
  font-family: var(--font-pixel);
  font-size: 0.38rem;
  color: var(--neon-magenta);
  border: 1px solid rgba(255, 0, 255, 0.3);
  padding: 0.25rem 0.6rem;
  letter-spacing: 1px;
  flex: 1;
}

.dl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.dl-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: border-color 0.2s, box-shadow 0.2s;
}

.dl-card:hover {
  border-color: rgba(57, 255, 20, 0.3);
  box-shadow: 0 4px 20px rgba(57, 255, 20, 0.05);
}

.dl-card-info {
  flex: 1;
}

.dl-card-info h4 {
  font-family: var(--font-pixel);
  font-size: 0.52rem;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
  line-height: 1.7;
  letter-spacing: 1px;
}

.dl-card-info p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.dl-meta {
  display: flex;
  gap: 0.75rem;
}

.dl-meta span {
  font-family: var(--font-pixel);
  font-size: 0.38rem;
  color: var(--neon-cyan);
  background: rgba(0, 255, 255, 0.06);
  border: 1px solid rgba(0, 255, 255, 0.2);
  padding: 0.2rem 0.5rem;
  letter-spacing: 1px;
}

.btn-dl {
  display: block;
  font-family: var(--font-pixel);
  font-size: 0.45rem;
  color: var(--neon-green);
  background: transparent;
  border: 1px solid rgba(57, 255, 20, 0.4);
  padding: 0.65rem 1rem;
  text-align: center;
  text-decoration: none;
  letter-spacing: 2px;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
  transition: background 0.2s, box-shadow 0.2s;
}

.btn-dl:hover {
  background: rgba(57, 255, 20, 0.08);
  box-shadow: 0 0 14px rgba(57, 255, 20, 0.3);
}

/* ---------- Exploit card ---------- */
.dl-card-exploit {
  border-color: rgba(255, 0, 68, 0.35);
}

.dl-card-exploit:hover {
  border-color: var(--neon-red) !important;
  box-shadow: 0 4px 20px rgba(255, 0, 68, 0.12) !important;
}

.dl-card-exploit .dl-meta span {
  color: var(--neon-red);
  border-color: rgba(255, 0, 68, 0.3);
  background: rgba(255, 0, 68, 0.06);
}

.btn-dl-exploit {
  color: var(--neon-red) !important;
  border-color: rgba(255, 0, 68, 0.4) !important;
  background: transparent !important;
}

.btn-dl-exploit:hover {
  background: rgba(255, 0, 68, 0.08) !important;
  box-shadow: 0 0 14px rgba(255, 0, 68, 0.35) !important;
}

/* ---------- Exploits Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 0, 68, 0.5);
  box-shadow: 0 0 60px rgba(255, 0, 68, 0.15);
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  animation: modal-in 0.2s ease;
}

@keyframes modal-in {
  from { transform: scale(0.95) translateY(10px); }
  to   { transform: scale(1) translateY(0); }
}

.modal-header {
  padding: 1.5rem 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.modal-icon {
  font-size: 3rem;
  line-height: 1;
}

.modal-title {
  font-family: var(--font-pixel);
  font-size: clamp(0.7rem, 2.5vw, 1rem);
  letter-spacing: 3px;
}

.modal-game-name {
  font-family: var(--font-pixel);
  font-size: 0.45rem;
  color: var(--text-secondary);
  letter-spacing: 2px;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.25rem 0.75rem;
}

.modal-body {
  padding: 1.25rem 1.5rem;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  text-align: center;
}

.modal-body strong {
  color: var(--neon-red);
}

.modal-body ul {
  list-style: none;
  margin-top: 0.75rem;
  text-align: left;
  display: inline-block;
}

.modal-body ul li::before {
  content: '> ';
  color: var(--neon-red);
  font-family: var(--font-pixel);
  font-size: 0.6rem;
}

.modal-footer {
  padding: 0 1.5rem 1.5rem;
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.modal-btn-secondary {
  font-family: var(--font-pixel);
  font-size: 0.48rem;
  color: var(--text-secondary);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  letter-spacing: 1px;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
  transition: background 0.2s;
}

.modal-btn-secondary:hover {
  background: rgba(255,255,255,0.05);
}

.modal-btn-danger {
  font-family: var(--font-pixel);
  font-size: 0.48rem;
  color: #fff;
  background: var(--neon-red);
  border: none;
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  letter-spacing: 1px;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
  transition: box-shadow 0.2s, transform 0.2s;
}

.modal-btn-danger:hover {
  box-shadow: 0 0 20px rgba(255, 0, 68, 0.6);
  transform: translateY(-1px);
}

/* Progress bar */
.modal-progress-wrap {
  padding: 0 1.5rem 1rem;
}

.modal-progress-bar {
  height: 6px;
  background: rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}

.modal-progress-fill {
  height: 100%;
  background: var(--neon-red);
  box-shadow: 0 0 10px var(--neon-red);
  width: 0%;
  transition: width 2.5s linear;
}

.modal-progress-label {
  font-family: var(--font-pixel);
  font-size: 0.4rem;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 0.6rem;
  letter-spacing: 2px;
}

/* Pricing table */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.5rem 0 1rem;
  font-size: 0.85rem;
}

.pricing-table th {
  font-family: var(--font-pixel);
  font-size: 0.42rem;
  padding: 0.75rem 0.5rem;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.pricing-table th.tier-free   { color: var(--neon-green); }
.pricing-table th.tier-pro    { color: var(--neon-cyan); }
.pricing-table th.tier-elite  { color: var(--neon-magenta); }
.pricing-table th.tier-god    { color: var(--neon-yellow); }

.pricing-table td {
  padding: 0.6rem 0.5rem;
  text-align: center;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  line-height: 1.4;
}

.pricing-table td:first-child {
  font-family: var(--font-pixel);
  font-size: 0.38rem;
  color: var(--text-primary);
  text-align: left;
  letter-spacing: 1px;
}

.pricing-table tr:last-child td {
  border-bottom: none;
  padding-top: 1rem;
}

.tier-price {
  font-family: var(--font-pixel);
  font-size: 0.55rem;
  display: block;
  margin-top: 0.2rem;
}

.tier-price.free { color: var(--neon-green); }
.tier-price.pro  { color: var(--neon-cyan); }
.tier-price.elite { color: var(--neon-magenta); }
.tier-price.god  { color: var(--neon-yellow); }

.pricing-table .check    { color: var(--neon-green); }
.pricing-table .cross    { color: var(--neon-red); opacity: 0.5; }

.btn-tier {
  font-family: var(--font-pixel);
  font-size: 0.38rem;
  padding: 0.5rem 0.6rem;
  cursor: pointer;
  border: none;
  letter-spacing: 1px;
  clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 5px, 100% 100%, 5px 100%, 0 calc(100% - 5px));
  display: block;
  width: 100%;
  transition: opacity 0.2s;
}

.btn-tier:hover { opacity: 0.85; }
.btn-tier.free  { background: var(--neon-green);   color: #000; }
.btn-tier.pro   { background: var(--neon-cyan);    color: #000; }
.btn-tier.elite { background: var(--neon-magenta); color: #000; }
.btn-tier.god   { background: var(--neon-yellow);  color: #000; }

.tier-response {
  font-family: var(--font-pixel);
  font-size: 0.35rem;
  margin-top: 0.4rem;
  line-height: 1.6;
  letter-spacing: 0.5px;
  min-height: 1.8rem;
  color: var(--neon-red);
}

.pricing-scroll {
  padding: 0 1.5rem;
  overflow-x: auto;
}

/* ---------- Hamburger ---------- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neon-green);
  box-shadow: 0 0 6px rgba(57, 255, 20, 0.6);
  transition: transform 0.25s ease, opacity 0.25s ease, width 0.25s ease;
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-content { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr 1fr; }
  .dl-grid { grid-template-columns: repeat(2, 1fr); }

  .nav-toggle { display: flex; }

  .nav-links {
    display: flex !important;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(57, 255, 20, 0.2);
    padding: 0.5rem 0 1rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.3s ease, opacity 0.2s ease;
  }

  .nav-links.open {
    max-height: 480px;
    opacity: 1;
    pointer-events: all;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }

  .nav-links li:last-child {
    border-bottom: none;
    padding: 0.75rem 2rem 0;
  }

  .nav-links a {
    display: block;
    padding: 0.9rem 2rem;
    font-size: 0.52rem !important;
  }

  .btn-nav {
    display: block !important;
    text-align: center;
    padding: 0.65rem 1rem !important;
  }
}

@media (max-width: 600px) {
  .games-grid { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
  .dl-grid { grid-template-columns: 1fr; }
  .dl-tag { display: none; }
}
