/* ============================================================
   FORGED 2026: THE QUEST — shared stylesheet
   Used by index.html (body.landing) and register.html (body.register)
   ============================================================ */

:root {
  /* Greyson 2026 palette — style sheet 26-LC-Forged_Style Sheet.pdf */
  --bg: #071821;          /* Ink Navy */
  --bg-2: #084734;        /* Green 3 */
  --bg-3: #0a3d28;        /* lifted Green 3 for card depth */
  --bg-card: #0a2e26;

  --green-bright: #FBF7EC; /* Parchment (high emphasis) */
  --green: #CEF17B;        /* Green 2 (CTA / accent) */
  --green-mid: #DEF7CE;    /* Green 1 (secondary accent) */
  --green-dim: #084734;    /* Green 3 (borders on light surfaces) */
  --green-dark: #052b1a;
  --green-darker: #031812;

  --fg: #DEF7CE;           /* Green 1 (body text) */
  --fg-muted: rgba(222,247,206,0.65);
  --fg-dim: rgba(222,247,206,0.40);

  --border: rgba(222,247,206,0.15);
  --border-bright: rgba(222,247,206,0.30);
}

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

@font-face {
  font-family: 'Times New Pixel';
  src: url('fonts/TimesNewPixel.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Dogica Pixel';
  src: url('fonts/dogicapixel.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Dogica Pixel';
  src: url('fonts/dogicapixelbold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* CRT scanline overlay */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 9999;
  background: repeating-linear-gradient(
    0deg,
    transparent 0px,
    rgba(0,0,0,0.15) 1px,
    transparent 2px,
    transparent 3px
  );
}

/* Phosphor glow */
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 9998;
  background: radial-gradient(ellipse at 50% 40%, transparent 30%, rgba(0,0,0,0.4) 100%);
}

.pixel { font-family: 'Times New Pixel', 'Times New Pixel', 'Dogica Pixel', monospace; }
.mono { font-family: 'VT323', monospace; }

h1, h2, h3 { font-family: 'Cinzel', serif; font-weight: 700; }

.container { margin: 0 auto; padding: 0 2rem; }
body.landing .container { max-width: 1200px; }
body.register .container { max-width: 700px; padding: 0 1.5rem; }

/* === NAV === */
nav {
  left: 0; right: 0;
  z-index: 1000;
  background: rgba(7,24,33,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--border);
  padding: 0.75rem 0;
}
body.landing nav { position: fixed; top: 0; }
body.register nav { position: sticky; top: 0; }

nav .container { display: flex; align-items: center; justify-content: space-between; }
body.register nav .container { max-width: 1200px; }
nav .logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
nav .logo img {
  height: 52px;
  width: auto;
  display: block;
}
nav ul { display: flex; gap: 1.5rem; list-style: none; }
nav ul a { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-muted); transition: color 0.15s; text-decoration: none; }
nav ul a:hover { color: var(--green); }
nav .nav-cta {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  background: var(--green);
  color: var(--bg);
  font-family: 'Times New Pixel', 'Dogica Pixel', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  transition: all 0.15s;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 0 var(--green-dim);
  text-decoration: none;
}
nav .nav-cta:hover { background: var(--green-bright); box-shadow: 0 4px 0 var(--green-mid); }
nav .nav-links { display: flex; gap: 1.2rem; align-items: center; }
nav .nav-links a { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-muted); text-decoration: none; }
nav .nav-links a:hover { color: var(--green); }

/* === HERO (landing) === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(206,241,123,0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%);
  overflow: hidden;
}

/* Pixel art castle background */
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("images/castle-bg.png");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.22;
}
/* Dark gradient overlay to keep text readable over castle */
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(7,24,33,0.55) 0%, rgba(7,24,33,0.35) 50%, rgba(7,24,33,0.7) 100%);
  z-index: 1;
}

/* Floating pixel particles */
.hero-particles {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--green);
  opacity: 0.3;
  animation: float 8s linear infinite;
}
.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 7s; }
.particle:nth-child(2) { left: 25%; animation-delay: 2s; animation-duration: 9s; }
.particle:nth-child(3) { left: 40%; animation-delay: 1s; animation-duration: 6s; }
.particle:nth-child(4) { left: 55%; animation-delay: 3s; animation-duration: 8s; }
.particle:nth-child(5) { left: 70%; animation-delay: 0.5s; animation-duration: 10s; }
.particle:nth-child(6) { left: 85%; animation-delay: 2.5s; animation-duration: 7.5s; }
.particle:nth-child(7) { left: 15%; animation-delay: 4s; animation-duration: 8.5s; }
.particle:nth-child(8) { left: 65%; animation-delay: 1.5s; animation-duration: 9.5s; }
@keyframes float {
  0% { bottom: 0; opacity: 0; }
  10% { opacity: 0.4; }
  90% { opacity: 0.4; }
  100% { bottom: 100%; opacity: 0; }
}

.hero-content { position: relative; z-index: 2; padding: 2rem; }

.hero .pre-title {
  font-family: 'VT323', monospace;
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  color: var(--green-mid);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero .pre-title::before { content: '> '; color: var(--green); }

.hero h1 {
  font-family: 'Times New Pixel', 'Dogica Pixel', monospace;
  font-size: clamp(0.95rem, 3vw, 1.8rem);
  line-height: 1.15;
  color: var(--green);
  margin-bottom: 0.75rem;
  text-shadow: 0 0 25px rgba(206,241,123,0.45), 0 0 80px rgba(206,241,123,0.25);
}
.hero .quest-sub {
  font-family: 'Times New Pixel', 'Dogica Pixel', monospace;
  font-size: clamp(1.1rem, 3vw, 2.2rem);
  color: var(--fg);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  text-shadow: 0 0 15px rgba(222,247,206,0.2);
}
.hero .quest-sub img.hero-quest-logo {
  height: clamp(6rem, 18vw, 13rem);
  width: auto;
  max-width: min(420px, 90vw);
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 22px rgba(206,241,123,0.7)) drop-shadow(0 0 70px rgba(206,241,123,0.4));
}

.hero .tagline {
  font-family: 'VT323', monospace;
  font-size: 1.5rem;
  color: var(--fg-muted);
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}
.hero .tagline span { color: var(--green); }

/* RPG Quest Dialog Box */
.quest-dialog {
  max-width: 420px;
  margin: 0 auto 2rem;
  background: var(--bg-3);
  border: 3px solid var(--green-dim);
  padding: 0;
  position: relative;
  animation: dialog-appear 0.4s ease-out 0s 1 normal forwards;
  opacity: 0;
}
@keyframes dialog-appear {
  0%   { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}
/* Corner brackets for that RPG box look */
.quest-dialog::before, .quest-dialog::after {
  content: '';
  position: absolute;
  width: 8px; height: 8px;
  background: var(--green);
}
.quest-dialog::before { top: -3px; left: -3px; }
.quest-dialog::after { bottom: -3px; right: -3px; }

.quest-dialog-header {
  background: var(--green-dim);
  padding: 0.4rem 1rem;
  font-family: 'Times New Pixel', 'Dogica Pixel', monospace;
  font-size: 0.6rem;
  color: var(--bg);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quest-dialog-body {
  padding: 1.2rem 1.5rem;
  text-align: left;
}
.quest-dialog-text {
  font-family: 'VT323', monospace;
  font-size: 1.3rem;
  color: var(--fg);
  line-height: 1.4;
  margin-bottom: 1rem;
  min-height: 5.5rem;
}
.quest-dialog-text .accent { color: var(--green); }
.quest-dialog-text .cursor {
  display: inline-block;
  width: 8px;
  height: 1.1rem;
  background: var(--green);
  vertical-align: text-bottom;
  margin-left: 2px;
  animation: cursor-blink 0.6s steps(2) infinite;
}
@keyframes cursor-blink { 50% { opacity: 0; } }
.quest-dialog-prompt {
  font-family: 'Times New Pixel', 'Dogica Pixel', monospace;
  font-size: 0.6rem;
  color: var(--green);
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s;
  cursor: pointer;
  text-decoration: none;
}
.quest-dialog-prompt.visible { opacity: 1; }
.quest-dialog-prompt .arrow {
  animation: blink 0.8s steps(2) infinite;
}

.hero-meta {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.hero-meta-item { text-align: center; }
.hero-meta-item .label {
  font-family: 'Times New Pixel', 'Dogica Pixel', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 0.3rem;
}
.hero-meta-item .value {
  font-family: 'VT323', monospace;
  font-size: 1.3rem;
  color: var(--green);
}

.hero-cta {
  margin-top: 2rem;
  display: inline-block;
  padding: 1.1rem 2.8rem;
  background: var(--green);
  color: var(--bg);
  font-family: 'Times New Pixel', 'Dogica Pixel', monospace;
  font-size: 1rem;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: all 0.15s;
  box-shadow: 0 6px 0 var(--green-dim);
  text-shadow: none;
  text-decoration: none;
}
.hero-cta:hover {
  background: var(--green-bright);
  box-shadow: 0 6px 0 var(--green-mid);
  transform: translateY(-2px);
}
.hero-cta:active { box-shadow: 0 2px 0 var(--green-dim); transform: translateY(4px); }

.continue-prompt {
  position: absolute;
  bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  font-family: 'VT323', monospace;
  font-size: 1.1rem;
  color: var(--fg-dim);
  animation: blink 1s steps(2) infinite;
  white-space: nowrap;
  cursor: pointer;
}
.continue-prompt .desktop { display: inline; }
.continue-prompt .mobile { display: none; }

/* === SECTION COMMON === */
section { padding: 5rem 0; position: relative; }
.section-label {
  font-family: 'Times New Pixel', 'Dogica Pixel', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--green-mid);
  text-align: center;
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Times New Pixel', 'Dogica Pixel', monospace;
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  text-align: center;
  color: var(--fg);
  margin-bottom: 3rem;
  line-height: 1.4;
}
.section-title .accent { color: var(--green); }

.pixel-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 2rem 0;
}
.pixel-divider .dash { color: var(--green-dim); font-family: 'Times New Pixel', 'Dogica Pixel', monospace; font-size: 0.55rem; letter-spacing: 0.5em; }

.section-bg {
  position: relative;
  overflow: hidden;
}
.section-bg > .container { position: relative; z-index: 1; }

/* === ABOUT === */
.about { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.about-text {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  font-family: 'VT323', monospace;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--fg);
}
.about-text p + p { margin-top: 1rem; }
.about-text .highlight { color: var(--green); }

.arc {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.arc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.arc-step .badge {
  width: 60px; height: 60px;
  border: 3px solid var(--green-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Times New Pixel', 'Dogica Pixel', monospace;
  font-size: 0.6rem;
  color: var(--green);
  background: var(--bg-3);
  box-shadow: 0 0 15px rgba(206,241,123,0.1);
}
.arc-step .label {
  font-family: 'VT323', monospace;
  font-size: 1rem;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
}
.arc-arrow {
  /* Align with the 60px badges, not the full step height (badge + label). */
  align-self: flex-start;
  height: 60px;
  display: flex;
  align-items: center;
  color: var(--green-mid);
  font-family: 'VT323', monospace;
  font-size: 1.5rem;
}

/* === SESSIONS === */
.sessions { background: var(--bg); }
.session-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.session-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  padding: 2rem 1.5rem;
  position: relative;
  transition: all 0.2s;
}
.session-card:hover {
  border-color: var(--green);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px rgba(206,241,123,0.1);
}
.session-card .level-badge {
  position: absolute;
  top: -10px; right: 10px;
  background: var(--green-dim);
  color: var(--fg);
  font-family: 'Times New Pixel', 'Dogica Pixel', monospace;
  font-size: 0.55rem;
  padding: 0.3rem 0.6rem;
  letter-spacing: 0.05em;
}
.session-num {
  font-family: 'Times New Pixel', 'Dogica Pixel', monospace;
  font-size: 0.6rem;
  color: var(--green-mid);
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}
.session-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: var(--fg);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}
.session-question {
  font-family: 'VT323', monospace;
  font-size: 1.2rem;
  color: var(--green);
  margin-bottom: 0.8rem;
}
.session-question::before { content: '[?] '; color: var(--green-mid); }
.session-card p {
  font-size: 0.85rem;
  color: var(--fg);
  line-height: 1.6;
}
.session-movement {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.3rem 0.8rem;
  background: var(--bg-3);
  border: 1px solid var(--green-dim);
  font-family: 'Times New Pixel', 'Dogica Pixel', monospace;
  font-size: 0.55rem;
  color: var(--green);
  letter-spacing: 0.05em;
}

/* === AGENDA === */
.agenda { background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%); }
.timeline { max-width: 650px; margin: 0 auto; }
.timeline-item {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 2px dashed var(--border);
}
.timeline-item:last-child { border-bottom: none; }
.timeline-time {
  font-family: 'Times New Pixel', 'Dogica Pixel', monospace;
  font-size: 0.65rem;
  color: var(--green);
  min-width: 90px;
  letter-spacing: 0.02em;
}
.timeline-content { flex: 1; }
.timeline-content .title { font-size: 0.95rem; color: var(--fg); font-weight: 500; }
.timeline-content .desc { font-size: 0.8rem; color: var(--fg-muted); margin-top: 0.2rem; }
.timeline-content .speaker { font-family: 'VT323', monospace; font-size: 1rem; color: var(--green-mid); margin-top: 0.2rem; }

/* === SPEAKERS === */
.speakers { background: var(--bg); }
.speaker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.speaker-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 2px solid var(--border);
  transition: all 0.2s;
}
.speaker-card:hover { border-color: var(--green); transform: translateY(-3px); }
.speaker-avatar {
  width: 80px; height: 80px;
  margin: 0 auto 1rem;
  border: 3px solid var(--green-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Times New Pixel', 'Dogica Pixel', monospace;
  font-size: 1rem;
  color: var(--green);
  background: var(--bg-3);
  box-shadow: 0 0 15px rgba(206,241,123,0.1);
  overflow: hidden;
}
.speaker-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; image-rendering: pixelated; }
.speaker-card h3 { font-family: 'Cinzel', serif; font-size: 1.1rem; color: var(--fg); margin-bottom: 0.3rem; }
.speaker-card .role { font-family: 'VT323', monospace; font-size: 1.1rem; color: var(--green-mid); margin-bottom: 0.5rem; }
.speaker-card p { font-size: 0.8rem; color: var(--fg-muted); }

/* === ACTIVITIES === */
.activities { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.activity-card {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--bg-card);
  border: 2px solid var(--border);
  transition: all 0.15s;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.activity-card:hover { border-color: var(--green); transform: scale(1.03); }
.activity-icon { font-size: 1.8rem; margin-bottom: 0.5rem; filter: grayscale(0.2) brightness(1.05) sepia(0.3) hue-rotate(40deg) saturate(0.6); }
.activity-card h4 { font-family: 'Cinzel', serif; font-size: 0.95rem; color: var(--fg); margin-bottom: 0.3rem; }
.activity-card p { font-family: 'VT323', monospace; font-size: 1rem; color: var(--fg-muted); }

/* === REGISTRATION (landing) === */
.registration { background: var(--bg-2); }
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 950px;
  margin: 0 auto;
}
.price-card {
  background: var(--bg);
  border: 3px solid var(--border);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: all 0.2s;
}
.price-card:hover { border-color: var(--green-dim); }
.price-card.featured {
  border-color: var(--green);
  box-shadow: 0 0 40px rgba(206,241,123,0.08);
}
.price-card.featured::before {
  content: 'RECOMMENDED LOADOUT';
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--green);
  color: var(--bg);
  font-family: 'Times New Pixel', 'Dogica Pixel', monospace;
  font-size: 0.6rem;
  padding: 0.3rem 0.8rem;
  letter-spacing: 0.05em;
}
.price-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.price-amount {
  font-family: 'Times New Pixel', 'Dogica Pixel', monospace;
  font-size: 2.2rem;
  color: var(--green);
  margin: 1rem 0;
  text-shadow: 0 0 15px rgba(206,241,123,0.2);
}
.price-amount .currency { font-size: 1rem; vertical-align: top; }
.price-card .desc { font-family: 'VT323', monospace; font-size: 1.1rem; color: var(--fg-muted); margin-bottom: 1.5rem; }
.price-features { list-style: none; text-align: left; margin-bottom: 1.5rem; }
.price-features li {
  font-size: 0.8rem;
  color: var(--fg);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.price-features li::before { content: '>'; color: var(--green); font-size: 0.6rem; margin-top: 0.3rem; font-family: 'Times New Pixel', 'Dogica Pixel', monospace; }
.price-btn {
  display: block;
  width: 100%;
  padding: 1rem;
  border: none;
  background: var(--green);
  color: var(--bg);
  font-family: 'Times New Pixel', 'Dogica Pixel', monospace;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.15s;
  box-shadow: 0 4px 0 var(--green-dim);
  text-align: center;
  text-decoration: none;
}
.price-btn:hover { background: var(--green-bright); box-shadow: 0 4px 0 var(--green-mid); }
.price-btn:active { transform: translateY(3px); box-shadow: 0 1px 0 var(--green-dim); }

.reg-note {
  text-align: center;
  margin-top: 2.5rem;
  font-family: 'VT323', monospace;
  font-size: 1.3rem;
  color: var(--fg-muted);
}
.reg-note strong { color: var(--green); }

/* === FOOTER === */
footer {
  background: var(--bg);
  padding: 3rem 0 1.5rem;
  text-align: center;
  border-top: 3px solid var(--border);
}
.footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.footer-logo img {
  height: 64px;
  width: auto;
  display: block;
}
.footer-tag { font-family: 'VT323', monospace; font-size: 1.2rem; color: var(--fg); margin-bottom: 1rem; }
.footer-links { display: flex; gap: 1.5rem; justify-content: center; margin: 1rem 0; flex-wrap: wrap; }
.footer-links a { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg); text-decoration: none; }
.footer-links a:hover { color: var(--green); }
footer p { font-family: 'VT323', monospace; font-size: 1.1rem; color: var(--fg); margin-bottom: 0.2rem; }
.footer-bottom { font-size: 0.7rem; color: var(--fg-muted); margin-top: 1.5rem; font-family: 'Inter', sans-serif; }

/* === REGISTER: progress bar === */
.progress-section {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  position: sticky;
  top: 49px;
  z-index: 999;
}
.progress-bar-wrap { max-width: 700px; margin: 0 auto; padding: 0 1.5rem; }
.progress-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.progress-label .step-name {
  font-family: 'Times New Pixel', 'Dogica Pixel', monospace;
  font-size: 0.55rem;
  color: var(--green);
  letter-spacing: 0.1em;
}
.progress-label .step-count {
  font-family: 'VT323', monospace;
  font-size: 1rem;
  color: var(--fg-muted);
}
.progress-track {
  height: 12px;
  background: var(--bg-3);
  border: 2px solid var(--border);
  position: relative;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--green);
  width: 0%;
  transition: width 0.5s ease;
  box-shadow: 0 0 10px rgba(206,241,123,0.3);
}
.progress-pips {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
}
.pip {
  font-family: 'Times New Pixel', 'Dogica Pixel', monospace;
  font-size: 0.5rem;
  color: var(--fg-dim);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.pip.active { color: var(--green); }
.pip.done { color: var(--green-dim); }

/* === REGISTER: screens === */
.screen {
  display: none;
  min-height: calc(100vh - 130px);
  padding: 2.5rem 0 4rem;
  animation: screenIn 0.4s ease;
}
.screen.active { display: block; }
@keyframes screenIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.screen-label {
  font-family: 'Times New Pixel', 'Dogica Pixel', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--green-dim);
  text-align: center;
  margin-bottom: 0.8rem;
}
.screen-title {
  font-family: 'Times New Pixel', 'Dogica Pixel', monospace;
  font-size: clamp(1.3rem, 4vw, 2rem);
  text-align: center;
  color: var(--fg);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.screen-title .accent { color: var(--green); }
.screen-sub {
  text-align: center;
  font-family: 'VT323', monospace;
  font-size: 1.3rem;
  color: var(--fg-muted);
  margin-bottom: 2.5rem;
}

/* === REGISTER: forms === */
.form-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.form-card:hover { border-color: var(--border-bright); }

.form-group { margin-bottom: 1.2rem; }
.form-group:last-child { margin-bottom: 0; }
.form-label {
  font-family: 'Times New Pixel', 'Dogica Pixel', monospace;
  font-size: 0.55rem;
  color: var(--green);
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
  display: block;
}
.form-input, .form-select {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--bg);
  border: 2px solid var(--border);
  color: var(--fg);
  font-family: 'VT323', monospace;
  font-size: 1.2rem;
  transition: border-color 0.2s;
}
.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--green);
}
.form-input::placeholder { color: var(--fg-dim); }
.form-row { display: flex; gap: 1rem; }
.form-row .form-group { flex: 1; }

.form-helper {
  font-family: 'VT323', monospace;
  font-size: 1rem;
  color: var(--fg-dim);
  margin-top: 0.3rem;
}

/* === REGISTER: path selection === */
.path-grid {
  display: grid;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}
.path-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  padding: 2rem 1.5rem;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}
.path-card:hover { border-color: var(--green-dim); transform: translateY(-2px); }
.path-card.selected { border-color: var(--green); box-shadow: 0 0 25px rgba(206,241,123,0.1); }
.path-card.selected::after {
  content: '✓ SELECTED';
  position: absolute;
  top: 0.8rem; right: 0.8rem;
  font-family: 'Times New Pixel', 'Dogica Pixel', monospace;
  font-size: 0.5rem;
  color: var(--green);
}

.path-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.path-icon {
  width: 50px; height: 50px;
  border: 2px solid var(--green-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: var(--bg-3);
  flex-shrink: 0;
}
.path-info { flex: 1; }
.path-name {
  font-family: 'Times New Pixel', 'Dogica Pixel', monospace;
  font-size: 0.85rem;
  color: var(--fg);
  margin-bottom: 0.3rem;
}
.path-price {
  font-family: 'VT323', monospace;
  font-size: 1.5rem;
  color: var(--green);
}
.path-price.free { color: var(--green-mid); }
.path-desc {
  font-family: 'VT323', monospace;
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.4;
  margin-bottom: 0.8rem;
}
.path-features {
  list-style: none;
  font-size: 0.8rem;
  color: var(--fg);
}
.path-features li {
  padding: 0.3rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.path-features li::before { content: '>'; color: var(--green); font-family: 'Times New Pixel', 'Dogica Pixel', monospace; font-size: 0.5rem; margin-top: 0.2rem; }

.path-badge {
  display: inline-block;
  background: var(--green-dim);
  color: var(--fg);
  font-family: 'Times New Pixel', 'Dogica Pixel', monospace;
  font-size: 0.5rem;
  padding: 0.2rem 0.5rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

/* === REGISTER: kit preview === */
.kit-preview {
  background: var(--bg-card);
  border: 2px solid var(--border);
  padding: 2rem 1.5rem;
  margin-bottom: 1.5rem;
}
.kit-preview h3 {
  font-family: 'Times New Pixel', 'Dogica Pixel', monospace;
  font-size: 0.75rem;
  color: var(--green);
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}
.kit-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}
.kit-item {
  text-align: center;
  padding: 1rem 0.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
}
.kit-item .icon { font-size: 2rem; margin-bottom: 0.4rem; filter: grayscale(0.2) brightness(1.05) sepia(0.3) hue-rotate(40deg) saturate(0.6); }
.kit-item .name { font-family: 'VT323', monospace; font-size: 1rem; color: var(--fg); }
.kit-item .note { font-size: 0.7rem; color: var(--fg-dim); }

/* === REGISTER: add-ons === */
.addon-section {
  background: var(--bg-card);
  border: 2px solid var(--border);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.addon-section h3 {
  font-family: 'Times New Pixel', 'Dogica Pixel', monospace;
  font-size: 0.65rem;
  color: var(--green);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}
.addon-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
}
.addon-item:last-child { border-bottom: none; }
.addon-check {
  width: 20px; height: 20px;
  border: 2px solid var(--green-dim);
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: all 0.15s;
}
.addon-check.checked { background: var(--green); border-color: var(--green); }
.addon-check.checked::after {
  content: '✓';
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  color: var(--bg);
  font-size: 0.7rem;
  font-weight: bold;
}
.addon-info { flex: 1; }
.addon-name { font-size: 0.9rem; color: var(--fg); }
.addon-desc { font-family: 'VT323', monospace; font-size: 0.95rem; color: var(--fg-muted); }
.addon-price { font-family: 'VT323', monospace; font-size: 1.2rem; color: var(--green); }

/* === REGISTER: summary === */
.summary-card {
  background: var(--bg-card);
  border: 2px solid var(--green-dim);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
}
.summary-row:last-child { border-bottom: none; }
.summary-label { font-family: 'VT323', monospace; font-size: 1.1rem; color: var(--fg-muted); }
.summary-value { font-family: 'VT323', monospace; font-size: 1.1rem; color: var(--fg); }
.summary-total {
  border-top: 2px solid var(--green-dim);
  padding-top: 0.8rem;
  margin-top: 0.5rem;
}
.summary-total .summary-label { font-family: 'Times New Pixel', 'Dogica Pixel', monospace; font-size: 0.7rem; color: var(--green); }
.summary-total .summary-value { font-family: 'Times New Pixel', 'Dogica Pixel', monospace; font-size: 1.1rem; color: var(--green); }

/* === REGISTER: buttons === */
.btn-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.step-btn {
  padding: 1rem 2rem;
  font-family: 'Times New Pixel', 'Dogica Pixel', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: all 0.15s;
}
.step-btn.primary {
  background: var(--green);
  color: var(--bg);
  box-shadow: 0 5px 0 var(--green-dim);
}
.step-btn.primary:hover { background: var(--green-bright); box-shadow: 0 5px 0 var(--green-mid); transform: translateY(-1px); }
.step-btn.primary:active { box-shadow: 0 2px 0 var(--green-dim); transform: translateY(3px); }
.step-btn.primary:disabled { background: var(--bg-3); color: var(--fg-dim); box-shadow: none; cursor: not-allowed; transform: none; }
.step-btn.secondary {
  background: transparent;
  color: var(--fg-muted);
  border: 2px solid var(--border);
}
.step-btn.secondary:hover { color: var(--green); border-color: var(--green-dim); }

/* === REGISTER: confirmation === */
.confirm-screen { text-align: center; }
.confirm-emblem {
  width: 100px; height: 100px;
  margin: 0 auto 1.5rem;
}
.confirm-stamp {
  font-family: 'Times New Pixel', 'Dogica Pixel', monospace;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  color: var(--green);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 30px rgba(206,241,123,0.3);
  animation: stampIn 0.6s ease;
}
@keyframes stampIn {
  0% { transform: scale(0.5); opacity: 0; }
  60% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); }
}
.confirm-info {
  background: var(--bg-card);
  border: 2px solid var(--border);
  padding: 1.5rem;
  margin: 2rem auto;
  max-width: 450px;
  text-align: left;
}
.confirm-info .row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}
.confirm-info .row:last-child { border-bottom: none; }
.confirm-info .label { font-family: 'VT323', monospace; font-size: 1.1rem; color: var(--fg-muted); }
.confirm-info .value { font-family: 'VT323', monospace; font-size: 1.1rem; color: var(--green); }

.confirm-next-steps {
  max-width: 500px;
  margin: 2rem auto;
  text-align: left;
}
.confirm-next-steps h3 {
  font-family: 'Times New Pixel', 'Dogica Pixel', monospace;
  font-size: 0.65rem;
  color: var(--green);
  margin-bottom: 1rem;
  text-align: center;
}
.confirm-next-steps li {
  list-style: none;
  padding: 0.5rem 0;
  font-family: 'VT323', monospace;
  font-size: 1.1rem;
  color: var(--fg-muted);
  display: flex;
  gap: 0.5rem;
}
.confirm-next-steps li::before { content: '>'; color: var(--green); font-family: 'Times New Pixel', 'Dogica Pixel', monospace; font-size: 0.6rem; margin-top: 0.2rem; }

/* === REGISTER: typewriter effect === */
.typewriter {
  font-family: 'VT323', monospace;
  font-size: 1.2rem;
  color: var(--green);
  text-align: center;
  margin-bottom: 1.5rem;
  min-height: 1.5rem;
}

/* === MISC === */
.info-box {
  background: var(--bg-3);
  border-left: 3px solid var(--green-dim);
  padding: 1rem 1.2rem;
  margin-bottom: 1.5rem;
  font-family: 'VT323', monospace;
  font-size: 1.1rem;
  color: var(--fg-muted);
}
.info-box strong { color: var(--green); }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  nav ul { display: none; }
  .hero-meta { gap: 1rem; }
  .timeline-item { flex-direction: column; gap: 0.3rem; }
  .timeline-time { min-width: auto; }
  .continue-prompt .desktop { display: none; }
  .continue-prompt .mobile { display: inline; }
}

@media (max-width: 600px) {
  .activity-grid { grid-template-columns: repeat(2, 1fr); }
  body.register .container { padding: 0 1rem; }
  .form-row { flex-direction: column; gap: 0; }
  .path-header { flex-direction: column; text-align: center; }
  .btn-row { flex-direction: column; }
  .step-btn { width: 100%; }
}
