/* Core Theme Variables */
:root {
  --dark-bg: #0b0216;
  --panel-bg: rgba(15, 6, 28, 0.7);
  --neon-cyan: #00f3ff;
  --neon-pink: #ff007f;
  --neon-purple: #9d00ff;
  --neon-yellow: #ffb800;
  --neon-green: #39ff14;
  --text-primary: #ffffff;
  --text-secondary: #a29bb6;
  --border-glass: rgba(255, 255, 255, 0.1);
  --border-active-cyan: rgba(0, 243, 255, 0.6);
  --border-active-pink: rgba(255, 0, 127, 0.6);
}

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

body, html {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: var(--dark-bg);
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
}

/* CRT Screen Effect overlay */
.crt-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.15) 50%), 
              linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03));
  background-size: 100% 4px, 6px 100%;
  pointer-events: none;
  z-index: 99;
}

.background-radial-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(157, 0, 255, 0.15) 0%, rgba(11, 2, 22, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

/* Canvas styling */
canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
}

/* Overlay & Menu Container */
.overlay-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  transition: opacity 0.4s ease, visibility 0.4s;
  padding: 2rem;
  background-color: rgba(5, 1, 10, 0.4);
}

.overlay-container.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Glassmorphic Panel Design */
.glass-panel {
  background: var(--panel-bg);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5), 
              0 0 40px rgba(157, 0, 255, 0.1);
  padding: 3rem;
  max-width: 500px;
  width: 100%;
  text-align: center;
  transition: border-color 0.5s ease, box-shadow 0.5s ease;
  z-index: 11;
}

.glass-panel.wide-card {
  max-width: 800px;
}

/* Glowing Typography */
h1.game-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: 4px;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.game-subtitle {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 6px;
  color: var(--neon-cyan);
  margin-bottom: 2.5rem;
  text-shadow: 0 0 8px rgba(0, 243, 255, 0.5);
}

h2.section-title, h2.game-over-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

/* Neon Glow Pulses */
.neon-pulse {
  animation: neon-glow-pulse 2s infinite alternate;
}

.neon-cyan-text {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px rgba(0, 243, 255, 0.6);
}

.neon-pink-text {
  color: var(--neon-pink);
  text-shadow: 0 0 10px rgba(255, 0, 127, 0.6);
}

.neon-yellow-text {
  color: var(--neon-yellow);
  text-shadow: 0 0 10px rgba(255, 184, 0, 0.6);
}

@keyframes neon-glow-pulse {
  from {
    text-shadow: 0 0 4px #fff, 0 0 8px var(--neon-pink), 0 0 15px var(--neon-pink);
  }
  to {
    text-shadow: 0 0 2px #fff, 0 0 4px var(--neon-pink), 0 0 8px var(--neon-pink);
  }
}

/* HUD System */
.hud-container {
  position: absolute;
  top: 1.5rem;
  left: 5%;
  right: 5%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  z-index: 5;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.hud-container.hidden {
  opacity: 0;
  pointer-events: none;
}

.hud-item {
  background: rgba(15, 6, 28, 0.65);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 0.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hud-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}

.hud-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
}

.hud-subvalue {
  position: absolute;
  right: 1.25rem;
  bottom: 0.75rem;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  color: var(--neon-pink);
  font-weight: bold;
}

.hud-unit {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-left: 0.25rem;
}

.status-box {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  pointer-events: auto; /* Enable mute button interaction */
}

.status-indicator {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 1px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  transition: color 0.3s;
}

.indicator-glow {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #3a3347;
  box-shadow: none;
  transition: background-color 0.3s, box-shadow 0.3s;
}

.shield-active {
  color: var(--neon-cyan);
  text-shadow: 0 0 8px rgba(0, 243, 255, 0.4);
}

.shield-active .indicator-glow {
  background-color: var(--neon-cyan);
  box-shadow: 0 0 10px var(--neon-cyan), 0 0 5px var(--neon-cyan);
}

.hud-icon-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, transform 0.1s;
  padding: 4px;
}

.hud-icon-btn:hover {
  color: var(--neon-cyan);
  transform: scale(1.1);
}

.hud-icon-btn svg {
  fill: currentColor;
}

/* Button Stylings */
.btn {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 2px;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-transform: uppercase;
}

.btn-primary {
  color: #000;
  box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
}

.neon-btn-cyan {
  background-color: var(--neon-cyan);
}

.neon-btn-cyan:hover {
  background-color: #ffffff;
  box-shadow: 0 0 25px var(--neon-cyan), 0 0 10px var(--neon-cyan);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  margin-top: 1rem;
}

.btn-secondary:hover {
  border-color: var(--neon-pink);
  color: var(--neon-pink);
  box-shadow: 0 0 15px rgba(255, 0, 127, 0.2);
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(1px);
}

.menu-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.margin-top {
  margin-top: 1.5rem;
}

/* High Scores Panel */
.high-scores-box {
  margin-top: 2rem;
  border-top: 1px solid var(--border-glass);
  padding-top: 1.5rem;
  text-align: left;
}

.high-scores-box h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  text-align: center;
}

.high-scores-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.high-scores-box li {
  display: flex;
  justify-content: space-between;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.95rem;
  color: var(--text-primary);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
  padding-bottom: 0.25rem;
}

.high-scores-box li .rank {
  color: var(--neon-pink);
}

/* Settings Panels styling */
.settings-group {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.setting-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.setting-row label {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--text-secondary);
}

/* Customizable dropdown matching brand system */
.custom-select-wrapper {
  position: relative;
  width: 100%;
}

select {
  font-family: 'Inter', sans-serif;
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(15, 6, 28, 0.8);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 0.9rem;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 0.3s;
}

select:focus {
  outline: none;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 10px rgba(0, 243, 255, 0.25);
}

.custom-select-wrapper::after {
  content: '▼';
  font-size: 0.7rem;
  color: var(--neon-cyan);
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.instruction-text {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

/* Shop Overlay Styling */
.currency-status {
  margin-bottom: 1.5rem;
  background: rgba(255, 184, 0, 0.05);
  border: 1px dashed rgba(255, 184, 0, 0.2);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.currency-status span:first-child {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: var(--text-secondary);
}

.shop-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  text-align: left;
}

.shop-section h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.shop-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.item-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.item-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.item-desc {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.item-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}

.level-indicator {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  color: var(--neon-cyan);
}

.btn-shop {
  font-size: 0.75rem;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 184, 0, 0.1);
  border: 1px solid rgba(255, 184, 0, 0.3);
  color: var(--neon-yellow);
  display: flex;
  align-items: center;
  gap: 4px;
}

.btn-shop::after {
  content: '⚡';
}

.btn-shop:hover:not(:disabled) {
  background: var(--neon-yellow);
  color: #000;
  box-shadow: 0 0 10px rgba(255, 184, 0, 0.4);
}

.btn-shop:disabled {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.3);
  cursor: not-allowed;
}

.btn-shop.maxed {
  background: rgba(57, 255, 20, 0.1);
  border-color: var(--neon-green);
  color: var(--neon-green);
  cursor: default;
}

.btn-shop.maxed::after {
  content: '✓';
}

/* Skins List */
.scrollable-list {
  max-height: 250px;
  overflow-y: auto;
  scrollbar-gutter: stable;
}

.skin-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.skin-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.skin-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

.skin-card.active-skin {
  border-color: var(--neon-cyan);
  background: rgba(0, 243, 255, 0.05);
}

.skin-preview {
  display: flex;
  align-items: center;
  gap: 10px;
}

.color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  box-shadow: 0 0 8px currentColor;
}

.skin-name {
  font-size: 0.85rem;
  font-weight: 500;
}

.skin-status {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  font-weight: bold;
}

.skin-status.select-action {
  color: var(--text-secondary);
}

.skin-status.active-text {
  color: var(--neon-cyan);
  text-shadow: 0 0 5px rgba(0, 243, 255, 0.5);
}

.skin-status.buy-action {
  color: var(--neon-yellow);
}

/* Custom Scrollbar */
.scrollable-list::-webkit-scrollbar {
  width: 6px;
}

.scrollable-list::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.scrollable-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.scrollable-list::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Game Over Stats styling */
.run-stats {
  margin: 1.5rem 0 2rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat-row span:first-child {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: var(--text-secondary);
}

.high-score-alert {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-align: center;
  color: var(--neon-yellow);
  text-shadow: 0 0 10px var(--neon-yellow);
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px dashed rgba(255, 184, 0, 0.2);
}

/* Leaderboard Submit Panel */
.submit-box {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px dashed var(--border-glass);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.submit-box label {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--text-secondary);
  text-align: center;
  display: block;
}

.input-row {
  display: flex;
  gap: 0.75rem;
  width: 100%;
}

#pilotNameInput {
  flex: 1;
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  padding: 0.75rem;
  background: rgba(10, 2, 20, 0.85);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  color: var(--text-primary);
  transition: all 0.3s;
}

#pilotNameInput:focus {
  outline: none;
  border-color: var(--neon-pink);
  box-shadow: 0 0 12px rgba(255, 0, 127, 0.4);
}

.btn-submit {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  letter-spacing: 1px;
  border-radius: 8px;
}

.neon-btn-pink {
  background-color: var(--neon-pink);
  color: #ffffff;
  box-shadow: 0 0 10px rgba(255, 0, 127, 0.3);
}

.neon-btn-pink:hover:not(:disabled) {
  background-color: #ffffff;
  color: var(--neon-pink);
  box-shadow: 0 0 20px var(--neon-pink), 0 0 8px var(--neon-pink);
  transform: translateY(-2px);
}

.neon-btn-pink:disabled {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.3);
  box-shadow: none;
  cursor: not-allowed;
}

.submit-status-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-align: center;
  margin-top: 0.25rem;
  transition: color 0.3s;
}

/* Premium / VIP Buttons */
.premium-btn {
  background: rgba(255, 184, 0, 0.08) !important;
  border: 1px solid var(--neon-yellow) !important;
  color: var(--neon-yellow) !important;
  text-shadow: 0 0 8px rgba(255, 184, 0, 0.4);
}

.premium-btn:hover:not(:disabled) {
  background: var(--neon-yellow) !important;
  color: #000000 !important;
  box-shadow: 0 0 20px var(--neon-yellow), 0 0 8px var(--neon-yellow) !important;
}

/* Stage Alert Banner Overlay */
.stage-alert-overlay {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 8;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  animation: stage-alert-pop 2.5s ease-out forwards;
}

.stage-alert-sub {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 6px;
  color: var(--text-secondary);
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
  margin-bottom: 0.5rem;
}

.stage-alert-main {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 4px;
  color: #ffffff;
  text-shadow: 0 0 25px var(--neon-cyan), 0 0 10px var(--neon-cyan);
}

@keyframes stage-alert-pop {
  0% {
    opacity: 0;
    transform: translate(-50%, -80%) scale(0.8);
  }
  15% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  85% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -30%) scale(1.1);
  }
}

/* Checkout Terminal styling */
.checkout-card {
  max-width: 420px;
}

.checkout-item-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--text-primary);
  margin-top: -0.5rem;
  margin-bottom: 0.25rem;
}

.checkout-item-price {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--neon-yellow);
  text-shadow: 0 0 15px rgba(255, 184, 0, 0.4);
  margin-bottom: 1.5rem;
}

.checkout-form {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.checkout-form label {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
  display: block;
}

.checkout-form input {
  font-family: monospace;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-glass);
  border-radius: 4px;
  color: var(--text-primary);
  padding: 0.4rem 0.6rem;
  width: 100%;
  font-size: 0.9rem;
}

.card-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

/* Interactive Swiper Card Mechanism */
.swiper-container {
  position: relative;
  height: 60px;
  background: #110524;
  border: 1px solid var(--border-glass);
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.swiper-track {
  position: absolute;
  top: 50%;
  left: 15px;
  right: 15px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-50%);
}

.swiper-slot {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--text-secondary);
  pointer-events: none;
  font-weight: bold;
}

.swiper-card {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 90px;
  height: 50px;
  background: linear-gradient(135deg, var(--neon-pink) 0%, var(--neon-purple) 100%);
  border-radius: 4px;
  cursor: grab;
  box-shadow: 0 0 10px rgba(255, 0, 127, 0.4);
  z-index: 2;
  transition: right 0.05s ease;
}

.swiper-card:active {
  cursor: grabbing;
}

.swiper-card::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(0, 0, 0, 0.4);
}

.checkout-status-text {
  font-size: 0.75rem;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

/* Ad Break Card Styling */
.ad-card {
  max-width: 480px;
  border-color: var(--neon-pink);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 0, 127, 0.2);
}

.ad-crt-screen {
  background-color: #07010f;
  border: 4px solid #1a082e;
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
}

.ad-crt-static {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  z-index: 1;
}

.ad-sponsor {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--neon-cyan);
  text-shadow: 0 0 5px rgba(0, 243, 255, 0.4);
  margin-bottom: 1rem;
  display: block;
}

.ad-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.ad-desc {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.ad-flavor {
  font-style: italic;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.ad-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.25rem;
}

.ad-timer {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: var(--neon-pink);
}

/* Responsive Grid Adaptation */
@media (max-width: 768px) {
  .shop-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Responsive Grid Adaptation */
@media (max-width: 768px) {
  h1.game-title {
    font-size: 2.5rem;
  }
  .hud-container {
    grid-template-columns: repeat(2, 1fr);
    top: 1rem;
    gap: 0.75rem;
  }
  .shop-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .glass-panel {
    padding: 2rem 1.5rem;
  }
  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Payment Tab Bar in Checkout */
.payment-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.pay-tab {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  cursor: pointer;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 1px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.pay-tab:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: var(--neon-cyan);
}

.pay-tab.active {
  background: rgba(0, 243, 255, 0.15);
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  box-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
}

/* Real Checkout Section */
.real-pay-desc {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
}

.real-pay-methods {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

#paypal-button-container {
  width: 100%;
  max-width: 320px;
  margin-bottom: 1rem;
  z-index: 5;
}

.or-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  margin-bottom: 1.2rem;
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.7rem;
  letter-spacing: 2px;
}

.or-separator::before,
.or-separator::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 10px;
}

#gumroadPayBtn {
  width: 100%;
  max-width: 320px;
  text-align: center;
  display: block;
}

/* Achievement Unlocked Popup */
.achievement-pop {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(15, 5, 33, 0.95);
  border: 2px solid #ffd700; /* Gold */
  border-radius: 8px;
  padding: 1rem 1.5rem;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
  z-index: 9999;
  animation: slideInPop 0.5s cubic-bezier(0.18, 0.89, 0.32, 1.28) forwards;
}

.achievement-pop.slide-out {
  animation: slideOutPop 0.5s ease forwards;
}

.ach-icon {
  font-size: 2rem;
}

.ach-text {
  display: flex;
  flex-direction: column;
}

.ach-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  color: #ffd700;
  letter-spacing: 1px;
  font-weight: bold;
}

.ach-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.5px;
}

@keyframes slideInPop {
  0% { top: -100px; opacity: 0; }
  100% { top: 20px; opacity: 1; }
}

@keyframes slideOutPop {
  0% { top: 20px; opacity: 1; }
  100% { top: -100px; opacity: 0; }
}

/* Achievements List in Settings */
.achievements-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
  max-height: 160px;
  overflow-y: auto;
  padding-right: 5px;
}

.achievements-list::-webkit-scrollbar {
  width: 4px;
}

.achievements-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

.ach-list-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.5rem 0.8rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.ach-list-item.unlocked {
  background: rgba(57, 255, 20, 0.05);
  border-color: rgba(57, 255, 20, 0.2);
}

.ach-list-item.locked {
  opacity: 0.5;
}

.ach-list-icon {
  font-size: 1.2rem;
  filter: grayscale(1);
}

.ach-list-item.unlocked .ach-list-icon {
  filter: none;
}

.ach-list-info {
  display: flex;
  flex-direction: column;
}

.ach-list-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: bold;
  color: #fff;
}

.ach-list-desc {
  font-size: 0.65rem;
  color: var(--text-secondary);
}

/* Shop Header Row & Header Back Button */
.shop-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  width: 100%;
}

.btn-back {
  background: none;
  border: 1px solid var(--border-glass);
  border-radius: 50%;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
  padding: 0;
}

.btn-back:hover {
  color: var(--neon-pink);
  border-color: var(--neon-pink);
  box-shadow: 0 0 15px rgba(255, 0, 127, 0.3);
  transform: translateX(-2px);
}

.btn-back svg {
  fill: currentColor;
}

/* Boost Indicator States */
.boost-ready {
  color: #9d00ff !important;
  text-shadow: 0 0 8px rgba(157, 0, 255, 0.6);
}

.boost-ready .indicator-glow {
  background-color: #9d00ff !important;
  box-shadow: 0 0 10px #9d00ff, 0 0 5px #9d00ff;
}

.boost-active-indicator {
  color: #39ff14 !important;
  text-shadow: 0 0 8px rgba(57, 255, 20, 0.6);
  animation: neonPulse 0.5s infinite alternate;
}

.boost-active-indicator .indicator-glow {
  background-color: #39ff14 !important;
  box-shadow: 0 0 10px #39ff14, 0 0 5px #39ff14;
}

@keyframes neonPulse {
  from { opacity: 0.7; }
  to { opacity: 1.0; }
}

/* Pilot Stats List in Settings */
.stats-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 0.5rem;
  max-height: 160px;
  overflow-y: auto;
}

.stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.stat-label {
  font-size: 0.7rem;
  color: var(--text-secondary);
}

.stat-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  font-weight: bold;
}

/* Mobile Touch Steering Overlay */
.mobile-steer-overlay {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 100;
}

.mobile-steer-overlay.hidden {
  display: none !important;
}

.touch-steer-btn {
  pointer-events: auto;
  background: rgba(15, 5, 33, 0.75);
  border: 2px solid var(--border-glass);
  border-radius: 50%;
  color: var(--text-secondary);
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  transition: all 0.2s ease;
  user-select: none;
  -webkit-user-select: none;
}

.touch-steer-btn:active {
  color: var(--neon-cyan);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
  transform: scale(0.95);
}

/* Display only on touch screens / small screens */
@media (min-width: 769px) {
  .mobile-steer-overlay {
    display: none !important;
  }
}

/* --- SPLASH INTRO SCREEN STYLES --- */

.intro-card {
  max-width: 600px;
  width: 100%;
  padding: 2.5rem;
  border: 1.5px solid var(--neon-cyan);
  box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.7),
              0 0 35px rgba(0, 243, 255, 0.25);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.splash-header-decor {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.decor-line {
  height: 1px;
  flex: 1;
}

.cyan-glow-line {
  background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
}

.decor-status {
  font-family: 'Orbitron', monospace;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-shadow: 0 0 5px rgba(0, 243, 255, 0.5);
}

.boot-sequence-container {
  background: rgba(3, 1, 6, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  text-align: left;
  font-family: 'Courier New', Courier, monospace;
  min-height: 110px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
}

.boot-line {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
  opacity: 0; /* Animated sequentially in JS */
}

.splash-branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.splash-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.8rem;
  font-weight: 900;
  letter-spacing: 6px;
  margin: 0;
  color: #fff;
  text-shadow: 0 0 10px #fff,
               0 0 20px var(--neon-pink),
               0 0 45px var(--neon-pink);
}

.splash-domain-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 0, 127, 0.04);
  border: 1px solid rgba(255, 0, 127, 0.3);
  padding: 0.35rem 1rem;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(255, 0, 127, 0.1);
  transition: all 0.3s ease;
}

.splash-domain-badge:hover {
  border-color: var(--neon-pink);
  box-shadow: 0 0 20px rgba(255, 0, 127, 0.25);
  background: rgba(255, 0, 127, 0.08);
}

.domain-glow-link {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--neon-pink);
  text-decoration: none;
  letter-spacing: 2px;
  text-shadow: 0 0 8px rgba(255, 0, 127, 0.5);
  transition: text-shadow 0.3s ease;
}

.domain-glow-link:hover {
  text-shadow: 0 0 12px rgba(255, 0, 127, 0.9), 0 0 20px rgba(255, 0, 127, 0.5);
}

.online-indicator {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 0.6rem;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background-color: #39ff14;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 8px #39ff14;
}

.pulse-dot::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #39ff14;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  animation: green-dot-pulse 1.6s infinite ease-out;
}

@keyframes green-dot-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(3.5);
    opacity: 0;
  }
}

.online-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: #39ff14;
  text-shadow: 0 0 5px rgba(57, 255, 20, 0.4);
}

.splash-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  max-width: 90%;
  align-self: center;
}

.splash-footer-decor {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 1px;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 0.75rem;
}

/* --- LOGO FLICKER EFFECTS --- */
.logo-flicker-text {
  animation: logo-text-flicker 3s infinite step-end;
}

@keyframes logo-text-flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    text-shadow: 0 0 10px #fff,
                 0 0 20px var(--neon-pink),
                 0 0 45px var(--neon-pink);
  }
  20%, 24%, 55% {
    text-shadow: none;
    color: rgba(255, 255, 255, 0.3);
  }
  22% {
    text-shadow: 0 0 5px rgba(255, 0, 127, 0.5);
  }
}

.logo-flicker-btn {
  position: relative;
  overflow: hidden;
}

.logo-flicker-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 30%;
  height: 200%;
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(30deg);
  transition: none;
  animation: btn-sheen-sweep 4s infinite linear;
}

@keyframes btn-sheen-sweep {
  0% { left: -60%; }
  15% { left: 130%; }
  100% { left: 130%; }
}

/* --- MAIN MENU DOMAIN HIGHLIGHT --- */
.menu-domain-badge {
  margin: -1.5rem 0 2rem 0;
  text-align: center;
}

.menu-domain-link {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--neon-cyan);
  text-decoration: none;
  text-shadow: 0 0 8px rgba(0, 243, 255, 0.4);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 243, 255, 0.15);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  background: rgba(0, 243, 255, 0.02);
}

.menu-domain-link:hover {
  color: #fff;
  border-color: var(--neon-cyan);
  background: rgba(0, 243, 255, 0.08);
  text-shadow: 0 0 12px var(--neon-cyan), 0 0 20px var(--neon-cyan);
}

.terminal-link {
  color: var(--neon-cyan);
  text-decoration: none;
}

.terminal-link:hover {
  text-decoration: underline;
}

/* --- VIEWPORT CORNER CROSSHAIRS --- */
.viewport-marker {
  position: absolute;
  color: var(--neon-cyan);
  font-family: 'Orbitron', monospace;
  font-size: 1.5rem;
  font-weight: 300;
  text-shadow: 0 0 10px var(--neon-cyan);
  z-index: 100;
  pointer-events: none;
  opacity: 0.6;
}
.viewport-marker.top-left { top: 20px; left: 20px; }
.viewport-marker.top-right { top: 20px; right: 20px; }
.viewport-marker.bottom-left { bottom: 20px; left: 20px; }
.viewport-marker.bottom-right { bottom: 20px; right: 20px; }

/* --- SPLASH LAYOUT SYSTEM --- */
.splash-layout {
  display: grid;
  grid-template-columns: 260px 520px 260px;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  max-width: 1150px;
  width: 100%;
}

.splash-side-panel {
  background: var(--panel-bg);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-radius: 16px;
  padding: 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 490px;
  box-sizing: border-box;
}

.splash-side-panel.left-telemetry {
  border: 1.5px solid var(--neon-cyan);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5), 
              0 0 25px rgba(0, 243, 255, 0.15);
}

.splash-side-panel.right-telemetry {
  border: 1.5px solid var(--neon-pink);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5), 
              0 0 25px rgba(255, 0, 127, 0.15);
}

.panel-header {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-align: center;
  margin: 0 0 0.25rem 0;
  text-transform: uppercase;
  text-shadow: 0 0 8px currentColor;
}

/* --- VECTOR RADAR SCREEN --- */
.radar-box {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 140px;
}

.radar-circle {
  width: 110px;
  height: 110px;
  border: 1px solid rgba(0, 243, 255, 0.3);
  border-radius: 50%;
  position: relative;
  background: radial-gradient(circle, rgba(0, 243, 255, 0.05) 0%, transparent 70%);
  box-shadow: inset 0 0 12px rgba(0, 243, 255, 0.2);
}

.radar-circle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 243, 255, 0.15);
}

.radar-circle::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(0, 243, 255, 0.15);
}

.radar-sweep {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: conic-gradient(from 0deg, var(--neon-cyan) 0deg, transparent 50deg, transparent 360deg);
  border-radius: 50%;
  animation: radar-sweep-rotate 4s infinite linear;
  pointer-events: none;
  opacity: 0.6;
}

.radar-ping {
  position: absolute;
  top: 25%;
  left: 65%;
  width: 6px;
  height: 6px;
  background: #39ff14;
  border-radius: 50%;
  box-shadow: 0 0 8px #39ff14;
  animation: radar-ping-fade 2s infinite ease-out;
}

@keyframes radar-sweep-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes radar-ping-fade {
  0% { opacity: 0; transform: scale(0.8); }
  30% { opacity: 1; transform: scale(1.2); }
  100% { opacity: 0; transform: scale(0.8); }
}

/* --- TELEMETRY GRAPHICS LOG --- */
.telemetry-log {
  flex: 1;
  background: rgba(3, 1, 6, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 0.75rem;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.72rem;
  line-height: 1.6;
  text-align: left;
  overflow-y: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.log-row {
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* --- RETRO EQUALIZER --- */
.eq-visualizer {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 8px;
  height: 130px;
  padding: 0 0.5rem;
  box-sizing: border-box;
}

.eq-bar {
  flex: 1;
  background: var(--neon-pink);
  min-height: 6px;
  border-radius: 3px 3px 0 0;
  box-shadow: 0 0 8px rgba(255, 0, 127, 0.5);
  animation: eq-bounce 1s infinite alternate ease-in-out;
}

.eq-bar:nth-child(2n) {
  background: var(--neon-cyan);
  box-shadow: 0 0 8px rgba(0, 243, 255, 0.5);
}

.eq-bar:nth-child(3n) {
  background: var(--neon-yellow);
  box-shadow: 0 0 8px rgba(255, 184, 0, 0.5);
}

.eq-bar.bar-1 { animation-duration: 0.8s; animation-delay: 0.1s; }
.eq-bar.bar-2 { animation-duration: 1.2s; animation-delay: 0.4s; }
.eq-bar.bar-3 { animation-duration: 0.9s; animation-delay: 0.2s; }
.eq-bar.bar-4 { animation-duration: 1.4s; animation-delay: 0.6s; }
.eq-bar.bar-5 { animation-duration: 0.7s; animation-delay: 0.3s; }
.eq-bar.bar-6 { animation-duration: 1.1s; animation-delay: 0.5s; }
.eq-bar.bar-7 { animation-duration: 1.3s; animation-delay: 0.1s; }
.eq-bar.bar-8 { animation-duration: 1.0s; animation-delay: 0.2s; }

@keyframes eq-bounce {
  0% { height: 10px; }
  100% { height: 100px; }
}

/* --- DASHBOARD PROGRESS GAUGES --- */
.status-gauges {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  text-align: left;
}

.gauge-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.gauge-label {
  font-family: 'Orbitron', monospace;
  font-size: 0.62rem;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.gauge-container {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
}

.gauge-fill {
  height: 100%;
  border-radius: 3px;
}

.neon-cyan-bg {
  background: var(--neon-cyan);
  box-shadow: 0 0 8px var(--neon-cyan);
}

.neon-pink-bg {
  background: var(--neon-pink);
  box-shadow: 0 0 8px var(--neon-pink);
}

.neon-yellow-bg {
  background: var(--neon-yellow);
  box-shadow: 0 0 8px var(--neon-yellow);
}

/* --- RESPONSIVE DASHBOARD LAYOUT --- */
@media (max-width: 1080px) {
  .splash-layout {
    grid-template-columns: 220px 480px 220px;
    gap: 1rem;
  }
  .splash-side-panel {
    height: 470px;
  }
  .splash-title {
    font-size: 3rem;
  }
}

@media (max-width: 950px) {
  .splash-layout {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  .splash-side-panel {
    display: none !important;
  }
  .viewport-marker {
    display: none !important;
  }
}
