/* ==========================================================================
   Sir Nips A Lot ($NIPS) - Official Arc Network Theme
   Website: nipsarc.io / usdoge.space
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Luckiest+Guy&family=Comic+Neue:wght@400;700&family=VT323&display=swap');

:root {
  /* Newly Updated Sir Nips Fiery Orange & Arc Character Color Palette */
  --color-primary: #F15A24;
  /* Signature Hoodie Fiery Orange */
  --color-primary-dark: #D84315;
  /* Deep Terracotta Rust */
  --color-primary-light: #FF733A;
  /* Bright Flame Orange */
  --color-secondary: #ff7700;
  /* Guitar & Spray Electric Blue */
  --color-secondary-dark: #0088CC;
  /* Deep Electric Blue */
  --color-purple: #8E24AA;
  /* Rich Purple Accent */
  --color-gold: #F4D03F;
  /* Eye & Bowtie Warm Gold */
  --color-gold-glow: rgba(244, 208, 63, 0.4);
  --color-orange-glow: rgba(241, 90, 36, 0.45);
  --color-bg-dark: #0D0705;
  /* Deep Warm Dark Background */
  --color-bg-card: rgba(24, 13, 10, 0.94);
  /* Warm Card Background */
  --color-text-main: #FFFFFF;
  --color-text-muted: #A0AEC0;
  --color-accent-green: #7CB342;
  /* Nips Money Green */
  --color-pink-laser: #FF0055;
  /* Laser Red-Pink */

  /* Typography */
  --font-heading: 'Luckiest Guy', 'Fredoka', cursive, sans-serif;
  --font-body: 'Fredoka', 'Comic Neue', sans-serif;
  --font-terminal: 'VT323', monospace;

  /* Borders & Shadows */
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-cartoon: 0 10px 0px rgba(0, 0, 0, 0.6), 0 15px 25px rgba(0, 0, 0, 0.7);
  --shadow-cyan: 0 0 25px rgba(241, 90, 36, 0.45);
  --shadow-gold: 0 0 25px rgba(244, 208, 63, 0.4);
  --shadow-laser: 0 0 20px rgba(255, 0, 85, 0.5);
  --border-thick: 4px solid #000000;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--color-bg-dark);
  color: var(--color-text-main);
  overflow-x: hidden;
}

body {
  position: relative;
  background: radial-gradient(circle at 50% 0%, #3B160C 0%, #0D0705 80%);
  min-height: 100vh;
  font-size: 1.05rem;
  letter-spacing: 0.3px;
}

/* Background Animated Canvas */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
}

/* Top Marquee Banner */
.top-marquee {
  background: linear-gradient(90deg, #D84315 0%, #F15A24 45%, #F4D03F 75%, #7CB342 100%);
  color: #000;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  padding: 6px 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 101;
  border-bottom: 2px solid #000;
}

.marquee-track {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  margin: 0 16px;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Layout Container & Sections */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

section {
  padding: 90px 0;
  position: relative;
}

/* Section Title Headers */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-primary);
  text-shadow: 4px 4px 0 #000, -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000;
  letter-spacing: 1.5px;
}

.section-title p {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  margin-top: 10px;
}

.title-badge {
  display: inline-block;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: #000000;
  font-family: var(--font-heading);
  padding: 6px 20px;
  border-radius: 30px;
  font-size: 0.95rem;
  text-transform: uppercase;
  border: 2px solid #000;
  box-shadow: 2px 2px 0 #000;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 3px solid #000;
  box-shadow: 4px 4px 0px #000;
  user-select: none;
}

.btn-primary {
  background: linear-gradient(180deg, #FF733A 0%, var(--color-primary) 100%);
  color: #FFFFFF;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 6px 8px 0px #000;
}

.btn-secondary {
  background: linear-gradient(180deg, #00C8FF 0%, var(--color-secondary) 100%);
  color: #FFFFFF;
}

.btn-secondary:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 6px 8px 0px #000;
}

.btn-gold {
  background: linear-gradient(180deg, #FFE066 0%, var(--color-gold) 100%);
  color: #000000;
}

.btn-gold:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 6px 8px 0px #000;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 32px;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 12px 0;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(13, 7, 5, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid rgba(241, 90, 36, 0.4);
  padding: 8px 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo img {
  width: 46px;
  height: 46px;
  border: none;
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.domain-tag {
  font-size: 0.75rem;
  color: var(--color-primary);
  font-family: var(--font-body);
}

.desktop-nav {
  background: rgba(24, 13, 10, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 2px solid rgba(241, 90, 36, 0.35);
  border-radius: 40px;
  padding: 5px 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), inset 0 0 14px rgba(241, 90, 36, 0.1);
}

.desktop-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  color: #E2E8F0;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.22s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--color-primary);
  background: rgba(241, 90, 36, 0.18);
  box-shadow: 0 0 15px rgba(241, 90, 36, 0.35);
  transform: translateY(-1px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-buy-btn {
  padding: 10px 24px;
  font-size: 1.05rem;
}

.sound-btn {
  background: var(--color-bg-card);
  border: 2px solid var(--color-primary);
  color: #fff;
  font-size: 1.3rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-toggle {
  display: none;
  background: var(--color-bg-card);
  border: 2px solid var(--color-primary);
  color: #fff;
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.mobile-menu {
  position: fixed;
  top: 75px;
  right: -100%;
  width: 80%;
  max-width: 320px;
  background: rgba(13, 7, 5, 0.98);
  border-left: 3px solid var(--color-primary);
  padding: 30px 20px;
  transition: right 0.3s ease;
  z-index: 99;
  backdrop-filter: blur(16px);
  border-bottom-left-radius: 20px;
}

.mobile-menu.active {
  right: 0;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-links a {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  text-decoration: none;
}

/* Hero Central Command Console */
.hero {
  padding-top: 175px;
  padding-bottom: 80px;
  text-align: center;
}

.hero-central-container {
  display: flex;
  justify-content: center;
}

.hero-command-box {
  background: var(--color-bg-card);
  border: var(--border-thick);
  box-shadow: var(--shadow-cartoon), var(--shadow-cyan);
  border-radius: 36px;
  padding: 45px 36px;
  max-width: 860px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.hero-avatar-wrapper {
  position: relative;
  margin-bottom: 28px;
  max-width: 100%;
}

.hero-aura-ring {
  display: none;
}

.hero-avatar-img {
  width: 300px;
  height: 300px;
  max-width: 85vw;
  max-height: 85vw;
  border: none;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-gold);
  color: #000;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  padding: 4px 14px;
  border-radius: 20px;
  border: 2px solid #000;
  white-space: nowrap;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 4px 4px 0 #000;
}

.hero-title span {
  color: var(--color-primary);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  max-width: 680px;
  line-height: 1.6;
  margin-bottom: 26px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 20px;
}

.hero-sfx-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  background: rgba(5, 8, 23, 0.9);
  border: 2px solid rgba(0, 240, 255, 0.4);
  padding: 8px 16px;
  border-radius: 30px;
  margin-bottom: 24px;
}

.sfx-bar-title {
  font-family: var(--font-heading);
  color: var(--color-gold);
  font-size: 0.9rem;
}

.sfx-chip {
  background: linear-gradient(180deg, #1E293B 0%, #0F172A 100%);
  color: #fff;
  border: 2px solid var(--color-primary);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  padding: 5px 12px;
  border-radius: 18px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sfx-chip:hover {
  background: var(--color-primary);
  color: #000;
}

.contract-bar {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #050817;
  border: 3px solid #000;
  padding: 10px 18px;
  border-radius: 16px;
  box-shadow: 4px 4px 0 #000;
  max-width: 100%;
}

.ca-label {
  font-family: var(--font-heading);
  color: var(--color-gold);
}

.ca-address {
  font-family: var(--font-terminal);
  font-size: 1.2rem;
  color: var(--color-primary);
  word-break: break-all;
}

.copy-btn {
  background: var(--color-primary);
  color: #000;
  border: 2px solid #000;
  font-family: var(--font-heading);
  padding: 6px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.9rem;
}

/* CRT Studio Broadcast Section */
.crt-hub-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 30px;
  align-items: start;
}

.crt-video-box {
  background: #000;
  border: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-cyan);
  overflow: hidden;
}

.crt-header {
  background: #111;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid #222;
}

.crt-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.crt-dot.red {
  background: #FF5555;
}

.crt-dot.yellow {
  background: #FFB86C;
}

.crt-dot.green {
  background: #50FA7B;
}

.crt-title {
  font-family: var(--font-terminal);
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-left: 10px;
}

.circle-video-player {
  width: 100%;
  display: block;
}

.equalizer-bar-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  height: 35px;
  padding: 8px;
  background: #080C1E;
}

.eq-bar {
  width: 8px;
  height: 100%;
  background: var(--color-primary);
  border-radius: 4px;
  animation: eqPulse 1.2s ease-in-out infinite alternate;
}

.eq-bar:nth-child(2) {
  animation-delay: 0.2s;
}

.eq-bar:nth-child(3) {
  animation-delay: 0.4s;
}

.eq-bar:nth-child(4) {
  animation-delay: 0.1s;
}

.eq-bar:nth-child(5) {
  animation-delay: 0.5s;
}

.eq-bar:nth-child(6) {
  animation-delay: 0.3s;
}

.eq-bar:nth-child(7) {
  animation-delay: 0.6s;
}

.eq-bar:nth-child(8) {
  animation-delay: 0.25s;
}

@keyframes eqPulse {
  0% {
    height: 20%;
    background: var(--color-secondary);
  }

  100% {
    height: 95%;
    background: var(--color-primary);
  }
}

.tweet-panel-box {
  background: var(--color-bg-card);
  border: var(--border-thick);
  box-shadow: var(--shadow-cartoon);
  border-radius: var(--radius-lg);
  padding: 26px;
}

.tweet-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.tweet-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1DA1F2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.tweet-author-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: #fff;
}

.tweet-author-handle {
  color: #8899A6;
  font-size: 0.9rem;
}

.tweet-body-text {
  font-size: 1.15rem;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 14px;
}

.tweet-date {
  font-size: 0.85rem;
  color: #8899A6;
  margin-bottom: 14px;
}

.tweet-link-btn {
  color: var(--color-primary);
  font-family: var(--font-heading);
  text-decoration: none;
  font-size: 1rem;
}

.divider-dashed {
  border: 0;
  border-top: 1px dashed rgba(0, 240, 255, 0.3);
  margin: 18px 0;
}

.soundboard-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-gold);
  margin-bottom: 10px;
}

.soundboard-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 10px;
}

.soundboard-btn {
  background: linear-gradient(180deg, #1E293B 0%, #0F172A 100%);
  border: 2px solid var(--color-primary);
  border-radius: 12px;
  padding: 8px;
  color: #fff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  transition: all 0.2s ease;
}

.soundboard-btn:hover {
  background: var(--color-primary);
  color: #000;
  transform: translateY(-3px);
}

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

.sb-text {
  font-family: var(--font-heading);
  font-size: 0.8rem;
}

/* Holo-Deck Manifesto Section */
.holodeck-container {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
}

.holodeck-tabs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.holotab-btn {
  background: var(--color-bg-card);
  border: var(--border-thick);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.2s ease;
  text-align: left;
}

.holotab-btn.active,
.holotab-btn:hover {
  border-color: var(--color-primary);
  background: rgba(0, 240, 255, 0.1);
  transform: translateX(8px);
}

.tab-num {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-gold);
}

.tab-label {
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.holodeck-screen {
  background: #040816;
  border: 3px solid var(--color-primary);
  box-shadow: var(--shadow-cyan);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.holo-header-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-family: var(--font-terminal);
  font-size: 1.2rem;
  color: var(--color-primary);
}

.status-pulse {
  width: 10px;
  height: 10px;
  background: var(--color-accent-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-accent-green);
}

.holo-content-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.holo-icon-large {
  font-size: 3.5rem;
  margin-bottom: 12px;
}

.holo-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.holo-desc {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.holo-metrics-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.holo-metric-pill {
  background: rgba(13, 22, 45, 0.9);
  border: 1px solid var(--color-primary);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.95rem;

}

.holo-metric-pill span {
  color: var(--color-text-muted);
  margin-right: 6px;
}

.holo-metric-pill strong {
  color: var(--color-gold);
  font-family: var(--font-heading);
}

/* Arc Telemetry & Dual-Slider Gas Terminal */
.treasury-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.gauges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.gauge-card {
  background: var(--color-bg-card);
  border: var(--border-thick);
  box-shadow: var(--shadow-cartoon);
  border-radius: var(--radius-md);
  padding: 20px;
}

.gauge-header {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--color-gold);
  margin-bottom: 6px;
}

.gauge-value {
  font-family: var(--font-terminal);
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.gauge-sub {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

.gauge-bar-track {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.gauge-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-gold) 100%);
}

.dual-gas-terminal {
  background: var(--color-bg-card);
  border: var(--border-thick);
  box-shadow: var(--shadow-cartoon);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.terminal-top-bar {
  background: #080C1E;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid #000;
}

.term-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.term-dot.red {
  background: #FF5555;
}

.term-dot.yellow {
  background: #FFB86C;
}

.term-dot.green {
  background: #50FA7B;
}

.term-title {
  font-family: var(--font-terminal);
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-left: 10px;
}

.terminal-body-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
  padding: 28px;
}

.slider-control-pane h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-gold);
  margin-bottom: 18px;
}

.slider-field {
  margin-bottom: 20px;
}

.calc-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 8px;
}

.calc-slider {
  width: 100%;
  height: 12px;
  border-radius: 6px;
  background: #1E293B;
  accent-color: var(--color-primary);
  cursor: pointer;
}

.cost-comparison-pane {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cost-card {
  background: rgba(5, 8, 23, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
}

.cost-card.arc {
  border-color: var(--color-accent-green);
  background: rgba(0, 230, 118, 0.06);
}

.cost-card.total-saved {
  border-color: var(--color-gold);
  background: rgba(255, 215, 0, 0.08);
}

.cost-card-title {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.cost-amount {
  font-family: var(--font-terminal);
  font-size: 2.2rem;
  font-weight: 700;
}

.red-text {
  color: #EF4444;
}

.green-text {
  color: var(--color-accent-green);
}

.gold-text {
  color: var(--color-gold);
}

.cost-sub {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* Arcade Cabinet Component */
.arcade-cabinet-wrapper {
  position: relative;
  max-width: 750px;
  margin: 0 auto;
  background: #040712;
  border: var(--border-thick);
  box-shadow: var(--shadow-cartoon), var(--shadow-laser);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.arcade-cabinet-header {
  display: flex;
  justify-content: space-between;
  background: #080D21;
  padding: 12px 20px;
  border-bottom: 3px solid #000;
  font-family: var(--font-terminal);
  font-size: 1.5rem;
}

.hud-label {
  color: var(--color-text-muted);
}

.lives-hearts {
  color: #EF4444;
}

#game-canvas {
  display: block;
  width: 100%;
  height: 450px;
  background: #050817;
  cursor: crosshair;
}

.mobile-game-controls {
  display: none;
  justify-content: space-around;
  padding: 12px;
  background: #080D21;
  border-top: 3px solid #000;
}

.game-ctrl-btn {
  background: var(--color-secondary);
  color: #fff;
  font-family: var(--font-heading);
  padding: 12px 22px;
  border-radius: 12px;
  border: 2px solid #000;
  cursor: pointer;
  font-size: 1.1rem;
}

.game-ctrl-btn.blast-btn {
  background: var(--color-pink-laser);
}

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 7, 18, 0.94);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  text-align: center;
  z-index: 10;
}

.game-overlay h3 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 10px;
}

/* Gallery Section Ambient Orbs & Glow */
.gallery {
  position: relative;
  overflow: hidden;
}

.vault-glow-orb {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  filter: blur(150px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.3;
}

.vault-glow-orb.orb-left {
  top: 15%;
  left: -120px;
  background: var(--color-primary);
}

.vault-glow-orb.orb-right {
  bottom: 10%;
  right: -120px;
  background: var(--color-secondary);
}

/* Gallery Toolbar Controls */
.gallery-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 35px;
  flex-wrap: wrap;
  position: relative;
  z-index: 5;
}

.gallery-search-box {
  position: relative;
  flex: 1;
  min-width: 220px;
  max-width: 320px;
}

.gallery-search-box input {
  width: 100%;
  padding: 10px 16px 10px 40px;
  border-radius: 25px;
  border: 2px solid var(--color-primary);
  background: var(--color-bg-card);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: all 0.2s ease;
}

.gallery-search-box input:focus {
  box-shadow: 0 0 15px rgba(241, 90, 36, 0.5);
  border-color: var(--color-gold);
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-primary);
  font-size: 0.95rem;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--color-bg-card);
  border: 2px solid var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  padding: 8px 18px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--color-primary);
  color: #000;
}

.gallery-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.random-btn {
  background: linear-gradient(180deg, #FFE066 0%, var(--color-gold) 100%);
  border: 2px solid #000;
  box-shadow: 2px 2px 0 #000;
  color: #000;
  font-family: var(--font-heading);
  padding: 8px 18px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.random-btn:hover {
  transform: translateY(-2px) scale(1.05);
}

.studio-btn {
  background: linear-gradient(90deg, #F15A24 0%, #8E24AA 100%);
  border: 2px solid #fff;
  box-shadow: 0 0 15px rgba(241, 90, 36, 0.4);
  color: #fff;
  font-family: var(--font-heading);
  padding: 8px 18px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.studio-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 0 25px rgba(241, 90, 36, 0.7);
}

/* Dynamic Bento Grid Layout */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 5;
}

@media (min-width: 900px) {
  .gallery-card.featured-card {
    grid-column: span 2;
    grid-row: span 2;
    height: 604px;
  }
}

.gallery-card {
  position: relative;
  height: 290px;
  border-radius: 22px;
  background: rgba(18, 10, 8, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 2px solid rgba(241, 90, 36, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  perspective: 1000px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-8px) rotateX(4deg) scale(1.02);
  border-color: var(--color-primary);
  box-shadow: 0 16px 36px rgba(241, 90, 36, 0.45), 0 0 20px rgba(241, 90, 36, 0.25);
}

.card-img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover .card-img-wrap img {
  transform: scale(1.08);
}

.card-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(13, 7, 5, 0.5) 45%, rgba(13, 7, 5, 0.98) 100%);
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover .card-gradient-overlay {
  opacity: 1;
}

/* Card Badge Pill (Top Left) */
.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  background: rgba(13, 7, 5, 0.85);
  backdrop-filter: blur(8px);
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  font-family: var(--font-heading);
  font-size: 0.74rem;
  padding: 4px 12px;
  border-radius: 14px;
  letter-spacing: 0.5px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover .card-badge {
  opacity: 1;
  transform: translateY(0);
}

.card-badge.gold {
  color: #000;
  background: var(--color-gold);
  border-color: #000;
}

.card-badge.circle {
  color: #00B0FF;
  border-color: #00B0FF;
}

.card-badge.purple {
  color: #E040FB;
  border-color: #E040FB;
}

.gallery-info {
  position: relative;
  z-index: 3;
  padding: 16px 18px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover .gallery-info {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: none) {
  .card-gradient-overlay {
    opacity: 1;
  }
  .card-badge {
    opacity: 1;
    transform: translateY(0);
  }
  .gallery-info {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-info h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 4px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.gallery-info p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

.card-action-bar {
  display: flex;
  align-items: center;
}

.action-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(241, 90, 36, 0.25);
  border: 1px solid var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 12px;
  backdrop-filter: blur(8px);
  transition: all 0.2s ease;
}

.gallery-card:hover .action-pill {
  background: var(--color-primary);
  color: #000;
  box-shadow: 0 0 12px rgba(241, 90, 36, 0.6);
}

/* Meme Studio Customizer Modal Styles */
.studio-content {
  max-width: 850px;
  background: rgba(18, 10, 8, 0.98);
  border: 3px solid var(--color-primary);
  border-radius: 24px;
  box-shadow: 0 0 40px rgba(241, 90, 36, 0.5);
  padding: 30px;
}

.studio-header h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-gold);
  margin-bottom: 4px;
}

.studio-header p {
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.studio-body {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  align-items: center;
}

@media (max-width: 768px) {
  .studio-body {
    grid-template-columns: 1fr;
  }
}

.studio-preview-box {
  background: #000;
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.studio-preview-box canvas {
  width: 100%;
  height: auto;
  max-height: 380px;
  display: block;
}

.studio-controls {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.studio-field label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 6px;
}

.studio-field input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1rem;
  outline: none;
}

.studio-field input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 10px rgba(241, 90, 36, 0.4);
}

.studio-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.studio-thumb-img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

.studio-thumb-img.active,
.studio-thumb-img:hover {
  border-color: var(--color-primary);
  transform: scale(1.08);
}

/* Enhanced Cyber Lightbox Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(8, 4, 3, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.active {
  display: flex;
}

.modal-glow-bg {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 90, 36, 0.35) 0%, rgba(142, 36, 170, 0.2) 50%, transparent 70%);
  filter: blur(120px);
  pointer-events: none;
}

.cyber-modal-content {
  position: relative;
  max-width: 820px;
  width: 100%;
  background: rgba(18, 10, 8, 0.96);
  border: 2px solid var(--color-primary);
  box-shadow: 0 0 50px rgba(241, 90, 36, 0.5), 0 25px 50px rgba(0, 0, 0, 0.95);
  border-radius: 24px;
  overflow: hidden;
  animation: modalCyberIn 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalCyberIn {
  from {
    opacity: 0;
    transform: scale(0.88) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.cyber-window-header {
  background: rgba(10, 5, 4, 0.95);
  border-bottom: 2px solid rgba(241, 90, 36, 0.3);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.window-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.red { background: #FF5555; }
.dot.yellow { background: #FFB86C; }
.dot.green { background: #50FA7B; }

.window-title {
  font-family: var(--font-terminal);
  font-size: 1.1rem;
  color: var(--color-gold);
  margin-left: 8px;
  letter-spacing: 1px;
}

.window-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cyber-badge {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  color: var(--color-primary);
  background: rgba(241, 90, 36, 0.15);
  border: 1px solid var(--color-primary);
  padding: 3px 10px;
  border-radius: 12px;
}

.modal-close-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}

.modal-close-btn:hover {
  color: var(--color-primary);
}

/* Cyber Image Frame */
.cyber-image-frame {
  position: relative;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  max-height: 60vh;
  overflow: hidden;
}

.cyber-image-frame img {
  max-width: 100%;
  max-height: 60vh;
  object-fit: contain;
  display: block;
}

/* Corner Brackets */
.corner-bracket {
  position: absolute;
  width: 16px;
  height: 16px;
  border-color: var(--color-primary);
  border-style: solid;
  z-index: 10;
  pointer-events: none;
}

.corner-bracket.tl { top: 12px; left: 12px; border-width: 3px 0 0 3px; }
.corner-bracket.tr { top: 12px; right: 12px; border-width: 3px 3px 0 0; }
.corner-bracket.bl { bottom: 12px; left: 12px; border-width: 0 0 3px 3px; }
.corner-bracket.br { bottom: 12px; right: 12px; border-width: 0 3px 3px 0; }

/* Modal Nav Arrows */
.modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(13, 7, 5, 0.85);
  border: 2px solid var(--color-primary);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 15;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
}

.modal-arrow:hover {
  background: var(--color-primary);
  color: #000;
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 0 20px rgba(241, 90, 36, 0.8);
}

.modal-prev { left: 16px; }
.modal-next { right: 16px; }

/* Cyber Footer */
.cyber-footer {
  background: rgba(10, 5, 4, 0.95);
  border-top: 2px solid rgba(241, 90, 36, 0.3);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-info h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-gold);
  margin-bottom: 2px;
}

.footer-info p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.footer-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cyber-act-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.cyber-act-btn:hover {
  background: rgba(241, 90, 36, 0.25);
  border-color: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}

.modal-content {
  position: relative;
  max-width: 700px;
  width: 100%;
}

.modal-content img {
  width: 100%;
  border-radius: 20px;
  border: 4px solid var(--color-primary);
}

.modal-close {
  position: absolute;
  top: -18px;
  right: -18px;
  background: var(--color-purple);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Interactive Flight Path Roadmap */
.flight-nodes-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 840px;
  margin: 0 auto 36px auto;
  position: relative;
}

.flight-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  z-index: 2;
}

.node-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-bg-card);
  border: 3px solid var(--color-text-muted);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.flight-node.active .node-circle,
.flight-node:hover .node-circle {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #000;
  box-shadow: var(--shadow-cyan);
  transform: scale(1.1);
}

.node-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-text-muted);
}

.flight-node.active .node-title {
  color: var(--color-gold);
}

.flight-connector {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 10px;
  margin-bottom: 28px;
}

.mission-console-box {
  background: var(--color-bg-card);
  border: var(--border-thick);
  box-shadow: var(--shadow-cartoon);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 840px;
  margin: 0 auto;
}

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

.console-status-badge {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  background: var(--color-gold);
  color: #000;
  padding: 4px 14px;
  border-radius: 12px;
  border: 1px solid #000;
}

.console-phase-id {
  font-family: var(--font-terminal);
  font-size: 1.2rem;
  color: var(--color-primary);
}

.mission-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.mission-checklist {
  list-style: none;
}

.mission-checklist li {
  font-size: 1.1rem;
  color: #CBD5E1;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mission-checklist li::before {
  content: "\f1b0";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--color-primary);
}

/* Onboarding Terminal Section */
.onboarding-terminal {
  max-width: 800px;
  margin: 0 auto;
  background: var(--color-bg-card);
  border: var(--border-thick);
  box-shadow: var(--shadow-cartoon);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.buy-tab-selectors {
  display: flex;
  background: #080D21;
  border-bottom: 3px solid #000;
}

.buy-tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  border-right: 2px solid #000;
  padding: 16px;
  color: var(--color-text-muted);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.buy-tab-btn.active,
.buy-tab-btn:hover {
  background: var(--color-primary);
  color: #000;
}

.buy-tab-btn span {
  font-size: 0.85rem;
  display: block;
}

.buy-step-content {
  padding: 36px;
  text-align: center;
}

.step-content-badge {
  display: inline-block;
  background: var(--color-secondary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  padding: 4px 14px;
  border-radius: 12px;
  margin-bottom: 14px;
}

.buy-step-content h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-primary);
  margin-bottom: 14px;
}

.buy-step-content p {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto 24px auto;
  line-height: 1.6;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10000;
}

.toast {
  background: var(--color-primary);
  color: #000;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  padding: 12px 20px;
  border-radius: 12px;
  border: 3px solid #000;
  box-shadow: 4px 4px 0 #000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* Scroll Animation Utilities */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* Footer */
.footer {
  background: #03050c;
  border-top: 4px solid #000;
  padding: 50px 0 30px 0;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 20px 0;
}

.footer-socials a {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #000;
  box-shadow: 2px 2px 0 #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  text-decoration: none;
}

.footer-socials a:hover {
  transform: translateY(-4px);
  background: var(--color-primary);
  color: #000;
}

.footer-disclaimer {
  max-width: 800px;
  margin: 0 auto 20px auto;
  font-size: 0.85rem;
  color: #64748B;
  line-height: 1.6;
}

.footer-copy {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .desktop-nav {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .crt-hub-grid,
  .holodeck-container,
  .terminal-body-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 3rem;
  }

  .mobile-game-controls {
    display: flex;
  }

  .flight-nodes-bar {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }

  .flight-connector {
    display: none;
  }
}

@media (max-width: 600px) {
  section {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 2.2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .btn {
    width: 100%;
  }

  .contract-bar {
    flex-direction: column;
    padding: 12px;
  }

  #game-canvas {
    height: 350px;
  }

  .buy-tab-selectors {
    flex-direction: column;
  }
}