/* ==========================================================
   CONNECT KINGSTON — PROTOTYPE 2: 80S ARCADE & GRAPHIC NOVEL
   Linear Parallax & Full-Screen Takeover Edition
   ========================================================== */

:root {
  --arcade-bg: #080c16;
  --arcade-surface: #0f1626;
  --arcade-surface-card: #141e33;
  --arcade-border: #1e2d48;
  
  --neon-cyan: #00f0ff;
  --neon-cyan-dark: #0099aa;
  --neon-orange: #ff6600;
  --neon-orange-glow: #ff8533;
  --royal-blue: #387df5;
  --royal-blue-glow: 0 0 12px rgba(56, 125, 245, 0.55);
  --neon-yellow: #387df5;
  --neon-green: #00ff66;
  
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --font-arcade: 'Press Start 2P', monospace;
  --font-header: 'Bungee', cursive, sans-serif;
  --font-body: 'Chakra Petch', sans-serif, system-ui;

  --glow-cyan: 0 0 15px rgba(0, 240, 255, 0.4);
  --glow-orange: 0 0 15px rgba(255, 102, 0, 0.5);
  --box-neon-cyan: 4px 4px 0px var(--neon-cyan);
  --box-neon-orange: 4px 4px 0px var(--neon-orange);
}

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

html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
  font-size: 16px;
  background-color: var(--arcade-bg);
}

body.arcade-body {
  background-color: var(--arcade-bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
  background-image: 
    linear-gradient(rgba(0, 240, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* ----------------------------------------------------------
   SCROLL-TRIGGERED INTEGRATED HEADER
   ---------------------------------------------------------- */
.arcade-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(8, 12, 22, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--neon-cyan);
  box-shadow: 0 4px 20px rgba(0, 240, 255, 0.25);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.arcade-header.header-hidden {
  transform: translateY(-105%);
  opacity: 0;
  pointer-events: none;
}

.arcade-header.header-revealed {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.header-main {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.arcade-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.brand-logo-holder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.header-logo {
  height: 42px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.4));
  transition: transform 0.2s ease;
}

.arcade-brand:hover .header-logo {
  transform: scale(1.05);
}

.brand-titles {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-header);
  font-size: 1.35rem;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1;
  text-shadow: 0 0 8px var(--neon-cyan);
}

.brand-sub {
  font-family: var(--font-arcade);
  font-size: 0.55rem;
  color: var(--neon-orange);
  letter-spacing: 0.5px;
}

.arcade-nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.arcade-nav-links .nav-item {
  font-family: var(--font-arcade);
  font-size: 0.7rem;
  color: #cbd5e1;
  text-decoration: none;
  padding: 0.35rem 0.5rem;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

.arcade-nav-links .nav-item:hover,
.arcade-nav-links .nav-item.active {
  color: var(--neon-cyan);
  border-bottom-color: var(--neon-cyan);
  text-shadow: 0 0 8px var(--neon-cyan);
}

.arcade-menu-toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--neon-cyan);
  padding: 0.4rem;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.arcade-menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--neon-cyan);
}

/* ----------------------------------------------------------
   LINEAR SNAP CONTAINER & SECTIONS
   ---------------------------------------------------------- */
.snap-container {
  width: 100%;
}

.snap-section {
  min-height: 100dvh;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 1.5rem 1.25rem;
}

.section-inner {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
  position: relative;
  z-index: 2;
}

.section-badge-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px dashed var(--arcade-border);
  padding-bottom: 0.4rem;
}

.badge-label {
  font-family: var(--font-arcade);
  font-size: 0.7rem;
  color: var(--neon-cyan);
  letter-spacing: 1px;
}

.badge-sub {
  font-family: var(--font-arcade);
  font-size: 0.65rem;
  color: var(--royal-blue);
  text-shadow: 0 0 8px rgba(56, 125, 245, 0.4);
}

.former-mini-tag {
  font-family: var(--font-arcade);
  font-size: 0.6rem;
  color: var(--neon-orange);
}

/* ----------------------------------------------------------
   REUSABLE ARCADE CARDS & BUTTONS
   ---------------------------------------------------------- */
.arcade-card {
  background: var(--arcade-surface-card);
  border: 2px solid var(--arcade-border);
  position: relative;
  overflow: hidden;
  box-shadow: 5px 5px 0px #000;
}

.card-glow-edge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-orange));
}

.arcade-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-arcade);
  font-size: 0.8rem;
  padding: 0.75rem 1.3rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid #000;
  box-shadow: 4px 4px 0px #000;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  text-transform: uppercase;
}

.arcade-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px #000;
}

.arcade-btn:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px #000;
}

.btn-cyan {
  background: var(--neon-cyan);
  color: #000;
  font-weight: bold;
}

.btn-orange {
  background: var(--neon-orange);
  color: #fff;
  font-weight: bold;
}

.btn-yellow,
.btn-royal-blue {
  background: var(--royal-blue);
  color: #fff;
  font-weight: bold;
  border-color: var(--royal-blue);
}

.btn-sm {
  font-size: 0.7rem;
  padding: 0.45rem 0.85rem;
}

/* ----------------------------------------------------------
   SECTION 1: FULL-SCREEN TAKEOVER HERO (100dvh)
   ---------------------------------------------------------- */
.hero-takeover {
  height: 100dvh;
  min-height: 100dvh;
  padding: 1rem;
  background: radial-gradient(circle at center, #101c36 0%, var(--arcade-bg) 80%);
}

.parallax-grid {
  position: absolute;
  width: 200%;
  height: 200%;
  background-image: 
    linear-gradient(rgba(0, 240, 255, 0.12) 2px, transparent 2px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.12) 2px, transparent 2px);
  background-size: 44px 44px;
  transform: perspective(350px) rotateX(62deg) translateY(-20%);
  pointer-events: none;
  will-change: transform;
}

.parallax-glow {
  position: absolute;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(255, 102, 0, 0.28) 0%, rgba(0, 240, 255, 0.18) 50%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  will-change: transform;
}

.parallax-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0px,
    rgba(0, 0, 0, 0) 2px,
    rgba(0, 0, 0, 0.2) 3px,
    rgba(0, 0, 0, 0.2) 4px
  );
  pointer-events: none;
}

.hero-takeover-content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  will-change: transform;
}

.hero-tag-strip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-arcade);
  font-size: 0.75rem;
  color: var(--royal-blue);
  text-shadow: 0 0 8px rgba(56, 125, 245, 0.45);
  background: rgba(0, 0, 0, 0.6);
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--arcade-border);
}

.pulse-star {
  color: var(--neon-cyan);
  animation: starBlink 1.5s infinite;
}

@keyframes starBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.85); }
}

.hero-city-tag {
  color: var(--neon-cyan);
}

/* Hero Brand Unit: "Bring Community Together" Sized to Just Span the Logo Above It */
.hero-brand-marquee {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  text-align: center;
}

.hero-logo-frame {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0.25rem auto 0.45rem auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.takeover-logo {
  width: 100%;
  max-width: 440px;
  height: auto;
  border: 3px solid var(--neon-orange);
  box-shadow: 0 0 25px rgba(255, 102, 0, 0.45);
  background: #fff;
  display: block;
  margin: 0 auto;
}

.floating-badge {
  position: absolute;
  font-family: var(--font-arcade);
  font-size: 0.65rem;
  padding: 0.3rem 0.6rem;
  box-shadow: 2px 2px 0px #000;
  z-index: 6;
}

.badge-top-right {
  top: -12px;
  right: -15px;
  background: var(--neon-cyan);
  color: #000;
}

.badge-bottom-left {
  bottom: -10px;
  left: -15px;
  background: var(--neon-orange);
  color: #fff;
}

.hero-takeover-title {
  font-family: var(--font-header);
  font-size: 1.45rem;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1.1;
  text-shadow: 0 0 14px var(--neon-cyan), 3px 3px 0px var(--neon-orange);
  white-space: nowrap;
  text-align: center;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  display: block;
  box-sizing: border-box;
}

.former-name-badge {
  font-family: var(--font-arcade);
  font-size: 0.75rem;
  color: var(--neon-orange-glow);
  background: rgba(17, 24, 39, 0.85);
  border: 1px dashed var(--neon-orange);
  padding: 0.3rem 0.8rem;
}

.hero-takeover-tagline {
  font-size: 1.1rem;
  color: #cbd5e1;
  font-weight: 600;
  max-width: 620px;
  line-height: 1.4;
}

.hero-action-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 0.4rem;
}

.pulse-btn {
  animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
  0% { box-shadow: 0 0 10px var(--neon-orange), 4px 4px 0 #000; }
  50% { box-shadow: 0 0 25px var(--neon-orange-glow), 4px 4px 0 #000; }
  100% { box-shadow: 0 0 10px var(--neon-orange), 4px 4px 0 #000; }
}

.scroll-down-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
  margin-top: 0.8rem;
  color: var(--neon-cyan);
  transition: transform 0.2s;
}

.scroll-down-indicator:hover,
.scroll-down-indicator:focus-visible {
  transform: translateY(3px);
  color: var(--neon-orange);
  text-shadow: 0 0 10px rgba(255, 102, 0, 0.6);
  outline: none;
}

.indicator-text {
  font-family: var(--font-arcade);
  font-size: 0.65rem;
  letter-spacing: 1px;
}

.indicator-arrow {
  font-size: 1rem;
  animation: bounceArrow 1.5s infinite;
}

@keyframes bounceArrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

.section-jump-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.2rem 0;
  position: relative;
  z-index: 5;
}

.section-jump-wrap .scroll-down-indicator {
  margin-top: 0;
  cursor: pointer;
  padding: 0.35rem 0.85rem;
  border-radius: 4px;
}

.indicator-arrow-up {
  display: inline-block;
  animation: bounceArrowUp 1.5s infinite;
  margin-right: 0.35rem;
}

@keyframes bounceArrowUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* ----------------------------------------------------------
   SECTION 2: MISSION & CORE DIRECTIVE (100dvh)
   ---------------------------------------------------------- */
.mission-section {
  background: radial-gradient(circle at 80% 30%, #111a2f 0%, var(--arcade-bg) 70%);
}

.mission-dialog-box {
  padding: 1.8rem 2rem;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.2), 6px 6px 0 #000;
}

.dialog-speaker-tag {
  font-family: var(--font-arcade);
  font-size: 0.75rem;
  color: var(--neon-orange);
  text-shadow: 0 0 10px rgba(255, 102, 0, 0.4);
  margin-bottom: 0.6rem;
}

.pillar-svg-icon,
.level-svg-icon,
.powerup-svg-icon,
.ch-svg-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
}

.icon-cyan {
  color: var(--neon-cyan);
  filter: drop-shadow(0 0 6px rgba(0, 240, 255, 0.5));
}

.icon-orange {
  color: var(--neon-orange);
  filter: drop-shadow(0 0 6px rgba(255, 102, 0, 0.5));
}

.official-mission-quote {
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
}

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

.pillar-compact-card {
  padding: 1.2rem 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.pillar-icon {
  font-size: 2.2rem;
  line-height: 1;
}

.pillar-body h3 {
  font-family: var(--font-arcade);
  font-size: 0.7rem;
  color: var(--neon-cyan);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.pillar-body p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.35;
}

.mission-footer-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: rgba(15, 22, 38, 0.85);
  border: 1px solid var(--arcade-border);
  padding: 0.8rem 1.5rem;
  font-size: 0.95rem;
}

.stat-highlight {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.cyan-text { color: var(--neon-cyan); }
.orange-text { color: var(--neon-orange); }

.stat-divider {
  color: var(--arcade-border);
}

/* ----------------------------------------------------------
   SECTION 3: VISION SCREEN (CAROUSEL) (100dvh)
   ---------------------------------------------------------- */
.cabinet-section {
  background: radial-gradient(circle at 20% 70%, #151d33 0%, var(--arcade-bg) 70%);
}

.cabinet-inner {
  max-width: 1240px;
  width: 100%;
}

.arcade-cabinet-frame {
  background: #090e1b;
  border: 3px solid var(--neon-cyan);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.25), 6px 6px 0 #000;
  padding: 0.75rem;
  width: 100%;
}

.cabinet-marquee-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-arcade);
  font-size: 0.7rem;
  color: var(--royal-blue);
  text-shadow: 0 0 8px rgba(56, 125, 245, 0.4);
  padding: 0.3rem 0.5rem 0.6rem 0.5rem;
  border-bottom: 2px solid var(--arcade-border);
  margin-bottom: 0.6rem;
}

.live-pulse {
  color: var(--neon-green);
  animation: pulseDot 1.5s infinite;
}

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

/* 3-UP MULTI-CARD CAROUSEL */
.multi-carousel-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #050811;
  border: 2px solid var(--neon-orange);
  box-shadow: 0 0 20px rgba(255, 102, 0, 0.2);
  padding: 0.85rem;
}

.multi-carousel-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.45s cubic-bezier(0.2, 0.9, 0.3, 1);
  will-change: transform;
  width: 100%;
}

.multi-carousel-card {
  flex: 0 0 calc((100% - 2.5rem) / 3);
  background: #0f172a;
  border: 2px solid var(--arcade-border);
  box-shadow: 4px 4px 0px #000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.multi-carousel-card:hover {
  border-color: var(--neon-cyan);
  transform: translateY(-4px);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.3), 4px 4px 0 #000;
}

.card-img-holder {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #000;
  overflow: hidden;
}

.card-img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.multi-carousel-card:hover .card-img-holder img {
  transform: scale(1.04);
}

.card-hud-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  font-family: var(--font-arcade);
  font-size: 0.6rem;
  padding: 0.2rem 0.5rem;
  box-shadow: 2px 2px 0 #000;
  letter-spacing: 0.5px;
}

.card-hud-badge.orange { background: var(--neon-orange); color: #fff; }
.card-hud-badge.cyan { background: var(--neon-cyan); color: #000; }

.card-hud-info {
  padding: 0.85rem;
  background: #111a2f;
  border-top: 1px solid var(--arcade-border);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex-grow: 1;
}

.card-hud-info h4 {
  font-family: var(--font-header);
  font-size: 1.1rem;
  color: #fff;
  line-height: 1.2;
}

.card-hud-info p {
  font-size: 0.82rem;
  color: #cbd5e1;
  line-height: 1.35;
}

.screen-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0px,
    rgba(0, 0, 0, 0) 2px,
    rgba(0, 0, 0, 0.15) 3px,
    rgba(0, 0, 0, 0.15) 4px
  );
  pointer-events: none;
  z-index: 4;
}

.cabinet-controls-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.75rem;
  padding: 0.25rem;
}

.arcade-ctrl-btn {
  font-family: var(--font-arcade);
  font-size: 0.75rem;
  background: #111a2e;
  color: var(--neon-cyan);
  border: 2px solid var(--neon-cyan);
  padding: 0.5rem 1rem;
  cursor: pointer;
  box-shadow: 3px 3px 0 #000;
  transition: all 0.2s;
}

.arcade-ctrl-btn:hover {
  background: var(--neon-cyan);
  color: #000;
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.4), 3px 3px 0 #000;
}

.cabinet-dot-nav {
  display: flex;
  gap: 0.6rem;
}

.screen-dot {
  width: 12px;
  height: 12px;
  background: #334155;
  border: 1px solid var(--neon-cyan);
  cursor: pointer;
  transition: all 0.2s;
}

.screen-dot.active {
  background: var(--neon-orange);
  border-color: var(--neon-orange);
  box-shadow: 0 0 8px var(--neon-orange);
  transform: scale(1.25);
}

.cabinet-meta-strip {
  display: flex;
  justify-content: space-between;
  border-top: 1px dashed var(--arcade-border);
  margin-top: 0.6rem;
  padding-top: 0.5rem;
  font-family: var(--font-arcade);
  font-size: 0.65rem;
  color: var(--text-muted);
}

.arcade-text-btn {
  background: transparent;
  border: none;
  font-family: var(--font-arcade);
  font-size: 0.65rem;
  color: var(--neon-cyan);
  cursor: pointer;
}

.arcade-text-btn:hover {
  color: var(--neon-orange);
}

/* ----------------------------------------------------------
   SECTION 4: PROJECTS (LEVEL SELECT) (100dvh)
   ---------------------------------------------------------- */
.levels-section {
  background: radial-gradient(circle at 50% 50%, #12182b 0%, var(--arcade-bg) 80%);
}

.levels-compact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.level-box {
  padding: 1.2rem 1rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, border-color 0.2s;
}

.level-box:hover {
  transform: translateY(-4px);
  border-color: var(--neon-cyan);
}

.level-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}

.level-tag {
  font-family: var(--font-arcade);
  font-size: 0.65rem;
  color: var(--text-muted);
}

.level-status-tag {
  font-family: var(--font-arcade);
  font-size: 0.55rem;
  padding: 0.2rem 0.4rem;
  border: 1px solid;
}

.level-status-tag.green { color: var(--neon-green); border-color: var(--neon-green); background: rgba(0,255,102,0.15); }
.level-status-tag.cyan { color: var(--neon-cyan); border-color: var(--neon-cyan); background: rgba(0,240,255,0.15); }
.level-status-tag.orange { color: var(--neon-orange); border-color: var(--neon-orange); background: rgba(255,102,0,0.15); }

.level-icon {
  font-size: 2.2rem;
  margin-bottom: 0.4rem;
}

.level-box h3 {
  font-family: var(--font-header);
  font-size: 1.25rem;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.level-box p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.3;
  margin-bottom: 0.8rem;
  flex-grow: 1;
}

.level-features {
  list-style: none;
  font-size: 0.8rem;
  color: #cbd5e1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-weight: 600;
}

.boss-level-box {
  border-color: var(--neon-orange);
  background: #171529;
}

.level-note-bar {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
  background: rgba(17, 24, 39, 0.7);
  border: 1px dashed var(--arcade-border);
  padding: 0.6rem;
}

.cyan-link {
  color: var(--neon-cyan);
  text-decoration: underline;
  font-weight: bold;
}

.stage-notice-bar {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
  background: rgba(11, 17, 32, 0.85);
  border-left: 3px solid var(--neon-cyan);
  border-right: 3px solid var(--neon-cyan);
  border-top: 1px dashed var(--arcade-border);
  border-bottom: 1px dashed var(--arcade-border);
  padding: 0.6rem 1rem;
  line-height: 1.4;
  margin-top: 0.5rem;
}

.stage-notice-bar strong {
  color: var(--royal-blue);
  font-family: var(--font-arcade);
  font-size: 0.65rem;
  letter-spacing: 0.5px;
  margin-right: 0.35rem;
  text-shadow: 0 0 6px rgba(56, 125, 245, 0.4);
}

/* ----------------------------------------------------------
   SECTION 5: SUPPORT US (POWER-UPS) (100dvh)
   ---------------------------------------------------------- */
.powerups-section {
  background: radial-gradient(circle at 10% 30%, #151b2e 0%, var(--arcade-bg) 75%);
}

.powerups-compact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.powerup-box {
  padding: 1rem 0.85rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: var(--arcade-surface-card);
  transition: transform 0.2s, border-color 0.2s;
}

.powerup-box:hover {
  transform: translateY(-3px);
  border-color: var(--neon-cyan);
}

.powerup-svg-icon {
  margin-bottom: 0.35rem;
}

.powerup-box h3 {
  font-family: var(--font-header);
  font-size: 1.08rem;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 0.35rem;
}

.powerup-box p {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.3;
  margin-bottom: 0.75rem;
  flex-grow: 1;
}

.powerup-box .arcade-btn {
  width: 100%;
  padding: 0.4rem 0.5rem;
  font-size: 0.65rem;
  text-align: center;
  justify-content: center;
}

.powerup-expand-pill {
  display: none;
}

/* Stage 04 Support Hub (Below 4 Cards) */
.stage-support-hub {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.25rem;
}

.support-methods-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.support-method-card {
  padding: 0.85rem 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--arcade-surface-card);
  border: 1px solid var(--arcade-border);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}

.support-method-card:hover {
  transform: translateY(-2px);
}

.wishlist-card {
  border-color: rgba(255, 102, 0, 0.45);
  background: linear-gradient(135deg, rgba(14, 23, 42, 0.95), rgba(255, 102, 0, 0.08));
}

.wishlist-card:hover {
  border-color: var(--neon-orange);
}

.zelle-card {
  border-color: rgba(0, 240, 255, 0.45);
  background: linear-gradient(135deg, rgba(14, 23, 42, 0.95), rgba(116, 20, 202, 0.12));
}

.zelle-card:hover {
  border-color: var(--neon-cyan);
}

.method-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.35rem;
}

.support-method-tag {
  font-family: var(--font-arcade);
  font-size: 0.55rem;
  letter-spacing: 0.5px;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
}

.support-method-tag.orange {
  color: var(--neon-orange);
  background: rgba(255, 102, 0, 0.15);
  border: 1px solid var(--neon-orange);
}

.support-method-tag.cyan {
  color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.15);
  border: 1px solid var(--neon-cyan);
}

.zelle-brand-tag {
  font-family: var(--font-arcade);
  font-size: 0.52rem;
  color: #c084fc;
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.4);
  padding: 0.15rem 0.35rem;
  border-radius: 4px;
}

.method-title {
  font-family: var(--font-header);
  font-size: 1.05rem;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 0.25rem;
}

.method-desc {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.3;
  margin-bottom: 0.65rem;
  flex-grow: 1;
}

.method-desc strong {
  color: var(--neon-cyan);
}

.method-card-action .arcade-btn {
  width: 100%;
  padding: 0.4rem 0.6rem;
  font-size: 0.65rem;
  justify-content: center;
  text-align: center;
}

/* Zelle card split with QR thumbnail */
.zelle-split-wrap {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  height: 100%;
}

.zelle-qr-thumb {
  flex-shrink: 0;
  background: #ffffff;
  padding: 4px;
  border-radius: 6px;
  border: 2px solid var(--neon-cyan);
  box-shadow: 0 0 8px rgba(0, 240, 255, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  width: 72px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.zelle-qr-thumb:hover {
  transform: scale(1.05);
  box-shadow: 0 0 14px rgba(0, 240, 255, 0.6);
}

.zelle-qr-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 3px;
}

.zelle-qr-caption {
  display: block;
  font-family: var(--font-arcade);
  font-size: 0.44rem;
  color: #7414ca;
  letter-spacing: 0.5px;
  margin-top: 2px;
  text-align: center;
  font-weight: 700;
}

.zelle-info-pane {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.terminal-quote-strip {
  background: #090e1c;
  border: 2px solid var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2), 4px 4px 0 #000;
  padding: 1rem 1.5rem;
  text-align: center;
}

.terminal-quote-strip p {
  font-size: 1.15rem;
  font-style: italic;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.terminal-quote-strip cite {
  font-family: var(--font-arcade);
  font-size: 0.65rem;
  color: var(--neon-orange);
  font-style: normal;
}

/* ----------------------------------------------------------
   SECTION 6: THE TEAM (CO-OP ROSTER) (100dvh)
   ---------------------------------------------------------- */
.team-section {
  background: radial-gradient(circle at 75% 40%, #151c30 0%, var(--arcade-bg) 80%);
  min-height: 100dvh;
  height: auto;
  padding-top: 4.5rem;
  padding-bottom: 2.5rem;
}

.team-compact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.team-card {
  padding: 1.1rem 1rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, border-color 0.2s;
  background: var(--arcade-surface-card);
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: var(--neon-cyan);
}

.team-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}

.team-tag {
  font-family: var(--font-arcade);
  font-size: 0.65rem;
  color: var(--text-muted);
}

.team-status-tag {
  font-family: var(--font-arcade);
  font-size: 0.55rem;
  padding: 0.2rem 0.4rem;
  border: 1px solid;
}

.team-status-tag.cyan {
  color: var(--neon-cyan);
  border-color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.15);
}

.team-status-tag.orange {
  color: var(--neon-orange);
  border-color: var(--neon-orange);
  background: rgba(255, 102, 0, 0.15);
}

.team-profile-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0.25rem 0 0.75rem 0;
}

.team-avatar-holder {
  width: 76px;
  height: 76px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
  background: #090e1a;
  border: 2px solid var(--neon-cyan);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-avatar-holder.orange {
  border-color: var(--neon-orange);
  box-shadow: 0 0 10px rgba(255, 102, 0, 0.3);
}

.team-avatar-holder.cyan {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.team-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.team-card:hover .team-avatar-img {
  transform: scale(1.08);
}

.team-avatar-img.avatar-zoomed-out {
  transform: scale(0.88);
  object-position: center 3%;
}

.team-card:hover .team-avatar-img.avatar-zoomed-out {
  transform: scale(0.96);
}

.team-avatar-svg {
  width: 38px;
  height: 38px;
  display: block;
}

.team-profile-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.team-member-name {
  font-family: var(--font-header);
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.team-member-role {
  font-family: var(--font-arcade);
  font-size: 0.62rem;
  color: var(--neon-orange);
  line-height: 1.3;
}

.team-bio {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.35;
  margin-bottom: 0.8rem;
  flex-grow: 1;
}

.team-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
}

.team-tag-pill {
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--arcade-border);
  padding: 0.15rem 0.45rem;
  color: #94a3b8;
}

.team-contact-btn {
  width: 100%;
  text-align: center;
  justify-content: center;
  padding: 0.45rem 0.6rem;
  font-size: 0.65rem;
}

.volunteer-squad-card {
  background: linear-gradient(135deg, rgba(20, 30, 51, 0.95), rgba(255, 102, 0, 0.08));
  border-color: rgba(255, 102, 0, 0.4);
}

.team-note-bar {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
  background: rgba(17, 24, 39, 0.7);
  border: 1px dashed var(--arcade-border);
  padding: 0.6rem;
}

/* ----------------------------------------------------------
   SECTION 7: COMMS DISPATCH & FOOTER (100dvh)
   ---------------------------------------------------------- */
.comms-section {
  background: radial-gradient(circle at 90% 80%, #111a30 0%, var(--arcade-bg) 80%);
}

.comms-inner {
  gap: 1rem;
}

.comms-compact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 1.5rem;
  align-items: stretch;
}

.panel-tag {
  font-family: var(--font-arcade);
  font-size: 0.65rem;
  color: var(--neon-orange);
  border-bottom: 1px solid var(--arcade-border);
  padding-bottom: 0.35rem;
  margin-bottom: 0.8rem;
}

.comms-officer-panel,
.comms-form-panel {
  padding: 1.5rem;
}

.officer-title {
  font-family: var(--font-header);
  font-size: 1.7rem;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.5px;
}

.officer-role {
  font-size: 0.85rem;
  color: var(--neon-cyan);
  margin-bottom: 1rem;
}

.channels-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.channel-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: inherit;
  background: #0b1120;
  border: 1px solid var(--arcade-border);
  padding: 0.6rem 0.9rem;
  transition: all 0.2s;
}

.channel-row:not(.static):hover {
  border-color: var(--neon-cyan);
  transform: translateX(3px);
}

.ch-icon {
  font-size: 1.3rem;
}

.channel-row small {
  display: block;
  font-family: var(--font-arcade);
  font-size: 0.55rem;
  color: var(--text-muted);
}

.channel-row strong {
  font-size: 0.95rem;
  color: #fff;
}

.former-name-note {
  background: #0a0f1d;
  border-left: 3px solid var(--neon-cyan);
  padding: 0.6rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.compact-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-dual-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.form-field label {
  font-family: var(--font-arcade);
  font-size: 0.65rem;
  color: var(--text-secondary);
}

.form-field .req {
  color: var(--neon-orange);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #fff;
  background: #090e1a;
  border: 1px solid var(--arcade-border);
  padding: 0.6rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 8px rgba(0, 240, 255, 0.3);
}

.send-btn {
  align-self: flex-start;
  margin-top: 0.2rem;
}

.form-feedback-hud {
  font-family: var(--font-arcade);
  font-size: 0.7rem;
  padding: 0.8rem;
  border: 2px solid;
  line-height: 1.4;
}

.form-feedback-hud.success {
  border-color: var(--neon-green);
  background: rgba(0, 255, 102, 0.1);
  color: var(--neon-green);
}

.form-feedback-hud.error {
  border-color: #ff3344;
  background: rgba(255, 51, 68, 0.1);
  color: #ff3344;
}

/* Compact Integrated Footer */
.compact-footer {
  border-top: 1px solid var(--arcade-border);
  padding-top: 0.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-sep {
  color: var(--arcade-border);
}

.footer-archive-link {
  color: var(--royal-blue);
  text-decoration: none;
  font-size: 0.72rem;
  font-family: var(--font-arcade);
  letter-spacing: 0.5px;
  transition: color 0.2s, text-shadow 0.2s;
}

.footer-archive-link:hover {
  color: var(--neon-cyan);
  text-shadow: 0 0 8px rgba(0, 240, 255, 0.6);
  text-decoration: underline;
}

.return-top-btn {
  font-family: var(--font-arcade);
  font-size: 0.65rem;
  color: var(--neon-cyan);
  text-decoration: none;
}

.return-top-btn:hover {
  color: var(--neon-orange);
}

/* ----------------------------------------------------------
   RESPONSIVE MEDIA QUERIES & MOBILE SIMPLIFICATION
   ---------------------------------------------------------- */
@media (max-width: 1024px) {
  .pillars-compact-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .levels-compact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-compact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .comms-compact-grid {
    grid-template-columns: 1fr;
  }

  .hero-brand-marquee {
    max-width: 380px;
    margin: 0 auto;
  }

  .hero-logo-frame {
    max-width: 380px;
    margin: 0.25rem auto 0.45rem auto;
  }

  .takeover-logo {
    max-width: 380px;
    margin: 0 auto;
  }

  .hero-takeover-title {
    font-size: 1.25rem;
    letter-spacing: 0.6px;
    max-width: 380px;
    margin: 0 auto;
    text-align: center;
  }

  .multi-carousel-card {
    flex: 0 0 calc((100% - 1.25rem) / 2);
  }
}

@media (max-width: 768px) {
  /* 1. Proximity Section Snapping (Snaps smoothly into place when getting close) */
  html {
    scroll-snap-type: y proximity;
    scroll-padding-top: 55px;
  }

  .snap-container {
    overflow-x: hidden;
  }

  .snap-section {
    min-height: auto;
    height: auto;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
    padding: 4rem 1rem 2.25rem 1rem;
    justify-content: flex-start;
  }

  .section-inner {
    gap: 1rem;
  }

  /* Soften harsh card shadows to reduce visual heaviness/clutter on phone */
  .arcade-card {
    box-shadow: 3px 3px 0px #000;
    border-width: 1.5px;
  }

  .section-badge-bar {
    padding-bottom: 0.35rem;
  }

  .badge-label {
    font-size: 0.65rem;
  }

  .badge-sub {
    font-size: 0.6rem;
  }

  /* 2. Streamlined Header */
  .arcade-header {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .header-main {
    padding: 0.45rem 1rem;
  }

  .header-logo {
    height: 36px;
  }

  .brand-name {
    font-size: 1.15rem;
    letter-spacing: 0.5px;
  }

  .brand-sub {
    font-size: 0.5rem;
    letter-spacing: 0.25px;
  }

  .arcade-menu-toggle {
    display: flex;
    padding: 0.5rem;
    min-width: 42px;
    min-height: 42px;
    justify-content: center;
    align-items: center;
    border-color: var(--neon-cyan);
    background: rgba(0, 240, 255, 0.08);
  }

  .arcade-nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(8, 12, 22, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 2px solid var(--neon-cyan);
    flex-direction: column;
    padding: 1.25rem 1.5rem;
    gap: 0.9rem;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.9);
  }

  .arcade-nav-links.show {
    display: flex;
  }

  .arcade-nav-links .nav-item {
    font-size: 0.8rem;
    padding: 0.5rem 0.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  /* 3. Hero Section Takeover on Mobile */
  .hero-takeover {
    min-height: 100svh;
    min-height: 100dvh;
    height: auto;
    padding: 0.85rem 1rem 1.5rem 1rem;
    justify-content: flex-start;
    align-items: center;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
  }

  .hero-takeover-content {
    margin-top: 0.75rem;
    gap: 0.65rem;
    width: 100%;
  }

  .hero-tag-strip {
    font-size: clamp(0.48rem, 2.7vw, 0.62rem);
    padding: 0.28rem 0.55rem;
    letter-spacing: 0.2px;
    gap: 0.35rem;
    max-width: 98%;
    margin: 0 auto;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
  }

  .hero-city-tag {
    color: var(--neon-cyan);
    white-space: nowrap;
  }

  .hero-brand-marquee {
    width: 100%;
    max-width: 290px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .hero-logo-frame {
    margin: 0.15rem auto 0.35rem auto;
    width: 100%;
    max-width: 290px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .takeover-logo {
    width: 100%;
    max-width: 290px;
    height: auto;
    border-width: 2px;
    box-shadow: 0 0 18px rgba(255, 102, 0, 0.4);
    display: block;
    margin: 0 auto;
  }

  .hero-takeover-title {
    font-size: 0.94rem;
    letter-spacing: 0.3px;
    line-height: 1.2;
    text-shadow: 0 0 10px var(--neon-cyan), 2px 2px 0px var(--neon-orange);
    white-space: nowrap;
    text-align: center;
    width: 100%;
    max-width: 290px;
    margin: 0 auto;
    display: block;
    box-sizing: border-box;
  }

  .hero-action-buttons {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 290px;
    gap: 0.65rem;
    margin-top: 0.35rem;
  }

  .hero-action-buttons .arcade-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.78rem;
    box-shadow: 3px 3px 0 #000;
  }

  .scroll-down-indicator {
    margin-top: 0.5rem;
  }

  .indicator-text {
    font-size: 0.58rem;
  }

  .section-jump-wrap {
    margin-top: 0.4rem;
    padding-bottom: 0.15rem;
  }

  /* 4. Stage 01: Mission Dialogue & Horizontal Pillars */
  .mission-dialog-box {
    padding: 1.15rem 1rem;
    box-shadow: 0 0 14px rgba(0, 240, 255, 0.15), 3px 3px 0 #000;
  }

  .dialog-speaker-tag {
    font-size: 0.65rem;
    margin-bottom: 0.4rem;
  }

  .official-mission-quote {
    font-size: 1.15rem;
    line-height: 1.35;
  }

  .pillars-compact-grid {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
  }

  .pillar-compact-card {
    padding: 0.85rem 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
  }

  .pillar-svg-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 102, 0, 0.1);
    border: 1.5px solid var(--neon-orange);
    border-radius: 6px;
    box-shadow: 0 0 8px rgba(255, 102, 0, 0.25);
    flex-shrink: 0;
  }

  .pillar-svg-icon svg {
    width: 24px;
    height: 24px;
  }

  .pillar-body {
    flex: 1;
    min-width: 0;
  }

  .pillar-body h3 {
    font-size: 0.68rem;
    margin-bottom: 0.2rem;
  }

  .pillar-body p {
    font-size: 0.82rem;
    line-height: 1.3;
  }

  /* 5. Stage 02: Projects (Level Select) 2x2 Grid */
  .levels-compact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }

  .level-box {
    padding: 0.85rem 0.75rem;
    display: flex;
    flex-direction: column;
  }

  .level-top {
    margin-bottom: 0.4rem;
  }

  .level-tag {
    font-size: 0.58rem;
  }

  .level-status-tag {
    font-size: 0.5rem;
    padding: 0.15rem 0.35rem;
  }

  .level-svg-icon {
    margin-bottom: 0.35rem;
  }

  .level-svg-icon svg {
    width: 28px;
    height: 28px;
  }

  .level-box h3 {
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
  }

  .level-box p {
    font-size: 0.78rem;
    line-height: 1.25;
    margin-bottom: 0.5rem;
  }

  .level-features {
    font-size: 0.72rem;
    gap: 0.2rem;
  }

  .level-note-bar {
    font-size: 0.8rem;
    padding: 0.55rem 0.75rem;
    line-height: 1.35;
  }

  /* 6. Stage 03: Vision Screen (Single-Layer Sleek Frame) */
  .arcade-cabinet-frame {
    padding: 0.55rem;
    border-width: 2px;
    box-shadow: 0 0 16px rgba(0, 240, 255, 0.2), 3px 3px 0 #000;
  }

  .cabinet-marquee-bar {
    font-size: 0.6rem;
    padding: 0.2rem 0.3rem 0.45rem 0.3rem;
    margin-bottom: 0.45rem;
  }

  .multi-carousel-viewport {
    padding: 0.4rem;
    border-width: 1.5px;
  }

  .multi-carousel-card {
    flex: 0 0 100%;
    box-shadow: none;
    border-width: 1.5px;
  }

  .card-img-holder {
    aspect-ratio: 16 / 10;
  }

  .card-hud-badge {
    font-size: 0.52rem;
    padding: 0.18rem 0.45rem;
    top: 6px;
    right: 6px;
  }

  .card-hud-info {
    padding: 0.65rem 0.75rem;
    gap: 0.25rem;
  }

  .card-hud-info h4 {
    font-size: 1.05rem;
  }

  .card-hud-info p {
    font-size: 0.8rem;
    line-height: 1.3;
  }

  .cabinet-controls-bar {
    margin-top: 0.55rem;
    padding: 0.15rem 0;
  }

  .arcade-ctrl-btn {
    font-size: 0.68rem;
    padding: 0.45rem 0.85rem;
    min-height: 38px;
  }

  .screen-dot {
    width: 10px;
    height: 10px;
  }

  .cabinet-meta-strip {
    font-size: 0.58rem;
    margin-top: 0.45rem;
    padding-top: 0.4rem;
  }

  /* 7. Stage 04: Power-Ups (Support Us) 4 Cards in a Row with Interactive Tap-to-Expand */
  .powerups-compact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.45rem;
    align-items: start;
  }

  .powerup-box {
    padding: 0.65rem 0.35rem 0.45rem 0.35rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    cursor: pointer;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
  }

  .powerup-box:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-2px);
  }

  .powerup-box:active {
    transform: scale(0.97);
  }

  .powerup-box.is-expanded {
    border-color: var(--neon-cyan);
    background: rgba(14, 23, 45, 0.98);
    box-shadow: 0 0 14px rgba(0, 240, 255, 0.45), 2px 2px 0 #000;
    transform: translateY(-2px);
    z-index: 2;
  }

  .powerup-box:has(.icon-orange).is-expanded {
    border-color: var(--neon-orange);
    box-shadow: 0 0 14px rgba(255, 102, 0, 0.45), 2px 2px 0 #000;
  }

  .powerup-svg-icon {
    margin-bottom: 0.25rem;
  }

  .powerup-svg-icon svg {
    width: 22px;
    height: 22px;
  }

  .powerup-box h3 {
    font-size: 0.66rem;
    line-height: 1.15;
    margin-bottom: 0.2rem;
  }

  .powerup-box p {
    font-size: 0.6rem;
    line-height: 1.2;
    margin-bottom: 0.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
  }

  .powerup-box.is-expanded p {
    display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
    overflow: visible;
    font-size: 0.62rem;
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 0.35rem;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .powerup-expand-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding-top: 0.15rem;
  }

  .expand-indicator {
    font-family: var(--font-arcade);
    font-size: 0.48rem;
    color: var(--royal-blue);
    line-height: 1;
    transition: transform 0.25s ease, color 0.2s ease;
    opacity: 0.85;
  }

  .powerup-box.is-expanded .expand-indicator {
    transform: rotate(180deg);
    color: var(--neon-cyan);
    opacity: 1;
  }

  .powerup-box:has(.icon-orange).is-expanded .expand-indicator {
    color: var(--neon-orange);
  }

  .powerup-box .arcade-btn {
    width: 100%;
    padding: 0.3rem 0.25rem;
    font-size: 0.52rem;
    box-shadow: 1px 1px 0 #000;
  }

  /* Support Hub (Wishlist & Zelle) Below 4 Cards */
  .stage-support-hub {
    gap: 0.45rem;
    margin-top: 0.15rem;
  }

  .support-methods-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .support-method-card {
    padding: 0.65rem 0.75rem;
  }

  .method-title {
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
  }

  .method-desc {
    font-size: 0.72rem;
    line-height: 1.25;
    margin-bottom: 0.45rem;
  }

  .method-card-action .arcade-btn {
    padding: 0.35rem 0.5rem;
    font-size: 0.6rem;
  }

  .zelle-qr-thumb {
    width: 62px;
    padding: 3px;
  }

  .zelle-qr-caption {
    font-size: 0.4rem;
  }

  .stage-notice-bar {
    font-size: 0.76rem;
    padding: 0.5rem 0.75rem;
    line-height: 1.35;
    margin-top: 0.45rem;
  }

  .stage-notice-bar strong {
    font-size: 0.6rem;
  }

  /* 8. Stage 05: The Team (Arcade Character Select Roster 2x2/2-col) */
  .team-section {
    padding-top: 3.75rem;
    padding-bottom: 2.25rem;
  }

  .team-compact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }

  .team-card {
    padding: 0.75rem 0.7rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .team-top {
    margin-bottom: 0.35rem;
  }

  .team-tag {
    font-size: 0.55rem;
  }

  .team-status-tag {
    font-size: 0.48rem;
    padding: 0.15rem 0.3rem;
  }

  .team-profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.45rem;
    margin: 0.15rem 0 0.4rem 0;
  }

  .team-avatar-holder {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    border-width: 1.5px;
  }

  .team-avatar-svg {
    width: 30px;
    height: 30px;
  }

  .team-member-name {
    font-size: 0.98rem;
    line-height: 1.15;
    margin-bottom: 0.15rem;
  }

  .team-member-role {
    font-size: 0.58rem;
    line-height: 1.25;
  }

  .team-bio {
    font-size: 0.75rem;
    line-height: 1.25;
    text-align: center;
    margin-bottom: 0.35rem;
  }

  .team-note-bar {
    font-size: 0.8rem;
    padding: 0.55rem 0.75rem;
    line-height: 1.35;
  }

  /* 9. Stage 06: Comms Terminal & Touch Form */
  .comms-compact-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .comms-officer-panel,
  .comms-form-panel {
    padding: 1rem 0.9rem;
  }

  .officer-title {
    font-size: 1.4rem;
  }

  .officer-role {
    font-size: 0.8rem;
    margin-bottom: 0.85rem;
  }

  .channel-row {
    padding: 0.7rem 0.85rem;
    min-height: 48px;
  }

  .channel-row strong {
    font-size: 0.9rem;
  }

  .channel-row small {
    font-size: 0.52rem;
  }

  .form-dual-row {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    font-size: 16px; /* Prevents iOS Safari input auto-zoom */
    padding: 0.7rem 0.75rem;
    min-height: 44px;
    border-radius: 2px;
  }

  .send-btn {
    width: 100%;
    min-height: 46px;
    font-size: 0.78rem;
    box-shadow: 3px 3px 0 #000;
  }

  .compact-footer {
    flex-direction: column;
    gap: 0.45rem;
    text-align: center;
    padding-top: 0.75rem;
  }
}

/* Extra small mobile screens (under 370px) */
@media (max-width: 370px) {
  .hero-brand-marquee {
    max-width: 245px;
    margin: 0 auto;
  }

  .hero-logo-frame {
    max-width: 245px;
    margin: 0.15rem auto 0.35rem auto;
  }

  .takeover-logo {
    max-width: 245px;
    margin: 0 auto;
  }

  .hero-takeover-title {
    font-size: 0.8rem;
    letter-spacing: 0.2px;
    max-width: 245px;
    margin: 0 auto;
    text-align: center;
  }

  .levels-compact-grid,
  .team-compact-grid {
    grid-template-columns: 1fr;
  }

  .powerups-compact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-name {
    font-size: 1rem;
  }
}
