/* ==========================================================================
   DIDAR // ASUS TUF GAMING A15 - DESIGN SYSTEM & STYLESHEET
   Aesthetics: Military-Mecha Titanium, Tactical HUD, Double-Bezel, Aura Sync
   ========================================================================== */

:root {
  /* TUF Brand Palette */
  --tuf-amber: #f59e0b;
  --tuf-amber-glow: rgba(245, 158, 11, 0.35);
  --tuf-amber-light: #fbbf24;
  --tuf-cyan: #00f0ff;
  --tuf-cyan-glow: rgba(0, 240, 255, 0.3);
  --tuf-red: #ff334b;
  --tuf-green: #10b981;

  /* Surfaces & Titanium Chasses */
  --bg-deep: #07090e;
  --bg-hull: #0c1017;
  --surface-outer: rgba(20, 26, 38, 0.75);
  --surface-inner: #111622;
  --surface-active: #171f30;
  --surface-inset: #090c12;

  /* Borders & Hairlines */
  --border-outer: rgba(255, 255, 255, 0.08);
  --border-inner: rgba(245, 158, 11, 0.2);
  --border-subtle: rgba(255, 255, 255, 0.04);
  --bevel-highlight: inset 0 1px 1px rgba(255, 255, 255, 0.12);

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-tactical: 'Orbitron', 'Rajdhani', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Easing & Physics */
  --ease-spring: cubic-bezier(0.32, 0.72, 0, 1);
  --aura-current-color: #f59e0b;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  background-color: var(--bg-deep);
  font-family: var(--font-sans);
  color: #e2e8f0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  background: radial-gradient(circle at 50% 0%, #151c2c 0%, var(--bg-deep) 65%);
}

/* Background Atmospheric Noise & Glows */
.bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.025;
  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");
}

.bg-grid-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: linear-gradient(rgba(245, 158, 11, 0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(245, 158, 11, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 20%, transparent 80%);
}

.ambient-flare {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(140px);
  z-index: 1;
}

.amber-flare {
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: rgba(245, 158, 11, 0.12);
}

.cyan-flare {
  bottom: 10%;
  right: -100px;
  width: 500px;
  height: 500px;
  background: rgba(0, 240, 255, 0.06);
}

/* Typography Utilities */
.text-amber { color: var(--tuf-amber) !important; }
.text-cyan { color: var(--tuf-cyan) !important; }
.text-green { color: var(--tuf-green) !important; }
.text-red { color: var(--tuf-red) !important; }

/* Global Container */
.page-container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================================================
   DOUBLE-BEZEL COMPONENT SYSTEM (Agency Architecture)
   ========================================================================== */
.double-bezel-outer {
  position: relative;
  background: var(--surface-outer);
  border: 1px solid var(--border-outer);
  border-radius: 1.75rem;
  padding: 0.5rem;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.6),
              0 0 0 1px rgba(255, 255, 255, 0.02);
  transition: transform 0.4s var(--ease-spring), border-color 0.4s ease;
}

.double-bezel-inner {
  position: relative;
  background: var(--surface-inner);
  border-radius: calc(1.75rem - 0.5rem);
  padding: 2rem;
  box-shadow: var(--bevel-highlight);
  border: 1px solid rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.double-bezel-outer:hover {
  border-color: rgba(245, 158, 11, 0.3);
}

/* ==========================================================================
   TACTICAL HUD HEADER
   ========================================================================== */
.hud-header {
  position: sticky;
  top: 1.25rem;
  z-index: 100;
  max-width: 1240px;
  margin: 0 auto 2.5rem;
  padding: 0 1.5rem;
}

.hud-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: rgba(12, 16, 23, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  padding: 0.65rem 1.25rem 0.65rem 1.5rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), var(--bevel-highlight);
}

.hud-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.tuf-logo-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.35);
  padding: 0.35rem 0.65rem;
  border-radius: 9999px;
}

.tuf-icon {
  width: 18px;
  height: 18px;
  color: var(--tuf-amber);
}

.brand-sub {
  font-family: var(--font-tactical);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--tuf-amber);
}

.brand-title-wrap {
  display: flex;
  flex-direction: column;
}

.operator-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: #64748b;
  line-height: 1;
}

.operator-name {
  font-family: var(--font-tactical);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #f8fafc;
  line-height: 1.1;
}

.accent-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--tuf-amber);
  border-radius: 50%;
  margin: 0 2px;
}

/* Telemetry Pill in Nav */
.hud-telemetry-pill {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.telemetry-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.telemetry-item .label {
  color: #64748b;
}

.telemetry-item .value {
  color: #cbd5e1;
  font-weight: 600;
}

.telemetry-separator {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.1);
}

.pulse-led {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--tuf-green);
  border-radius: 50%;
  margin-right: 4px;
  box-shadow: 0 0 8px var(--tuf-green);
  animation: pulseLed 2s infinite ease-in-out;
}

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

/* Header Action Buttons */
.hud-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hud-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  padding: 0.45rem 0.9rem;
  border-radius: 9999px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s var(--ease-spring);
}

.hud-btn-icon {
  width: 14px;
  height: 14px;
}

.hud-btn:hover {
  background: rgba(245, 158, 11, 0.15);
  border-color: var(--tuf-amber);
  color: var(--tuf-amber);
}

.hud-btn.muted {
  opacity: 0.6;
}

/* Nested CTA Button */
.hud-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #f8fafc;
  color: #07090e;
  font-family: var(--font-tactical);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding: 0.4rem 0.5rem 0.4rem 1.1rem;
  border-radius: 9999px;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
  transition: all 0.3s var(--ease-spring);
}

.btn-icon-bubble {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: #07090e;
  color: #f8fafc;
  border-radius: 50%;
  transition: transform 0.3s var(--ease-spring);
}

.btn-icon-bubble svg {
  width: 13px;
  height: 13px;
}

.hud-cta-btn:hover {
  background: var(--tuf-amber);
  color: #07090e;
  transform: translateY(-1px);
}

.hud-cta-btn:hover .btn-icon-bubble {
  transform: translate(2px, -2px);
  background: #07090e;
  color: var(--tuf-amber);
}

/* Audio Toast */
.sound-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(12, 16, 23, 0.92);
  border: 1px solid var(--tuf-amber);
  color: #f8fafc;
  padding: 0.65rem 1.25rem;
  border-radius: 9999px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  transition: opacity 0.4s var(--ease-spring), transform 0.4s var(--ease-spring);
}

.sound-toast.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
}

.toast-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--tuf-amber);
  box-shadow: 0 0 10px var(--tuf-amber);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 2rem 0 5rem;
}

.hero-header-block {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem;
}

.eyebrow-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: var(--tuf-amber);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
}

.chip-dot {
  width: 6px;
  height: 6px;
  background: var(--tuf-amber);
  border-radius: 50%;
}

.hero-title {
  font-family: var(--font-tactical);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #f8fafc;
  margin-bottom: 1.25rem;
}

.highlight-mecha {
  color: var(--tuf-amber);
  text-shadow: 0 0 35px var(--tuf-amber-glow);
}

.hero-desc {
  font-size: 1.1rem;
  color: #94a3b8;
  max-width: 680px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

/* Mode Selector Switcher Bar */
.profile-mode-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.mode-bar-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: #64748b;
}

.mode-buttons-group {
  display: inline-flex;
  gap: 0.5rem;
  background: rgba(10, 14, 21, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  padding: 0.4rem;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.5);
}

.mode-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: none;
  color: #94a3b8;
  padding: 0.5rem 1.15rem;
  border-radius: 9999px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease-spring);
}

.mode-name {
  font-family: var(--font-tactical);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.mode-detail {
  display: none;
}

.mode-pill:hover {
  color: #f8fafc;
}

.mode-pill.active {
  background: var(--tuf-amber);
  color: #07090e;
  box-shadow: 0 4px 15px var(--tuf-amber-glow);
}

/* ==========================================================================
   LAPTOP STAGE & 3D HARDWARE SIMULATOR
   ========================================================================== */
.laptop-stage-wrapper {
  margin: 0 auto;
}

.laptop-status-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #64748b;
}

.system-code {
  letter-spacing: 0.08em;
  color: #94a3b8;
}

.temp-badge {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  color: #cbd5e1;
}

/* Virtual Laptop Chassis */
.virtual-laptop {
  display: flex;
  flex-direction: column;
  align-items: center;
  perspective: 1200px;
  margin: 1.5rem auto 2.5rem;
  max-width: 820px;
}

/* Screen Portion */
.laptop-screen-frame {
  width: 100%;
  background: #141923;
  border: 4px solid #202736;
  border-radius: 1rem 1rem 0 0;
  padding: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
}

.screen-webcam {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding-bottom: 4px;
}

.cam-lens {
  width: 5px;
  height: 5px;
  background: #00f0ff;
  border-radius: 50%;
  box-shadow: 0 0 6px #00f0ff;
}

.cam-mic {
  width: 3px;
  height: 3px;
  background: #475569;
  border-radius: 50%;
}

.screen-display {
  position: relative;
  background: #090c12;
  border-radius: 0.4rem;
  aspect-ratio: 16 / 9.5;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.9);
}

.display-grid-overlay {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0.15) 1px,
    transparent 1px,
    transparent 2px
  );
  pointer-events: none;
  z-index: 2;
}

.screen-gui {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: radial-gradient(circle at center, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
}

.screen-hud-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.tuf-mecha-text {
  color: var(--tuf-amber);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.fps-counter-badge {
  background: rgba(0, 240, 255, 0.12);
  border: 1px solid rgba(0, 240, 255, 0.3);
  color: var(--tuf-cyan);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-weight: 700;
}

.screen-center-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.shield-svg {
  width: 76px;
  height: 76px;
  color: var(--tuf-amber);
  filter: drop-shadow(0 0 15px var(--tuf-amber-glow));
  animation: pulseShield 4s infinite ease-in-out;
}

@keyframes pulseShield {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.user-greeting {
  text-align: center;
  margin-top: 0.75rem;
}

.operator-salute {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: #64748b;
}

.salute-name {
  font-family: var(--font-tactical);
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #f8fafc;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.screen-hud-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 0.5rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
}

.hud-stat-box {
  display: flex;
  flex-direction: column;
}

.hud-stat-box .s-label {
  color: #64748b;
  font-size: 0.58rem;
}

.hud-stat-box .s-val {
  font-weight: 700;
  color: #cbd5e1;
}

.screen-chin {
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.asus-logo-text {
  font-family: var(--font-tactical);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: #475569;
}

/* Laptop Hinge */
.laptop-hinge {
  width: 95%;
  height: 12px;
  background: #111622;
  border: 1px solid #202736;
  border-top: none;
  border-bottom: none;
  display: flex;
  justify-content: space-between;
}

.hinge-vent {
  width: 25%;
  height: 100%;
  background: repeating-linear-gradient(
    90deg,
    #090c12,
    #090c12 3px,
    #171f30 3px,
    #171f30 6px
  );
}

/* Laptop Keyboard Deck */
.laptop-deck {
  width: 106%;
  background: linear-gradient(180deg, #171d2b 0%, #101520 100%);
  border: 2px solid #283247;
  border-radius: 0 0 1.25rem 1.25rem;
  padding: 1.5rem 1.5rem 1.25rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9),
              inset 0 1px 1px rgba(255, 255, 255, 0.15);
  position: relative;
}

/* Keyboard Area & RGB */
.keyboard-area {
  background: #090c13;
  border-radius: 8px;
  padding: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.kb-row {
  display: flex;
  gap: 4px;
  width: 100%;
}

.key {
  flex: 1;
  height: 22px;
  background: #161c28;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: #94a3b8;
  user-select: none;
  transition: all 0.3s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.key.wasd-key {
  background: rgba(245, 158, 11, 0.25);
  border-color: var(--tuf-amber);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 0 8px var(--aura-current-color);
}

.key.space {
  flex: 5;
}

.key.shift-l, .key.shift-r {
  flex: 2;
}

.key.tab, .key.caps, .key.enter, .key.bsp {
  flex: 1.5;
}

.arrow-cluster {
  display: grid;
  grid-template-areas: 
    ". up ."
    "left down right";
  gap: 2px;
  flex: 1.5;
}

.arr-u { grid-area: up; height: 10px; font-size: 0.4rem; }
.arr-l { grid-area: left; height: 10px; font-size: 0.4rem; }
.arr-d { grid-area: down; height: 10px; font-size: 0.4rem; }
.arr-r { grid-area: right; height: 10px; font-size: 0.4rem; }

/* Dynamic RGB Aura lighting classes applied to keys */
.keyboard-area.aura-breathing .key {
  animation: auraBreathe 3s infinite ease-in-out;
}

.keyboard-area.aura-rainbow .key {
  animation: auraRainbow 4s infinite linear;
}

.keyboard-area.aura-strobing .key {
  animation: auraStrobe 0.8s infinite steps(2);
}

.keyboard-area.aura-static .key {
  border-bottom-color: var(--aura-current-color);
  box-shadow: 0 2px 6px var(--aura-current-color);
}

@keyframes auraBreathe {
  0%, 100% {
    box-shadow: 0 0 2px transparent;
    border-color: rgba(255, 255, 255, 0.08);
  }
  50% {
    box-shadow: 0 0 8px var(--aura-current-color);
    border-color: var(--aura-current-color);
    color: #fff;
  }
}

@keyframes auraRainbow {
  0% { box-shadow: 0 0 8px #ff0055; border-color: #ff0055; }
  25% { box-shadow: 0 0 8px #f59e0b; border-color: #f59e0b; }
  50% { box-shadow: 0 0 8px #00ff88; border-color: #00ff88; }
  75% { box-shadow: 0 0 8px #00f0ff; border-color: #00f0ff; }
  100% { box-shadow: 0 0 8px #ff0055; border-color: #ff0055; }
}

@keyframes auraStrobe {
  0%, 49% { box-shadow: 0 0 10px var(--aura-current-color); border-color: var(--aura-current-color); }
  50%, 100% { box-shadow: none; border-color: rgba(255,255,255,0.05); }
}

/* Touchpad */
.touchpad-area {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.touchpad-surface {
  width: 140px;
  height: 60px;
  background: #121824;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tuf-crosshair-touch {
  width: 16px;
  height: 16px;
  border: 1px dashed rgba(245, 158, 11, 0.3);
  border-radius: 50%;
}

/* AURA SYNC QUICK CONTROLLER */
.aura-control-panel {
  background: rgba(10, 14, 21, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  margin-top: 1rem;
}

.aura-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.aura-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-tactical);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #f8fafc;
}

.aura-icon {
  width: 16px;
  height: 16px;
  color: var(--tuf-amber);
}

.aura-state-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--tuf-amber);
}

.aura-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.color-swatches {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.color-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c);
  border: 2px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s ease;
}

.color-dot:hover {
  transform: scale(1.15);
}

.color-dot.active {
  transform: scale(1.25);
  border-color: #fff;
  box-shadow: 0 0 10px var(--c);
}

.custom-color-picker-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

#custom-aura-color {
  width: 26px;
  height: 26px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  background: transparent;
}

.custom-color-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #94a3b8;
  cursor: pointer;
}

.effect-buttons {
  display: flex;
  gap: 0.4rem;
  background: rgba(0, 0, 0, 0.4);
  padding: 0.25rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.effect-btn {
  background: transparent;
  border: none;
  color: #94a3b8;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.effect-btn:hover {
  color: #fff;
}

.effect-btn.active {
  background: rgba(245, 158, 11, 0.2);
  color: var(--tuf-amber);
  font-weight: 700;
}

/* ==========================================================================
   SECTION COMMONS (Headings, Grids)
   ========================================================================== */
.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section-title {
  font-family: var(--font-tactical);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #f8fafc;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1rem;
  color: #94a3b8;
}

/* ==========================================================================
   SECTION 2: SPECS GRID
   ========================================================================== */
.specs-section {
  padding: 5rem 0;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.spec-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.spec-icon-box {
  width: 44px;
  height: 44px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tuf-amber);
}

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

.spec-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: #64748b;
  font-weight: 700;
}

.spec-name {
  font-family: var(--font-tactical);
  font-size: 1.35rem;
  font-weight: 800;
  color: #f8fafc;
  margin-bottom: 0.4rem;
}

.spec-sub {
  font-size: 0.88rem;
  color: #94a3b8;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.spec-telemetry {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 1rem;
}

.telemetry-bar-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.telemetry-labels {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #64748b;
}

.t-progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 9999px;
  overflow: hidden;
}

.t-fill {
  height: 100%;
  background: var(--tuf-amber);
  border-radius: 9999px;
  transition: width 0.6s var(--ease-spring);
}

.t-fill.bar-temp {
  background: linear-gradient(90deg, #10b981 0%, #f59e0b 60%, #ff334b 100%);
}

.spec-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 0.9rem;
}

.mini-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ms-num {
  font-family: var(--font-tactical);
  font-size: 1.4rem;
  font-weight: 800;
  color: #f8fafc;
}

.ms-num small {
  font-size: 0.75rem;
  color: var(--tuf-amber);
  margin-left: 2px;
}

.ms-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: #64748b;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   SECTION 3: BENCHMARK & FPS CALCULATOR
   ========================================================================== */
.benchmark-section {
  padding: 2rem 0 5rem;
}

.benchmark-controls-bar {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  gap: 1.5rem;
  background: rgba(10, 14, 21, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 1.25rem;
  margin-bottom: 2rem;
}

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

.ctrl-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: #64748b;
}

.tuf-select {
  background: #141923;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #f8fafc;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.tuf-select:focus {
  border-color: var(--tuf-amber);
}

.dlss-toggle-wrap {
  display: flex;
  background: #141923;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 0.2rem;
}

.dlss-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: #94a3b8;
  padding: 0.5rem;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.dlss-btn.active {
  background: var(--tuf-amber);
  color: #07090e;
}

.res-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #141923;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 0.6rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: #cbd5e1;
}

.benchmark-result-stage {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 2.5rem;
  align-items: center;
}

.fps-meter-container {
  display: flex;
  justify-content: center;
}

.fps-dial-outer {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: conic-gradient(from 180deg, var(--tuf-amber) 0%, #10b981 65%, #00f0ff 100%);
  padding: 8px;
  box-shadow: 0 0 35px var(--tuf-amber-glow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fps-dial-core {
  width: 100%;
  height: 100%;
  background: #0d111a;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
}

.fps-big-number {
  font-family: var(--font-tactical);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  color: #f8fafc;
  text-shadow: 0 0 25px rgba(245, 158, 11, 0.5);
}

.fps-unit-text {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: #64748b;
  margin-bottom: 0.4rem;
}

.fps-smoothness-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.game-meta-breakdown {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.meta-row {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.95rem;
}

.m-label {
  color: #94a3b8;
}

.m-val {
  font-family: var(--font-mono);
  font-weight: 700;
  color: #f8fafc;
}

.perf-bar-box {
  margin-top: 0.5rem;
}

.perf-bar-track {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 9999px;
  overflow: hidden;
  margin-bottom: 0.4rem;
}

.perf-bar-active {
  height: 100%;
  background: linear-gradient(90deg, #f59e0b, #00f0ff);
  border-radius: 9999px;
  transition: width 0.5s var(--ease-spring);
}

.perf-scale-marks {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: #475569;
}

/* ==========================================================================
   SECTION 4: GAME VAULT
   ========================================================================== */
.vault-section {
  padding: 5rem 0;
}

.games-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.game-item-inner {
  padding: 0 !important;
}

.game-top-banner {
  height: 110px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.9rem;
  background-size: cover;
  background-position: center;
  position: relative;
}

.game-top-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(17, 22, 34, 1) 100%);
}

.game-top-banner > * {
  position: relative;
  z-index: 2;
}

.cs2-banner {
  background: linear-gradient(135deg, #e65c00 0%, #f9d423 100%);
}

.cp-banner {
  background: linear-gradient(135deg, #fcee0a 0%, #00f0ff 100%);
}

.dota-banner {
  background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%);
}

.gta-banner {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.game-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  background: rgba(0, 0, 0, 0.7);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  color: #f8fafc;
}

.game-fps-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  color: var(--tuf-amber);
}

.game-card-body {
  padding: 1.25rem;
}

.game-title {
  font-family: var(--font-tactical);
  font-size: 1.2rem;
  font-weight: 800;
  color: #f8fafc;
  margin-bottom: 0.25rem;
}

.game-role {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-bottom: 1rem;
}

.game-role strong {
  color: #cbd5e1;
}

.game-stats-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  background: rgba(0, 0, 0, 0.3);
  padding: 0.75rem;
  border-radius: 8px;
}

.g-stat {
  display: flex;
  justify-content: space-between;
}

.g-k { color: #64748b; }
.g-v { font-weight: 600; color: #f8fafc; }

/* ==========================================================================
   SECTION 5: TUF REFLEX SPEED BENCHMARK
   ========================================================================== */
.reflex-section {
  padding: 2rem 0 5rem;
}

.reflex-arena-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.reflex-interactive-box {
  background: #0d121c;
  border: 2px dashed rgba(245, 158, 11, 0.35);
  border-radius: 1.25rem;
  padding: 3.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
  user-select: none;
  min-height: 320px;
}

.reflex-interactive-box.waiting {
  background: #7f1d1d;
  border-color: #ef4444;
}

.reflex-interactive-box.ready {
  background: #065f46;
  border-color: #10b981;
  box-shadow: 0 0 40px rgba(16, 185, 129, 0.5);
}

.reflex-interactive-box.too-early {
  background: #450a0a;
  border-color: #dc2626;
}

.reflex-icon {
  font-size: 2.75rem;
  margin-bottom: 0.75rem;
}

.reflex-headline {
  font-family: var(--font-tactical);
  font-size: 1.6rem;
  font-weight: 900;
  color: #f8fafc;
  margin-bottom: 0.5rem;
}

.reflex-instructions {
  font-size: 0.95rem;
  color: #94a3b8;
  max-width: 400px;
}

.reflex-ms-result {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-top: 1rem;
}

.reflex-ms-result.hidden {
  display: none;
}

.ms-big {
  font-family: var(--font-tactical);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--tuf-amber);
  line-height: 1;
}

.ms-label {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  color: #cbd5e1;
}

.reflex-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.record-box {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 1rem;
  padding: 1.25rem;
  text-align: center;
}

.r-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: #94a3b8;
}

.r-val-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem;
  margin: 0.25rem 0;
}

.r-num {
  font-family: var(--font-tactical);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--tuf-amber);
  line-height: 1;
}

.r-unit {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: #cbd5e1;
}

.r-rank-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: #f8fafc;
}

.reflex-history-wrap {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 1rem;
  flex-grow: 1;
}

.hist-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: #64748b;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.6rem;
}

.hist-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

.hist-row {
  display: flex;
  justify-content: space-between;
  padding: 0.3rem 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 4px;
}

.hist-empty {
  color: #475569;
  font-size: 0.75rem;
  font-style: italic;
}

.reflex-tip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: #94a3b8;
  background: rgba(0, 0, 0, 0.2);
  padding: 0.75rem;
  border-radius: 8px;
}

.tip-icon {
  width: 28px;
  height: 28px;
  color: var(--tuf-cyan);
  flex-shrink: 0;
}

/* ==========================================================================
   SECTION 6: SQUAD CONNECT & SIGNAL DISPATCHER
   ========================================================================== */
.connect-section {
  padding: 5rem 0;
}

.connect-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 1.75rem;
}

.tag-box-title {
  font-family: var(--font-tactical);
  font-size: 1.2rem;
  font-weight: 800;
  color: #f8fafc;
  margin-bottom: 1.25rem;
}

.tag-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
  margin-bottom: 0.9rem;
  transition: all 0.25s var(--ease-spring);
}

.tag-row:hover {
  border-color: rgba(245, 158, 11, 0.35);
  background: rgba(245, 158, 11, 0.05);
}

.tag-info {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.tag-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tag-icon-wrap svg {
  width: 20px;
  height: 20px;
}

.discord-color { background: rgba(88, 101, 242, 0.15); color: #5865F2; }
.steam-color { background: rgba(0, 174, 239, 0.15); color: #00aeef; }
.tg-color { background: rgba(36, 161, 222, 0.15); color: #24A1DE; }

.tag-meta {
  display: flex;
  flex-direction: column;
}

.tag-network {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: #64748b;
}

.tag-val {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 700;
  color: #f8fafc;
}

.copy-action-btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.copy-action-btn svg {
  width: 13px;
  height: 13px;
}

.copy-action-btn:hover {
  background: var(--tuf-amber);
  border-color: var(--tuf-amber);
  color: #07090e;
}

.copy-action-btn.copied {
  background: var(--tuf-green);
  border-color: var(--tuf-green);
  color: #07090e;
}

/* Tactical Signal Form */
.form-desc {
  font-size: 0.88rem;
  color: #94a3b8;
  margin-bottom: 1.25rem;
}

.tactical-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.quick-presets-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.preset-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: #64748b;
}

.presets-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.preset-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.preset-chip:hover {
  color: #fff;
  border-color: var(--tuf-amber);
}

.preset-chip.active {
  background: rgba(245, 158, 11, 0.18);
  border-color: var(--tuf-amber);
  color: var(--tuf-amber);
  font-weight: 700;
}

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

.field-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: #94a3b8;
}

.tuf-input, .tuf-textarea {
  background: #090c13;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #f8fafc;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.tuf-input:focus, .tuf-textarea:focus {
  border-color: var(--tuf-amber);
}

.transmit-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: var(--tuf-amber);
  color: #07090e;
  border: none;
  font-family: var(--font-tactical);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0.6rem 0.6rem 0.6rem 1.4rem;
  border-radius: 9999px;
  cursor: pointer;
  box-shadow: 0 4px 20px var(--tuf-amber-glow);
  transition: all 0.3s var(--ease-spring);
}

.transmit-cta-btn:hover {
  transform: translateY(-2px);
  background: #ffb703;
}

.signal-alert-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid var(--tuf-green);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-top: 1.25rem;
  animation: fadeInAlert 0.4s var(--ease-spring);
}

.signal-alert-box.hidden {
  display: none;
}

@keyframes fadeInAlert {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.alert-radar-pulse {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--tuf-green);
  box-shadow: 0 0 15px var(--tuf-green);
  flex-shrink: 0;
}

.alert-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.alert-head {
  font-family: var(--font-tactical);
  font-size: 0.95rem;
  font-weight: 800;
  color: #f8fafc;
}

#alert-summary {
  font-size: 0.8rem;
  color: #cbd5e1;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.hud-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #080b11;
  padding: 3rem 0 2.5rem;
  margin-top: 4rem;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-tactical);
  font-size: 1rem;
  font-weight: 800;
  color: var(--tuf-amber);
  margin-bottom: 0.5rem;
}

.f-icon {
  width: 18px;
  height: 18px;
}

.footer-motto {
  font-size: 0.85rem;
  color: #64748b;
  max-width: 480px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.footer-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.f-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
  color: #94a3b8;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #475569;
}

/* ==========================================================================
   RESPONSIVE DESIGN (Universal Mobile Collapse)
   ========================================================================== */
@media (max-width: 1024px) {
  .specs-grid {
    grid-template-columns: 1fr;
  }

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

  .benchmark-controls-bar {
    grid-template-columns: 1fr;
  }

  .benchmark-result-stage {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hud-inner {
    padding: 0.5rem 1rem;
  }

  .hud-telemetry-pill {
    display: none;
  }

  .hero-section {
    padding: 1rem 0 3rem;
  }

  .virtual-laptop {
    width: 100%;
  }

  .laptop-deck {
    padding: 0.75rem 0.5rem;
  }

  .kb-row {
    display: none;
  }

  .kb-row.q-row, .kb-row.a-row {
    display: flex;
  }

  .games-cards-grid {
    grid-template-columns: 1fr;
  }

  .reflex-arena-grid {
    grid-template-columns: 1fr;
  }

  .connect-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-right {
    align-items: flex-start;
  }
}
