/* ===== RESET & TOKENS ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Cyberpunk Neon City palette */
  --void:        #0a0a14;
  --bg-card:     #12101e;
  --bg-surface:  #1c1830;
  --bg-elevated: #2a2445;

  --navy:        #0d2240;
  --ocean:       #0a3a5c;
  --blue:        #105080;
  --blue-bright: #1870a8;

  --magenta:     #ff0090;
  --pink:        #ff44cc;
  --cyan:        #00ffff;
  --cyan-light:  #00ccff;
  --lime:        #ccff00;
  --orange:      #ff6600;
  --gold:        #ffe040;
  --text:        #e8e8ff;

  --text-dim:    rgba(232, 232, 255, 0.6);
  --text-mid:    rgba(232, 232, 255, 0.65);
  --border:      rgba(0, 255, 255, 0.08);
  --border-hover:rgba(0, 255, 255, 0.2);

  --glow-cyan:   0 0 8px rgba(0, 255, 255, 0.3), 0 0 20px rgba(0, 255, 255, 0.1);
  --glow-magenta:0 0 8px rgba(255, 0, 144, 0.3), 0 0 20px rgba(255, 0, 144, 0.1);
  --glow-gold:   0 0 8px rgba(255, 224, 64, 0.3), 0 0 20px rgba(255, 224, 64, 0.1);
  --glow-lime:   0 0 8px rgba(204, 255, 0, 0.3), 0 0 20px rgba(204, 255, 0, 0.1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'VT323', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  background: var(--void);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== CRT OVERLAY ===== */
.crt-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
}

/* Scanlines */
.crt-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.15) 2px,
    rgba(0, 0, 0, 0.15) 4px
  );
  opacity: 0.4;
}

/* Vignette */
.crt-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(10, 10, 20, 0.6) 100%);
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
}

.nav {
  background: #0a0a14;
}

.nav.scrolled {
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: 'Press Start 2P', monospace;
  font-size: 14px;
  color: var(--cyan);
  text-decoration: none;
  text-shadow: var(--glow-cyan);
  transition: color 0.3s, text-shadow 0.3s;
}

.nav-logo:hover {
  color: var(--magenta);
  text-shadow: var(--glow-magenta);
}

.nav-links { display: flex; gap: 28px; }

.nav-links a {
  font-family: 'Press Start 2P', monospace;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 0.5px;
  transition: color 0.3s, text-shadow 0.3s;
}

.nav-links a:hover {
  color: var(--cyan);
  text-shadow: 0 0 6px rgba(0, 255, 255, 0.4);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cyan);
}

/* ===== SECTIONS ===== */
.section { padding: 100px 0; scroll-margin-top: 56px; }
.section--dark { background: var(--void); }
.section--darker { background: #07070f; }

.section-title {
  font-family: 'Press Start 2P', monospace;
  font-size: 13px;
  color: var(--cyan);
  text-align: center;
  margin-bottom: 56px;
  letter-spacing: 1px;
  text-shadow: var(--glow-cyan);
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-dim);
  text-align: center;
  margin-top: -40px;
  margin-bottom: 48px;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 60px;
  position: relative;
  overflow: hidden;
}

/* Cityscape background — replace gradient with your pixel art image */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(to top, var(--void) 0%, rgba(10, 10, 20, 0.4) 40%, transparent 70%),
    url('cyberpunk-city.webp') center bottom / cover no-repeat;
  opacity: 0.7;
}

/* Animated neon glow spots to simulate city lights */
.hero-bg::before {
  content: '';
  position: absolute;
  top: 15%; left: 10%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255, 0, 144, 0.15) 0%, transparent 70%);
  animation: neon-drift 8s ease-in-out infinite alternate;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 25%; right: 15%;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.12) 0%, transparent 70%);
  animation: neon-drift 10s ease-in-out infinite alternate-reverse;
}

@keyframes neon-drift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -20px) scale(1.2); }
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-insert-coin {
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  color: var(--cyan);
  margin-bottom: 36px;
  animation: blink 2s ease-in-out infinite;
  text-shadow: 0 0 6px rgba(0, 255, 255, 0.5);
}

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

/* ===== HERO TOP (avatar + bubble side by side) ===== */
.hero-top {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin-bottom: 20px;
}

.hero-info {
  text-align: center;
  margin-bottom: 20px;
}

.speech-bubble {
  background: var(--bg-card);
  border: 1px solid var(--cyan);
  color: var(--cyan);
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  padding: 12px 16px;
  border-radius: 4px;
  line-height: 1.8;
  box-shadow: var(--glow-cyan);
  text-align: left;
  min-height: 38px;
  position: relative;
}

.speech-bubble::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right-color: var(--cyan);
}

.speech-bubble::after {
  content: '';
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right-color: var(--bg-card);
}

.speech-cursor {
  display: inline-block;
  width: 8px;
  height: 12px;
  background: var(--cyan);
  margin-left: 2px;
  vertical-align: middle;
  animation: cursor-blink 0.8s step-end infinite;
}

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

.hero-avatar img {
  width: 100px;
  height: 100px;
  border-radius: 4px;
  object-fit: cover;
  object-position: center 20%;
  border: 2px solid var(--cyan);
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.3);
  image-rendering: auto; /* change to 'pixelated' when using pixel art avatar */
}


/* ===== GLITCH TEXT ===== */
.hero-name {
  font-family: 'Press Start 2P', monospace;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.5;
  position: relative;
}

.glitch {
  animation: glitch-skew 4s infinite linear alternate-reverse;
}

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

.glitch::before {
  color: var(--cyan);
  clip-path: inset(0 0 60% 0);
  animation: glitch-1 3s infinite linear alternate-reverse;
}

.glitch::after {
  color: var(--magenta);
  clip-path: inset(40% 0 0 0);
  animation: glitch-2 2.5s infinite linear alternate-reverse;
}

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

@keyframes glitch-2 {
  0%, 88%, 100% { transform: translate(0); }
  90% { transform: translate(-2px, 1px); }
  93% { transform: translate(2px, -1px); }
  95% { transform: translate(-1px, 0); }
}

@keyframes glitch-skew {
  0%, 95%, 100% { transform: skew(0deg); }
  96% { transform: skew(0.5deg); }
  98% { transform: skew(-0.3deg); }
}

.hero-class {
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  color: var(--magenta);
  margin-bottom: 4px;
  line-height: 1.8;
  text-shadow: 0 0 6px rgba(255, 0, 144, 0.4);
}

.hero-class-sub {
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 18px;
}

.achievement {
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  color: var(--gold);
  background: rgba(255, 224, 64, 0.06);
  border: 1px solid rgba(255, 224, 64, 0.12);
  padding: 8px 14px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s, box-shadow 0.3s;
}

.achievement:hover {
  background: rgba(255, 224, 64, 0.12);
  box-shadow: var(--glow-gold);
}

.achievement--magenta {
  color: var(--magenta);
  background: rgba(255, 0, 144, 0.06);
  border-color: rgba(255, 0, 144, 0.12);
}
.achievement--magenta:hover {
  background: rgba(255, 0, 144, 0.12);
  box-shadow: var(--glow-magenta);
}

.achievement--cyan {
  color: var(--cyan);
  background: rgba(0, 255, 255, 0.06);
  border-color: rgba(0, 255, 255, 0.12);
}
.achievement--cyan:hover {
  background: rgba(0, 255, 255, 0.12);
  box-shadow: var(--glow-cyan);
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
}

/* ===== BUTTONS ===== */
.btn {
  font-family: 'Press Start 2P', monospace;
  display: inline-block;
  padding: 14px 24px;
  font-size: 10px;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s, border-color 0.3s, transform 0.3s;
  cursor: pointer;
}

.btn--primary {
  background: var(--magenta);
  color: var(--text);
  border: 1px solid var(--magenta);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.btn--primary:hover {
  box-shadow: var(--glow-magenta), 0 4px 16px rgba(255, 0, 144, 0.25);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--cyan);
  border: 1px solid rgba(0, 255, 255, 0.25);
}

.btn--outline:hover {
  border-color: var(--cyan);
  box-shadow: var(--glow-cyan);
  transform: translateY(-1px);
}

/* ===== XP BARS ===== */
.xp-bar {
  width: 100%;
  height: 16px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 255, 0.06);
}

.xp-bar--sm {
  height: 10px;
  border: none;
}

.xp-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--ocean), var(--cyan));
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 6px;
  transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.2);
}

.xp-fill--cyan { background: linear-gradient(90deg, var(--blue), var(--cyan)); box-shadow: 0 0 8px rgba(0, 255, 255, 0.2); }
.xp-fill--magenta { background: linear-gradient(90deg, #5c0a30, var(--magenta)); box-shadow: 0 0 8px rgba(255, 0, 144, 0.2); }
.xp-fill--yellow { background: linear-gradient(90deg, #5c4a0a, var(--gold)); box-shadow: 0 0 8px rgba(255, 224, 64, 0.2); }

/* ===== ABOUT ===== */


/* ===== QUEST LOG ===== */
.quest-category {
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  color: var(--text-dim);
  margin-top: 48px;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.quest-category:first-of-type { margin-top: 0; }

.quest-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 8px;
}

.quest-card {
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  position: relative;
}

.quest-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  border-radius: 4px 0 0 4px;
  background: var(--cyan);
  opacity: 0;
  transition: opacity 0.3s;
}

.quest-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 16px rgba(0, 255, 255, 0.06);
}

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

.quest-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
  gap: 8px;
}

.quest-name {
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  color: var(--text);
  line-height: 1.6;
}

.quest-badge {
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
}

.quest-badge--legendary {
  color: var(--gold);
  background: rgba(255, 224, 64, 0.1);
  text-shadow: 0 0 4px rgba(255, 224, 64, 0.3);
}

.quest-badge--epic {
  color: var(--magenta);
  background: rgba(255, 0, 144, 0.1);
  text-shadow: 0 0 4px rgba(255, 0, 144, 0.3);
}

.quest-badge--rare {
  color: var(--cyan-light);
  background: rgba(0, 204, 255, 0.1);
  text-shadow: 0 0 4px rgba(0, 204, 255, 0.3);
}

.quest-badge--uncommon {
  color: var(--lime);
  background: rgba(204, 255, 0, 0.1);
  text-shadow: 0 0 4px rgba(204, 255, 0, 0.3);
}

.quest-year {
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  color: var(--text-dim);
  display: block;
  margin-bottom: 8px;
}

.quest-card p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 14px;
}

.quest-loot {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 12px;
}

.loot {
  font-size: 10px;
  color: var(--text-mid);
  background: rgba(0, 255, 255, 0.04);
  border: 1px solid rgba(0, 255, 255, 0.08);
  padding: 2px 8px;
  border-radius: 2px;
}

.quest-status {
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  color: var(--lime);
  text-shadow: 0 0 4px rgba(204, 255, 0, 0.3);
}

.cta-block {
  text-align: center;
  margin-top: 56px;
}

.cta-block p {
  font-family: 'Press Start 2P', monospace;
  font-size: 11px;
  color: var(--text);
  margin-bottom: 24px;
}

/* ===== CONTACT ===== */
.contact-content { text-align: center; }

.contact-dialog {
  max-width: 460px;
  margin: 0 auto;
  padding: 40px 36px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 0, 144, 0.15);
  border-radius: 4px;
  box-shadow: var(--glow-magenta), inset 0 0 30px rgba(255, 0, 144, 0.02);
}

.contact-npc {
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  color: var(--text);
  line-height: 2.2;
  margin-bottom: 28px;
}

.contact-options {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 24px;
}

.contact-location {
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  color: var(--text-dim);
}

.footer {
  text-align: center;
  padding-top: 64px;
}

.footer p {
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  color: rgba(232, 232, 255, 0.12);
  line-height: 2;
}

/* ===== HUD FRAME ===== */
.hud-frame {
  position: relative;
  padding: 32px 28px;
  margin: 0 auto 32px;
  max-width: 600px;
  background: rgba(10, 10, 20, 0.7);
  border: 1px solid rgba(0, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.hud-corner {
  position: absolute;
  width: 16px;
  height: 16px;
}

.hud-corner--tl {
  top: -1px; left: -1px;
  border-top: 2px solid var(--cyan);
  border-left: 2px solid var(--cyan);
  box-shadow: -2px -2px 6px rgba(0, 255, 255, 0.2);
}

.hud-corner--tr {
  top: -1px; right: -1px;
  border-top: 2px solid var(--cyan);
  border-right: 2px solid var(--cyan);
  box-shadow: 2px -2px 6px rgba(0, 255, 255, 0.2);
}

.hud-corner--bl {
  bottom: -1px; left: -1px;
  border-bottom: 2px solid var(--magenta);
  border-left: 2px solid var(--magenta);
  box-shadow: -2px 2px 6px rgba(255, 0, 144, 0.2);
}

.hud-corner--br {
  bottom: -1px; right: -1px;
  border-bottom: 2px solid var(--magenta);
  border-right: 2px solid var(--magenta);
  box-shadow: 2px 2px 6px rgba(255, 0, 144, 0.2);
}

/* ===== HERO STAT GROUPS (in HUD) ===== */
.hero-stat-group {
  margin-bottom: 16px;
}

.hero-bar-tags {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 6px;
}

.hero-bar-tags .achievement {
  font-size: 10px;
  padding: 8px 10px;
  text-align: left;
}

.hero-bar {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-bar-label {
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  color: var(--text-dim);
  width: 80px;
  white-space: nowrap;
  flex-shrink: 0;
  text-align: right;
}

.hero-bar .xp-bar--sm { flex: 1; }


/* ===== NEON DIVIDER ===== */
.neon-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.3), 0 0 20px rgba(0, 255, 255, 0.1);
  margin: 0;
}

.neon-divider--magenta {
  background: linear-gradient(90deg, transparent, var(--magenta), transparent);
  box-shadow: 0 0 8px rgba(255, 0, 144, 0.3), 0 0 20px rgba(255, 0, 144, 0.1);
}

/* ===== BOUNTY BOARD ===== */
.bounty-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.bounty-card {
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 0, 144, 0.1);
  border-radius: 4px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  position: relative;
}

.bounty-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  border-radius: 4px 0 0 4px;
  background: var(--magenta);
  opacity: 0;
  transition: opacity 0.3s;
}

.bounty-card:hover {
  border-color: rgba(255, 0, 144, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 0 16px rgba(255, 0, 144, 0.06);
}

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

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

.bounty-client {
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  color: var(--text);
}

.bounty-year {
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  color: var(--text-dim);
}

.bounty-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.55;
  margin-bottom: 12px;
}

.bounty-status {
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  color: var(--gold);
  text-shadow: 0 0 4px rgba(255, 224, 64, 0.3);
}

/* ===== NEON FLICKER ===== */
@keyframes neon-flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    opacity: 1;
  }
  20%, 24%, 55% {
    opacity: 0.6;
  }
}

.neon-flicker {
  animation: neon-flicker 4s infinite;
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 8px 16px;
  background: var(--void);
  color: var(--cyan);
  border: 1px solid var(--cyan);
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  text-decoration: none;
  border-radius: 3px;
}

.skip-link:focus {
  top: 16px;
}

/* ===== FOCUS VISIBLE ===== */
:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

:focus:not(:focus-visible) {
  outline: none;
}

.btn:focus-visible {
  outline-color: var(--magenta);
  box-shadow: 0 0 0 4px rgba(255, 0, 144, 0.25);
}

/* ===== FADE-IN ===== */
.fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .glitch, .glitch::before, .glitch::after,
  .hero-insert-coin, .neon-flicker,
  .hero-bg::before, .hero-bg::after,
  .crt-overlay::before {
    animation: none !important;
  }

  *, *::before, *::after {
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }

  .fade-in {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

  .hud-frame { padding: 20px 16px; }
  .speech-bubble { font-size: 10px; }
  .hero-quick-stats { flex-wrap: wrap; }
  .hero-bar-label { width: 80px; font-size: 10px; }
  .hero-bar-tags { padding-left: 0; }
  .hero-ctas { flex-direction: column; align-items: center; }

  .quest-list { grid-template-columns: 1fr; }
  .bounty-grid { grid-template-columns: 1fr; }

  .section { padding: 72px 0; }

  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: rgba(10, 10, 20, 0.98);
    backdrop-filter: blur(12px);
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open { display: flex; }
  .contact-options { flex-direction: column; align-items: center; }
}
