/* ==========================================================================
   ChromaBoy Advance - Fictional Retro Handheld Console Styling
   Complete tactile industrial design, cartridge shelf, authentic LCD filters,
   and mechanical hardware feedback.
   ========================================================================== */

:root {
  --desk-bg: #1e1b18;
  --desk-wood: #2a241f;
  --desk-mat: #1a2228;
  --gold-accent: #f59e0b;
  --screen-width: 480px;
  --screen-height: 320px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  user-select: none;
  -webkit-user-select: none;
}

body {
  background: radial-gradient(circle at 50% 30%, #29241e 0%, #151310 100%);
  color: #f8fafc;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, monospace;
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

/* Desk Surface Background */
.desk-surface {
  width: 100%;
  min-height: 100vh;
  padding: 24px 16px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  background-image: 
    radial-gradient(ellipse at 50% 0%, rgba(251, 191, 36, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
}

/* Top Navigation / Brand Header */
.top-nav {
  width: 100%;
  max-width: 1100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}

.brand-badge {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-title {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: #38bdf8;
  text-shadow: 0 0 12px rgba(56, 189, 248, 0.4);
}

.brand-model {
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  color: #cbd5e1;
  font-family: monospace;
}

.hardware-customizer {
  display: flex;
  align-items: center;
  gap: 16px;
}

.customizer-label {
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 600;
}

.shell-pickers {
  display: flex;
  gap: 6px;
}

.shell-picker-btn {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.shell-picker-btn:hover {
  transform: scale(1.15);
  border-color: #ffffff;
}

.shell-picker-btn[data-color="atomic-purple"] { background: radial-gradient(circle, #7e22ce, #3b0764); }
.shell-picker-btn[data-color="indigo"] { background: radial-gradient(circle, #3b82f6, #1d4ed8); }
.shell-picker-btn[data-color="arctic-white"] { background: radial-gradient(circle, #f8fafc, #94a3b8); }
.shell-picker-btn[data-color="classic-retro"] { background: radial-gradient(circle, #e2e8f0, #cbd5e1); }

/* Main Workspace Setup: Console & Shelf side by side */
.workspace-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  position: relative;
}

/* ==========================================================================
   THE HANDHELD CONSOLE UNIT ("ChromaBoy Advance")
   ========================================================================== */

.console-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* Top Cartridge Slot protrusion visual */
.top-cartridge-slot {
  width: 260px;
  height: 48px;
  background: #0f172a;
  border-radius: 12px 12px 0 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-bottom: none;
  box-shadow: inset 0 8px 12px rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.slot-opening {
  width: 210px;
  height: 12px;
  background: #020617;
  border-radius: 4px 4px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 3px 6px #000000;
}

.slotted-cartridge {
  position: absolute;
  bottom: 0;
  width: 190px;
  height: 52px;
  border-radius: 8px 8px 0 0;
  padding: 6px 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  font-family: monospace;
  font-weight: bold;
  font-size: 0.7rem;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-bottom: none;
  box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.5), inset 0 2px 4px rgba(255, 255, 255, 0.3);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.slotted-cartridge.hidden {
  transform: translateY(48px);
  opacity: 0;
  pointer-events: none;
}

.slotted-cartridge.visible {
  transform: translateY(-8px);
  opacity: 1;
  pointer-events: auto;
}

.slotted-cartridge.courtroom {
  background: linear-gradient(180deg, #b45309 0%, #78350f 100%);
  border-color: #f59e0b;
}

.slotted-cartridge.starfall {
  background: linear-gradient(180deg, #0284c7 0%, #0369a1 100%);
  border-color: #38bdf8;
}

.slotted-cartridge.slider {
  background: linear-gradient(180deg, #059669 0%, #047857 100%);
  border-color: #10b981;
}

.slotted-cartridge .cart-title {
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Console Main Body Shell */
.console-body {
  width: 680px;
  height: 380px;
  border-radius: 42px;
  position: relative;
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.8),
    0 10px 20px rgba(0, 0, 0, 0.5),
    inset 0 4px 6px rgba(255, 255, 255, 0.3),
    inset 0 -6px 12px rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 28px;
  transition: background 0.3s ease;
}

/* Shell Color Themes */
.console-body[data-shell="atomic-purple"] {
  background: radial-gradient(ellipse at 50% 30%, #581c87 0%, #3b0764 70%, #2e0854 100%);
  border: 4px solid #7e22ce;
}

.console-body[data-shell="indigo"] {
  background: radial-gradient(ellipse at 50% 30%, #2563eb 0%, #1e40af 70%, #172554 100%);
  border: 4px solid #3b82f6;
}

.console-body[data-shell="arctic-white"] {
  background: radial-gradient(ellipse at 50% 30%, #f8fafc 0%, #e2e8f0 70%, #cbd5e1 100%);
  border: 4px solid #ffffff;
}

.console-body[data-shell="classic-retro"] {
  background: radial-gradient(ellipse at 50% 30%, #e2e8f0 0%, #cbd5e1 70%, #94a3b8 100%);
  border: 4px solid #cbd5e1;
}

/* L & R Shoulder Bumpers */
.shoulder-bumper {
  position: absolute;
  top: -12px;
  width: 100px;
  height: 24px;
  background: linear-gradient(180deg, #475569 0%, #1e293b 100%);
  border-radius: 12px 12px 0 0;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-bottom: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: monospace;
  font-size: 0.8rem;
  font-weight: 900;
  color: #94a3b8;
  box-shadow: 0 -3px 6px rgba(0, 0, 0, 0.4), inset 0 2px 3px rgba(255, 255, 255, 0.3);
  transition: transform 0.1s ease;
}

.shoulder-bumper.left { left: 40px; border-radius: 18px 6px 0 0; }
.shoulder-bumper.right { right: 40px; border-radius: 6px 18px 0 0; }

.shoulder-bumper:active, .shoulder-bumper.pressed {
  transform: translateY(3px);
  background: #1e293b;
}

/* Hardware Eject Button on top edge */
.hardware-eject {
  position: absolute;
  top: -10px;
  right: 170px;
  background: #334155;
  border: 1px solid #64748b;
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 0.65rem;
  font-family: monospace;
  font-weight: bold;
  color: #cbd5e1;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: background 0.15s ease;
}

.hardware-eject:hover {
  background: #475569;
  color: #f43f5e;
}

/* Power Switch on Console */
.power-control {
  position: absolute;
  top: 14px;
  right: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.power-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.6);
  font-family: monospace;
}

.power-switch-track {
  width: 44px;
  height: 20px;
  background: #0f172a;
  border-radius: 10px;
  padding: 2px;
  cursor: pointer;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.7);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.power-switch-knob {
  width: 18px;
  height: 14px;
  background: linear-gradient(180deg, #94a3b8 0%, #475569 100%);
  border-radius: 7px;
  position: absolute;
  top: 2px;
  left: 3px;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.power-switch-track[data-state="on"] .power-switch-knob {
  transform: translateX(19px);
  background: linear-gradient(180deg, #10b981 0%, #047857 100%);
}

/* Bi-Color Power LED */
.power-led-indicator {
  position: absolute;
  top: 40px;
  left: 172px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.power-led {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #450a0a;
  border: 1px solid rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.2);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.power-led.on {
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e, 0 0 18px rgba(34, 197, 94, 0.8), inset 0 1px 3px #86efac;
}

.power-led-label {
  font-size: 0.55rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.5);
  font-family: monospace;
}

/* Central Screen Bezel */
.screen-housing {
  width: 360px;
  height: 270px;
  background: #0f172a;
  border-radius: 18px;
  padding: 14px 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 
    inset 0 4px 8px rgba(0, 0, 0, 0.8),
    0 2px 4px rgba(255, 255, 255, 0.1);
  border: 2px solid #1e293b;
  position: relative;
}

.screen-branding {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  padding: 0 4px;
}

.screen-title {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: #94a3b8;
  font-family: monospace;
}

.screen-subtext {
  font-size: 0.6rem;
  font-weight: bold;
  color: #ef4444;
}

/* Screen Wrapper & Canvas */
.screen-wrapper {
  width: 320px;
  height: 213px;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: inset 0 0 16px rgba(0, 0, 0, 0.8);
  background: #000000;
}

#screen-canvas {
  width: 320px;
  height: 213px;
  display: block;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

/* Glass Reflection Layer */
.screen-glass {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.03) 40%,
    transparent 60%
  );
  border-radius: 6px;
  z-index: 5;
}

/* Display Filters (LCD subpixel, CRT scanlines, etc.) */
.screen-wrapper[data-filter="lcd"]::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: 
    linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%),
    linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  background-size: 100% 2px, 3px 100%;
  pointer-events: none;
  z-index: 4;
}

.screen-wrapper[data-filter="crt"]::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.4) 50%);
  background-size: 100% 3px;
  pointer-events: none;
  z-index: 4;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.6);
}

.screen-wrapper[data-filter="gb"]::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(139, 172, 15, 0.45);
  mix-blend-mode: color;
  pointer-events: none;
  z-index: 4;
}

/* Left Controller Wing (D-Pad) */
.left-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.dpad-container {
  width: 100px;
  height: 100px;
  position: relative;
}

.dpad-cross {
  width: 100%;
  height: 100%;
  position: relative;
}

.dpad-btn {
  position: absolute;
  background: linear-gradient(180deg, #334155 0%, #1e293b 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5), inset 0 1px 2px rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #94a3b8;
  font-size: 0.8rem;
  transition: transform 0.05s ease, background 0.05s ease;
}

.dpad-btn.up {
  top: 0; left: 34px; width: 32px; height: 36px;
  border-radius: 6px 6px 0 0;
}
.dpad-btn.down {
  bottom: 0; left: 34px; width: 32px; height: 36px;
  border-radius: 0 0 6px 6px;
}
.dpad-btn.left {
  top: 34px; left: 0; width: 36px; height: 32px;
  border-radius: 6px 0 0 6px;
}
.dpad-btn.right {
  top: 34px; right: 0; width: 36px; height: 32px;
  border-radius: 0 6px 6px 0;
}

.dpad-center {
  position: absolute;
  top: 34px;
  left: 34px;
  width: 32px;
  height: 32px;
  background: #1e293b;
  border-radius: 50%;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.8);
  pointer-events: none;
}

.dpad-btn:active, .dpad-btn.pressed {
  transform: scale(0.95);
  background: #0f172a;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.9);
}

/* Right Controller Wing (A and B Face Buttons) */
.right-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.action-buttons {
  width: 110px;
  height: 90px;
  position: relative;
  transform: rotate(-18deg);
}

.face-btn {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: monospace;
  font-weight: 900;
  font-size: 1.1rem;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.25);
  box-shadow: 
    0 6px 10px rgba(0, 0, 0, 0.5),
    inset 0 3px 4px rgba(255, 255, 255, 0.4),
    inset 0 -3px 6px rgba(0, 0, 0, 0.5);
  transition: transform 0.05s ease, box-shadow 0.05s ease;
}

.face-btn.btn-b {
  left: 8px;
  bottom: 8px;
  background: radial-gradient(circle at 35% 35%, #9333ea, #581c87);
}

.face-btn.btn-a {
  right: 8px;
  top: 8px;
  background: radial-gradient(circle at 35% 35%, #ef4444, #991b1b);
}

.face-btn:active, .face-btn.pressed {
  transform: translateY(3px) scale(0.96);
  box-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.6),
    inset 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* Speaker Grille */
.speaker-grille {
  display: grid;
  grid-template-columns: repeat(5, 5px);
  gap: 6px;
  margin-top: 10px;
}

.speaker-hole {
  width: 5px;
  height: 5px;
  background: #020617;
  border-radius: 50%;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.8);
}

/* Bottom Center Controls (Start, Select, Dials) */
.center-bottom-controls {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
}

.pill-btn-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.pill-btn {
  width: 32px;
  height: 10px;
  background: #334155;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  transform: rotate(-25deg);
  transition: transform 0.05s ease, background 0.05s ease;
}

.pill-btn:active, .pill-btn.pressed {
  transform: rotate(-25deg) translateY(2px);
  background: #0f172a;
}

.pill-label {
  font-size: 0.6rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.6);
  font-family: monospace;
}

/* Secondary Hardware Controls Bar below screen */
.screen-extras-bar {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.hardware-toggle-btn {
  background: #1e293b;
  border: 1px solid #475569;
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 0.6rem;
  font-family: monospace;
  font-weight: bold;
  color: #cbd5e1;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: background 0.15s ease;
}

.hardware-toggle-btn:hover {
  background: #334155;
  color: #38bdf8;
}

/* Volume Wheel dial on side of console */
.volume-control-box {
  position: absolute;
  bottom: 24px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.volume-slider {
  width: 60px;
  accent-color: #38bdf8;
  cursor: pointer;
}

/* ==========================================================================
   THE CARTRIDGE SHELF (Beside the Console)
   ========================================================================== */

.cartridge-shelf-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  max-width: 360px;
}

.shelf-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 8px;
}

.shelf-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: #f59e0b;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.shelf-hint {
  font-size: 0.65rem;
  color: #94a3b8;
}

.shelf-rack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

/* Individual Cartridge on the Shelf */
.shelf-cartridge {
  width: 100%;
  height: 84px;
  border-radius: 10px;
  background: #1e293b;
  border: 2px solid #334155;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
  display: flex;
  padding: 10px;
  gap: 12px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.shelf-cartridge:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
}

.shelf-cartridge.is-slotted {
  opacity: 0.45;
  filter: grayscale(0.5);
  border-color: #475569;
}

.shelf-cartridge.is-slotted::after {
  content: "[ CURRENTLY IN CONSOLE ]";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.85);
  color: #38bdf8;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: bold;
  letter-spacing: 0.5px;
}

/* Cartridge Label Stickers */
.cart-art {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cart-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.cart-name {
  font-size: 0.85rem;
  font-weight: 800;
  color: #f8fafc;
  line-height: 1.2;
}

.cart-genre {
  font-size: 0.65rem;
  color: #94a3b8;
  font-weight: 600;
}

.cart-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-serial {
  font-size: 0.55rem;
  color: #64748b;
  font-family: monospace;
}

.cart-seal {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle, #f59e0b, #b45309);
  border: 1px solid #fef08a;
}

/* Individual Cartridge Specific Styles */
.shelf-cartridge[data-id="courtroom"] .cart-art {
  background: linear-gradient(135deg, #78350f, #b45309);
  color: #fde047;
}

.shelf-cartridge[data-id="starfall"] .cart-art {
  background: linear-gradient(135deg, #0369a1, #0284c7);
  color: #38bdf8;
}

.shelf-cartridge[data-id="slider"] .cart-art {
  background: linear-gradient(135deg, #047857, #059669);
  color: #6ee7b7;
}

/* Keyboard Controls Guide Card */
.keyboard-guide-card {
  width: 100%;
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 12px;
  margin-top: 8px;
}

.guide-title {
  font-size: 0.7rem;
  font-weight: 800;
  color: #38bdf8;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.guide-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  color: #cbd5e1;
}

.kbd-badge {
  background: #0f172a;
  border: 1px solid #475569;
  border-radius: 3px;
  padding: 1px 5px;
  font-family: monospace;
  font-weight: bold;
  color: #f8fafc;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .console-body {
    width: 95vw;
    height: auto;
    padding: 16px 12px 30px;
    flex-direction: column;
    gap: 16px;
  }

  .left-controls, .right-controls {
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
  }

  .center-bottom-controls {
    position: static;
    transform: none;
    margin-top: 12px;
  }

  .power-led-indicator {
    top: 20px;
    left: 20px;
  }
}
