/* ============================================
   DESIGN TOKENS — change these and the whole
   site updates. This is the "control panel."
   ============================================ */
:root {
  --bg-deep: #0D0D14;        /* main background, deep space */
  --bg-room: #15141F;        /* slightly lighter, for room sections */
  --purple-primary: #6D3BFF; /* main brand purple */
  --purple-secondary: #8A63D2; /* muted purple, borders/dividers */
  --lavender: #B79BFF;       /* glow/hover accent */
  --text-light: #E7E7FF;     /* main body text */
  --text-muted: #8A8A99;     /* secondary/caption text */
  --white: #FFFFFF;

  --font-display: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Space Mono', monospace;
}

/* ============================================
   RESET — browsers add default spacing/sizing
   that varies between browsers. This zeroes it
   out so we control everything intentionally.
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth; /* clicking nav links scrolls smoothly, not instantly */
}

body {
  background: var(--bg-deep);
  color: var(--text-light);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden; /* prevents horizontal scrollbar from animations */
}

/* ============================================
   STARFIELD BACKGROUND — a fixed layer of
   tiny dots behind everything, so it feels
   like deep space no matter where you scroll
   ============================================ */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image:
    radial-gradient(3px 3px at 20% 30%, #FFFFFF, transparent),
    radial-gradient(2.5px 2.5px at 70% 60%, #E7E7FF, transparent),
    radial-gradient(2px 2px at 40% 80%, #B79BFF, transparent),
    radial-gradient(2.5px 2.5px at 90% 10%, #FFFFFF, transparent),
    radial-gradient(3px 3px at 55% 45%, #B79BFF, transparent),
    radial-gradient(2px 2px at 10% 90%, #FFFFFF, transparent),
    radial-gradient(2.5px 2.5px at 85% 75%, #E7E7FF, transparent),
    radial-gradient(1.5px 1.5px at 25% 15%, #FFFFFF, transparent),
    radial-gradient(2px 2px at 60% 25%, #B79BFF, transparent),
    radial-gradient(1.5px 1.5px at 35% 55%, #E7E7FF, transparent),
    radial-gradient(2px 2px at 75% 85%, #FFFFFF, transparent),
    radial-gradient(1.5px 1.5px at 5% 50%, #B79BFF, transparent),
    radial-gradient(2px 2px at 95% 40%, #E7E7FF, transparent),
    radial-gradient(2.5px 2.5px at 45% 5%, #FFFFFF, transparent),
    radial-gradient(1.5px 1.5px at 15% 65%, #B79BFF, transparent),
    radial-gradient(2px 2px at 30% 95%, #FFFFFF, transparent),
    radial-gradient(1.5px 1.5px at 80% 50%, #E7E7FF, transparent),
    radial-gradient(2.5px 2.5px at 50% 70%, #B79BFF, transparent),
    radial-gradient(1.5px 1.5px at 65% 35%, #FFFFFF, transparent),
    radial-gradient(2px 2px at 8% 25%, #E7E7FF, transparent);
  background-size: 100% 100%;
  filter: drop-shadow(0 0 2px rgba(183, 155, 255, 0.6));
  z-index: -1;
  pointer-events: none;
  animation: twinkle 4s ease-in-out infinite alternate;
}

/* A second, offset starfield layer with different stars,
   animating on its own rhythm — combined with the first
   layer this creates an irregular, natural twinkle pattern
   rather than the whole sky pulsing in unison. */
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image:
    radial-gradient(2px 2px at 12% 40%, #FFFFFF, transparent),
    radial-gradient(1.5px 1.5px at 48% 12%, #B79BFF, transparent),
    radial-gradient(2.5px 2.5px at 68% 90%, #E7E7FF, transparent),
    radial-gradient(1.5px 1.5px at 88% 60%, #FFFFFF, transparent),
    radial-gradient(2px 2px at 32% 70%, #B79BFF, transparent),
    radial-gradient(1.5px 1.5px at 22% 88%, #E7E7FF, transparent),
    radial-gradient(2.5px 2.5px at 58% 55%, #FFFFFF, transparent),
    radial-gradient(1.5px 1.5px at 78% 20%, #B79BFF, transparent),
    radial-gradient(2px 2px at 3% 15%, #E7E7FF, transparent),
    radial-gradient(1.5px 1.5px at 92% 85%, #FFFFFF, transparent);
  background-size: 100% 100%;
  filter: drop-shadow(0 0 3px rgba(231, 231, 255, 0.7));
  z-index: -1;
  pointer-events: none;
  animation: twinkle 3s ease-in-out infinite alternate-reverse;
}

@keyframes twinkle {
  0% { opacity: 0.4; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}

/* ============================================
   NAVIGATION
   ============================================ */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  z-index: 100;
  background: rgba(13, 13, 20, 0.7);
  backdrop-filter: blur(10px); /* frosted glass effect over content scrolling beneath */
  border-bottom: 1px solid rgba(138, 99, 210, 0.2);
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: var(--white);
}

.nav-logo span {
  color: var(--lavender);
  font-weight: 400;
}

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

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--lavender);
}

.nav-links a.active {
  color: var(--lavender);
  border-bottom: 1px solid var(--lavender);
  padding-bottom: 0.2rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
#hero {
  height: 100vh; /* full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

/* The "porthole" — circular window showing Earth, like looking
   through a ship window. Real NASA imagery clipped to a circle. */
#hero::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 560px; height: 560px;
  border-radius: 50%;
  background-image: url('assets/earth-americas.webp');
  background-size: 145%;
  background-position: center;
  opacity: 0.55;
  box-shadow:
    0 0 60px rgba(109, 59, 255, 0.4),
    inset 0 0 100px rgba(13, 13, 20, 0.85);
  border: 1px solid rgba(183, 155, 255, 0.25);
  pointer-events: none;
}

/* Dark radial overlay on top of the Earth image, so the hero
   text stays readable regardless of what's underneath.
   Fades to fully transparent at the edge so the circle's
   border/background blends cleanly instead of greying out. */
#hero::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle at center,
    rgba(13, 13, 20, 0.8) 0%,
    rgba(13, 13, 20, 0.5) 45%,
    rgba(13, 13, 20, 0) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 1.5rem;
}

.mission-tag {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--lavender);
  margin-bottom: 1rem;
}

#hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 6.5rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1;
}

#hero h1 span {
  color: var(--purple-primary);
  font-weight: 400;
  font-size: 0.5em;
  vertical-align: middle;
}

.tagline {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
  letter-spacing: 0.05em;
}

.scroll-cue {
  position: absolute;
  bottom: -8rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  animation: pulse 2.5s ease-in-out infinite;
}

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

/* ============================================
   ROOM SECTIONS — shared layout for all rooms.
   background-attachment: fixed is the key to
   the parallax effect — the background image
   stays fixed as the page scrolls, so content
   moves over it, creating the feeling of moving
   through the ship rather than down a flat page.
   ============================================ */
.room {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 3rem;
  position: relative;
  border-top: 1px solid rgba(138, 99, 210, 0.15);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Dark overlay so text stays readable over ship backgrounds */
.room::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 20, 0.70);
  z-index: 0;
}

/* Push all room content above the dark overlay */
.room-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

/* Each room gets the Wayfarer ship interior as its background.
   Using the same ship-window image creates continuity —
   like you're moving through different parts of the same ship. */
#deck {
  background-image: url('assets/ship-window.jpg');
}

#podcast {
  background-image: url('assets/ship-podcast.jpg');
  background-position: center top;
}

#game-room {
  background-image: url('assets/ship-game.jpg');
  background-repeat: no-repeat;
  background-position: center center;
}

/* Game room gets a lighter overlay so Scout and the
   environment are clearly visible and immersive */
#game-room::before {
  background: rgba(13, 13, 20, 0.50);
}

#investigation {
  background-image: url('assets/ship-investigation.jpg');
}

.room-label {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--purple-secondary);
  margin-bottom: 1rem;
}

.room h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}

.room p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin-bottom: 1rem;
}

/* alternate background tone for every other room,
   so adjacent rooms feel slightly distinct */
.room:nth-of-type(even) {
  background: var(--bg-deep);
}

/* ============================================
   SPLIT ROOM LAYOUT — text on one side,
   visual (Earth window) on the other
   ============================================ */
.room-split {
  display: flex;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.room-split .room-content {
  flex: 1;
  margin: 0;
}

.room-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.earth-window {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-image: url('assets/earth-americas.webp');
  background-size: cover;
  background-position: center;
  border: 2px solid var(--purple-secondary);
  box-shadow:
    0 0 80px rgba(109, 59, 255, 0.35),
    inset 0 0 60px rgba(13, 13, 20, 0.7);
  position: relative;
}

/* Thin orbiting ring around the window, echoes the
   mission patch's orbit motif */
.earth-window::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 115%;
  height: 60%;
  border: 1px solid var(--lavender);
  border-radius: 50%;
  opacity: 0.3;
}

/* ============================================
   SCOUT WINDOW — same frame style as
   earth-window, displays the character render
   ============================================ */
.scout-window {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--bg-room) 0%, var(--bg-deep) 100%);
  border: 2px solid var(--purple-secondary);
  box-shadow:
    0 0 80px rgba(109, 59, 255, 0.35),
    inset 0 0 60px rgba(13, 13, 20, 0.7);
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.scout-window::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 115%;
  height: 60%;
  border: 1px solid var(--lavender);
  border-radius: 50%;
  opacity: 0.3;
  pointer-events: none;
}

/* Pulse ring — periodically expands outward from center,
   like a scan or sonar ping. Reinforces "observation" theme. */
.scout-window::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid var(--lavender);
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  animation: scanPulse 4s ease-out infinite;
  pointer-events: none;
}

@keyframes scanPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.6;
  }
  70% {
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 0;
  }
}

.scout-portrait {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 50%;
  background: var(--bg-deep);
  box-shadow:
    0 0 0 3px var(--purple-secondary),
    0 0 60px rgba(109, 59, 255, 0.5);
  filter: drop-shadow(0 0 20px rgba(109, 59, 255, 0.3));
  animation: floatScout 6s ease-in-out infinite;
}

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

/* Orbit particles — small glowing dots drifting slowly
   around Scout, like dust motes or sensor pings */
.orbit-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--lavender);
  box-shadow: 0 0 8px var(--lavender), 0 0 16px rgba(183, 155, 255, 0.5);
  z-index: 2;
}

.particle-1 {
  top: 15%;
  left: 20%;
  animation: drift1 9s ease-in-out infinite;
}

.particle-2 {
  top: 70%;
  left: 80%;
  width: 3px;
  height: 3px;
  animation: drift2 7s ease-in-out infinite;
}

.particle-3 {
  top: 30%;
  left: 85%;
  width: 5px;
  height: 5px;
  animation: drift3 11s ease-in-out infinite;
}

.particle-4 {
  top: 85%;
  left: 30%;
  width: 3px;
  height: 3px;
  animation: drift1 8s ease-in-out infinite reverse;
}

@keyframes drift1 {
  0%, 100% { transform: translate(0, 0); opacity: 0.4; }
  50% { transform: translate(20px, -15px); opacity: 1; }
}

@keyframes drift2 {
  0%, 100% { transform: translate(0, 0); opacity: 0.3; }
  50% { transform: translate(-25px, 10px); opacity: 0.9; }
}

@keyframes drift3 {
  0%, 100% { transform: translate(0, 0); opacity: 0.5; }
  50% { transform: translate(-15px, -20px); opacity: 1; }
}

/* ============================================
   LOG READOUT — terminal-style status lines
   ============================================ */
.log-readout {
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px solid rgba(138, 99, 210, 0.3);
  border-radius: 4px;
  background: rgba(109, 59, 255, 0.05);
  display: inline-block;
}

.log-line {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--lavender);
  margin-bottom: 0.5rem;
}

.log-line:last-child {
  margin-bottom: 0;
}

.log-line.correlation { color: #7FE0A0; }  /* green, like "detected" status */
.log-line.warning { color: #E0C97F; }       /* amber, like "insufficient" */
.log-line.alert { color: #E07F7F; }         /* red, like "reaching again" */

/* ============================================
   EPISODE LIST (Podcast Room)
   ============================================ */
.episode-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.episode {
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(138, 99, 210, 0.2);
  border-radius: 4px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.episode:hover {
  border-color: var(--lavender);
  background: rgba(109, 59, 255, 0.08);
}

.episode-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--lavender);
  display: block;
  margin-bottom: 0.5rem;
}

.episode h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
}

/* ============================================
   COMMS / INTAKE FORM
   ============================================ */
#comms {
  padding: 6rem 3rem;
  background: var(--bg-room);
  border-top: 1px solid rgba(138, 99, 210, 0.15);
}

.comms-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

#comms h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin: 1rem 0 1rem;
}

.comms-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* Form layout */
.intake-form {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--lavender);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(109, 59, 255, 0.06);
  border: 1px solid rgba(138, 99, 210, 0.3);
  border-radius: 4px;
  padding: 0.85rem 1rem;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s ease, background 0.3s ease;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--lavender);
  background: rgba(109, 59, 255, 0.1);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A63D2' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: var(--bg-room);
  color: var(--text-light);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Conditional fields — hidden by default, shown via JS */
.conditional-fields {
  display: none;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(138, 99, 210, 0.2);
  border-radius: 4px;
  background: rgba(13, 13, 20, 0.4);
}

.conditional-fields.visible {
  display: flex;
}

/* Submit button */
.submit-btn {
  align-self: flex-start;
  background: var(--purple-primary);
  border: none;
  border-radius: 4px;
  padding: 1rem 2.5rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.submit-btn span {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--white);
}

.submit-btn:hover {
  background: var(--lavender);
  transform: translateY(-2px);
}

.submit-btn:active {
  transform: translateY(0);
}

.form-note {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* Social links */
.comms-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.comms-links a {
  color: var(--text-light);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--purple-secondary);
  padding: 0.6rem 1.25rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.comms-links a:hover {
  background: var(--purple-primary);
  border-color: var(--purple-primary);
  color: var(--white);
}

.footer-note {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  #comms {
    padding: 4rem 1.5rem;
  }
}

/* ============================================
   RESPONSIVE — mobile adjustments
   ============================================ */
@media (max-width: 768px) {
  #main-nav {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .nav-links a {
    font-size: 0.7rem;
  }

  .room {
    padding: 4rem 1.5rem;
  }

  .room-split {
    flex-direction: column;
    gap: 2.5rem;
  }

  .earth-window {
    max-width: 280px;
  }

  #hero::before {
    width: 350px;
    height: 350px;
  }

  .scroll-cue {
    bottom: -5rem;
  }
}

/* ============================================
   ACCESSIBILITY — respect reduced motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .scroll-cue {
    animation: none;
  }

  body::before,
  body::after {
    animation: none;
  }
}


/* ─── NAV PLAY LINK ──────────────────────────────────────────── */
.nav-play-link {
  color: #B79BFF !important;
  border: 1px solid #6D3BFF;
  padding: 4px 12px !important;
  border-radius: 4px;
  font-family: "Space Mono", monospace;
  font-size: 11px !important;
  letter-spacing: 0.08em;
  transition: background 0.2s, color 0.2s;
}
.nav-play-link:hover {
  background: #6D3BFF;
  color: #E7E7FF !important;
}

/* ─── GAME LAUNCH CARD ───────────────────────────────────────── */
.game-launch-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 32px;
  padding: 24px 28px;
  border: 1px solid #6D3BFF55;
  border-left: 3px solid #6D3BFF;
  background: #6D3BFF0D;
  flex-wrap: wrap;
}

.game-launch-label {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  color: #6D3BFF;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.game-launch-title {
  font-family: "Rajdhani", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #E7E7FF;
  margin-bottom: 6px;
}

.game-launch-desc {
  font-size: 14px;
  color: #8A8A99;
  margin: 0;
}

.game-launch-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #6D3BFF;
  color: #E7E7FF;
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: 1px solid #B79BFF44;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}

.game-launch-btn:hover {
  background: #8A63D2;
  transform: translateY(-2px);
}
