/* ============================================================
   skins.com.br — Design Tokens
   Base layer: colors, typography, spacing, radii, shadows,
   glows, motion. Drop this into any prototype and use the
   custom properties directly.
   ============================================================ */

/* ---------- Fonts (WOFF2 local, self-host) ----------
   - Rajdhani  (display)   — 300/400/500/600/700
   - Inter     (body)      — 400/500/600/700
   - JetBrains Mono (data) — 400/500/600/700
*/
@font-face {
  font-family: 'Rajdhani';
  src: url('../fonts/Rajdhani-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Rajdhani';
  src: url('../fonts/Rajdhani-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Rajdhani';
  src: url('../fonts/Rajdhani-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Rajdhani';
  src: url('../fonts/Rajdhani-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Rajdhani';
  src: url('../fonts/Rajdhani-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Inter (body) */
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* JetBrains Mono (data) */
@font-face {
  font-family: 'JetBrains Mono';
  src: url('../fonts/JetBrainsMono-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('../fonts/JetBrainsMono-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('../fonts/JetBrainsMono-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('../fonts/JetBrainsMono-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


:root {
  /* =========================================================
     COLOR — Backgrounds (layered darks)
     ========================================================= */
  --color-bg-base:        #0A0A0F;
  --color-bg-surface:     #12121A;
  --color-bg-elevated:    #1A1A26;
  --color-bg-overlay:     rgba(10, 10, 15, 0.72);

  /* COLOR — Foreground / text */
  --color-fg-primary:     #F2F3F7;
  --color-fg-secondary:   #8B8D98;
  --color-fg-tertiary:    #5A5C66;
  --color-fg-on-accent:   #0A0A0F;  /* dark text on cyan buttons */

  /* COLOR — Borders & dividers */
  --color-border-subtle:  rgba(255, 255, 255, 0.06);
  --color-border-default: rgba(255, 255, 255, 0.10);
  --color-border-strong:  rgba(255, 255, 255, 0.18);
  --color-border-focus:   rgba(0, 229, 255, 0.5);

  /* =========================================================
     COLOR — Brand / Accent
     ========================================================= */
  --color-accent:         #00E5FF;  /* electric cyan, the one brand color */
  --color-accent-hover:   #33EAFF;
  --color-accent-press:   #00B8CC;
  --color-accent-muted:   rgba(0, 229, 255, 0.12);

  /* =========================================================
     COLOR — Rarity scale (load-bearing semantics, do not edit)
     ========================================================= */
  --color-rarity-consumer:    #B0C3D9;
  --color-rarity-industrial:  #5E98D9;
  --color-rarity-milspec:     #4B69FF;
  --color-rarity-restricted:  #8847FF;
  --color-rarity-classified:  #D32CE6;
  --color-rarity-covert:      #EB4B4B;
  --color-rarity-knife:       #FFD700;
  --color-rarity-knife-deep:  #CAAB05;

  /* =========================================================
     COLOR — Semantic state
     ========================================================= */
  --color-state-up:       #2EE6A6;  /* price up, success */
  --color-state-down:     #EB4B4B;  /* price down, error (= Covert) */
  --color-state-warn:     #FFD700;  /* warning (= Knife gold) */
  --color-state-info:     #00E5FF;  /* info (= brand) */

  /* =========================================================
     TYPOGRAPHY — Families
     ========================================================= */
  --font-display: 'Rajdhani', 'Chakra Petch', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', 'Space Mono', ui-monospace, monospace;

  /* TYPOGRAPHY — Scale (size / line-height / weight) */
  --text-display-size:    64px;
  --text-display-lh:      1.05;
  --text-display-weight:  700;
  --text-display-tracking: -0.02em;

  --text-h1-size:         44px;
  --text-h1-lh:           1.1;
  --text-h1-weight:       700;

  --text-h2-size:         32px;
  --text-h2-lh:           1.15;
  --text-h2-weight:       600;

  --text-h3-size:         24px;
  --text-h3-lh:           1.2;
  --text-h3-weight:       600;

  --text-h4-size:         18px;
  --text-h4-lh:           1.3;
  --text-h4-weight:       600;

  --text-body-size:       14px;
  --text-body-lh:         1.5;
  --text-body-weight:     400;

  --text-body-lg-size:    16px;
  --text-body-lg-lh:      1.55;

  --text-caption-size:    12px;
  --text-caption-lh:      1.4;
  --text-caption-weight:  500;
  --text-caption-tracking: 0.04em;

  --text-mono-size:       13px;
  --text-mono-lh:         1.4;

  --text-overline-size:   11px;
  --text-overline-lh:     1.3;
  --text-overline-weight: 600;
  --text-overline-tracking: 0.12em;  /* ALL CAPS labels */

  /* =========================================================
     SPACING — 4px base
     ========================================================= */
  --space-0: 0;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  /* =========================================================
     RADIUS
     ========================================================= */
  --radius-none: 0;
  --radius-sm:   4px;
  --radius-md:   6px;
  --radius-lg:   10px;
  --radius-xl:   16px;
  --radius-2xl:  24px;
  --radius-full: 999px;

  /* =========================================================
     SHADOWS (dark UI) — neutral elevation
     ========================================================= */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.04);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255,255,255,0.04);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255,255,255,0.06);

  /* SHADOWS — Neon glows (colored, large blur, low alpha) */
  --glow-accent:     0 0 24px rgba(0, 229, 255, 0.35), 0 0 48px rgba(0, 229, 255, 0.15);
  --glow-accent-sm:  0 0 12px rgba(0, 229, 255, 0.45);

  --glow-up:         0 0 24px rgba(46, 230, 166, 0.35);
  --glow-down:       0 0 24px rgba(235, 75, 75, 0.35);

  --glow-consumer:    0 0 20px rgba(176, 195, 217, 0.30);
  --glow-industrial:  0 0 20px rgba(94, 152, 217, 0.35);
  --glow-milspec:     0 0 20px rgba(75, 105, 255, 0.40);
  --glow-restricted:  0 0 24px rgba(136, 71, 255, 0.40);
  --glow-classified:  0 0 28px rgba(211, 44, 230, 0.40);
  --glow-covert:      0 0 28px rgba(235, 75, 75, 0.40);
  --glow-knife:       0 0 32px rgba(255, 215, 0, 0.45);

  /* Inset glow (rim light on cards) */
  --glow-inset-accent: inset 0 0 0 1px rgba(0, 229, 255, 0.3), inset 0 0 24px rgba(0, 229, 255, 0.06);

  /* =========================================================
     MOTION
     ========================================================= */
  --dur-instant: 80ms;
  --dur-fast:    120ms;
  --dur-base:    200ms;
  --dur-slow:    400ms;
  --dur-slower:  600ms;

  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-in:     cubic-bezier(0.4, 0, 1, 1);
  --ease-linear: linear;

  /* =========================================================
     SURFACE TREATMENTS
     ========================================================= */
  --blur-glass:    blur(16px) saturate(140%);
  --blur-glass-sm: blur(8px) saturate(120%);

  --gradient-hero: linear-gradient(180deg, rgba(0,229,255,0.05) 0%, rgba(0,229,255,0) 60%);
  --gradient-card: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 100%);
  --gradient-rarity-covert: linear-gradient(135deg, rgba(235,75,75,0.18) 0%, rgba(235,75,75,0) 60%);
  --gradient-rarity-classified: linear-gradient(135deg, rgba(211,44,230,0.18) 0%, rgba(211,44,230,0) 60%);
  --gradient-rarity-restricted: linear-gradient(135deg, rgba(136,71,255,0.18) 0%, rgba(136,71,255,0) 60%);
  --gradient-knife: linear-gradient(135deg, rgba(255,215,0,0.22) 0%, rgba(202,171,5,0) 60%);

  /* =========================================================
     LAYOUT
     ========================================================= */
  --layout-max-width:   1440px;
  --layout-navbar-h:    64px;
  --layout-ticker-h:    36px;
}

/* ============================================================
   SEMANTIC ELEMENT STYLES
   ============================================================ */

html, body {
  background: var(--color-bg-base);
  color: var(--color-fg-primary);
  font-family: var(--font-body);
  font-size: var(--text-body-size);
  line-height: var(--text-body-lh);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.display, .ds-display {
  font-family: var(--font-display);
  font-size: var(--text-display-size);
  line-height: var(--text-display-lh);
  font-weight: var(--text-display-weight);
  letter-spacing: var(--text-display-tracking);
  color: var(--color-fg-primary);
}

h1, .ds-h1 {
  font-family: var(--font-display);
  font-size: var(--text-h1-size);
  line-height: var(--text-h1-lh);
  font-weight: var(--text-h1-weight);
  letter-spacing: -0.01em;
  margin: 0;
}
h2, .ds-h2 {
  font-family: var(--font-display);
  font-size: var(--text-h2-size);
  line-height: var(--text-h2-lh);
  font-weight: var(--text-h2-weight);
  margin: 0;
}
h3, .ds-h3 {
  font-family: var(--font-display);
  font-size: var(--text-h3-size);
  line-height: var(--text-h3-lh);
  font-weight: var(--text-h3-weight);
  margin: 0;
}
h4, .ds-h4 {
  font-family: var(--font-body);
  font-size: var(--text-h4-size);
  line-height: var(--text-h4-lh);
  font-weight: var(--text-h4-weight);
  margin: 0;
}

p, .ds-body {
  font-size: var(--text-body-size);
  line-height: var(--text-body-lh);
  color: var(--color-fg-primary);
  margin: 0;
}
.ds-body-lg {
  font-size: var(--text-body-lg-size);
  line-height: var(--text-body-lg-lh);
}
.ds-caption {
  font-size: var(--text-caption-size);
  line-height: var(--text-caption-lh);
  font-weight: var(--text-caption-weight);
  letter-spacing: var(--text-caption-tracking);
  color: var(--color-fg-secondary);
}
.ds-overline {
  font-size: var(--text-overline-size);
  line-height: var(--text-overline-lh);
  font-weight: var(--text-overline-weight);
  letter-spacing: var(--text-overline-tracking);
  color: var(--color-fg-secondary);
  text-transform: uppercase;
}
.ds-mono, code, kbd, samp {
  font-family: var(--font-mono);
  font-size: var(--text-mono-size);
  line-height: var(--text-mono-lh);
  font-variant-numeric: tabular-nums;
}
.ds-num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}

/* Focus ring — accessibility */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* Selection */
::selection {
  background: rgba(0, 229, 255, 0.35);
  color: var(--color-fg-primary);
}

/* Scrollbar (webkit) — minimal, dark */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--color-bg-base); }
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.15); }


/* ============================================================
   hud.css — casca do "jogo": efeitos globais, boot screen,
   barra HUD, ticker, hero/menu principal, botões e seções.
   ============================================================ */

:root {
  --hud-h: 64px;
  --gold: #FFD700;
  --gold-deep: #CAAB05;
}

* { box-sizing: border-box; }
body { margin: 0; overflow-x: hidden; }

.gold { color: var(--gold); }
.up   { color: var(--color-state-up); }
.down { color: var(--color-state-down); }

/* ---------- efeitos globais ---------- */
.fx-scanlines {
  position: fixed; inset: 0; z-index: 90; pointer-events: none;
  background: repeating-linear-gradient(0deg,
    rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
}
.fx-vignette {
  position: fixed; inset: 0; z-index: 89; pointer-events: none;
  background: radial-gradient(ellipse at 50% 38%,
    transparent 55%, rgba(0, 0, 0, 0.45) 100%);
}

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

/* ---------- cantos de HUD (colchetes) ---------- */
.corners { position: absolute; inset: 0; pointer-events: none; }
.corner {
  position: absolute; width: 16px; height: 16px;
  border: 1px solid var(--color-accent); opacity: 0.85;
}
.corners-gold .corner { border-color: var(--gold); }
.c-tl { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.c-tr { top: -1px; right: -1px; border-left: none; border-bottom: none; }
.c-bl { bottom: -1px; left: -1px; border-right: none; border-top: none; }
.c-br { bottom: -1px; right: -1px; border-left: none; border-top: none; }

/* ---------- botões de jogo ---------- */
.gbtn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  font-size: 17px; line-height: 1; padding: 16px 28px;
  border: none; cursor: pointer; text-decoration: none; white-space: nowrap;
  clip-path: polygon(13px 0, 100% 0, 100% calc(100% - 13px),
    calc(100% - 13px) 100%, 0 100%, 0 13px);
  transition: transform var(--dur-fast) var(--ease-out),
    background var(--dur-fast) var(--ease-out),
    filter var(--dur-fast) var(--ease-out);
}
.gbtn:hover { transform: translateY(-2px); }
.gbtn:active { transform: translateY(0); }
.gbtn:disabled { opacity: 0.6; cursor: default; transform: none; }

.gbtn-primary {
  background: var(--color-accent); color: var(--color-fg-on-accent);
  filter: drop-shadow(0 0 18px rgba(0, 229, 255, 0.35));
}
.gbtn-primary:hover { background: var(--color-accent-hover); }

.gbtn-gold {
  background: linear-gradient(135deg, #FFE05C 0%, var(--gold) 45%, var(--gold-deep) 100%);
  color: #1A1402;
  filter: drop-shadow(0 0 18px rgba(255, 215, 0, 0.35));
}
.gbtn-gold:hover { filter: drop-shadow(0 0 26px rgba(255, 215, 0, 0.55)); }

.gbtn-ghost {
  background: rgba(0, 229, 255, 0.07); color: var(--color-accent);
  box-shadow: inset 0 0 0 1px rgba(0, 229, 255, 0.45);
}
.gbtn-ghost:hover { background: rgba(0, 229, 255, 0.14); }

.gbtn-sm { font-size: 14px; padding: 11px 18px;
  clip-path: polygon(9px 0, 100% 0, 100% calc(100% - 9px),
    calc(100% - 9px) 100%, 0 100%, 0 9px); }
.gbtn-lg { font-size: 20px; padding: 19px 40px; }

/* ---------- boot screen ---------- */
.boot {
  position: fixed; inset: 0; z-index: 200;
  background: var(--color-bg-base);
  display: grid; place-items: center; cursor: pointer;
  transition: opacity 0.45s var(--ease-out);
}
.boot.is-fading { opacity: 0; pointer-events: none; }
.boot-box {
  width: min(560px, calc(100% - 48px));
  font-family: var(--font-mono); font-size: 14px; line-height: 1.5;
  color: var(--color-accent); display: grid; gap: 10px;
}
.boot-logo {
  font-family: var(--font-display); font-weight: 700; font-size: 40px;
  letter-spacing: 0.02em; color: var(--color-fg-primary); margin-bottom: 10px;
}
.boot-logo span { color: var(--color-accent); }
.boot-line { opacity: 0.9; }
.boot-bar {
  height: 8px; border: 1px solid rgba(0, 229, 255, 0.4);
  margin-top: 14px; position: relative; overflow: hidden;
}
.boot-bar i {
  position: absolute; inset: 1px; background: var(--color-accent);
  transform-origin: left; transform: scaleX(0);
  animation: boot-fill 2s var(--ease-out) forwards;
}
@keyframes boot-fill { to { transform: scaleX(1); } }
.boot-press {
  margin-top: 14px; font-size: 12px; letter-spacing: 0.18em;
  color: var(--color-fg-secondary); text-transform: uppercase;
  animation: blink 1.1s steps(1) infinite;
}

/* ---------- barra HUD ---------- */
.hud {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--hud-h);
  background: rgba(10, 10, 15, 0.84);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  border-bottom: 1px solid var(--color-border-default);
}
.hud-inner {
  max-width: var(--layout-max-width); margin: 0 auto; height: 100%;
  padding: 0 24px; display: flex; align-items: center; gap: 28px;
}
.hud-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.hud-brand img { height: 26px; width: auto; display: block; }
.hud-ver {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em;
  color: var(--color-fg-tertiary); padding: 3px 7px;
  border: 1px solid var(--color-border-subtle);
}
.hud-nav { display: flex; gap: 2px; margin-left: auto; }
.hud-link {
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--color-fg-secondary); background: none; border: none;
  padding: 9px 14px; cursor: pointer;
  transition: color var(--dur-fast) var(--ease-out),
    text-shadow var(--dur-fast) var(--ease-out);
}
.hud-link:hover { color: var(--color-accent); text-shadow: var(--glow-accent-sm); }
.hud-right { display: flex; align-items: center; gap: 14px; }
.hud-sale {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; white-space: nowrap;
  color: var(--gold); padding: 8px 12px;
  border: 1px solid rgba(255, 215, 0, 0.35);
  background: rgba(255, 215, 0, 0.07);
}
.hud-sale-dot {
  width: 7px; height: 7px; background: var(--gold);
  animation: pulse 1.6s ease-in-out infinite;
}

/* ---------- ticker ---------- */
.tickerhud {
  height: 40px; display: flex; align-items: center; overflow: hidden;
  background: var(--color-bg-surface);
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
}
.tickerhud-track {
  display: flex; gap: 40px; width: max-content; padding-left: 24px;
  white-space: nowrap; animation: ticker-scroll 38s linear infinite;
}
@keyframes ticker-scroll { to { transform: translateX(-50%); } }
.tk {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.02em;
  color: var(--color-fg-secondary); display: inline-flex; gap: 8px;
}
.tk b { color: var(--color-fg-primary); font-weight: 600; }
.tk em { font-style: normal; }
.tk-up em { color: var(--color-state-up); }
.tk-down em { color: var(--color-state-down); }
.tk-flat em { color: var(--color-fg-tertiary); }

/* ---------- hero / menu principal ---------- */
.hero {
  position: relative; margin-top: var(--hud-h);
  min-height: calc(100vh - var(--hud-h) - 40px);
  display: grid; place-items: center; overflow: hidden;
  padding: 96px 24px 110px; cursor: crosshair;
}
.hero-glow {
  position: absolute; left: 50%; top: -10%; transform: translateX(-50%);
  width: 1100px; height: 700px; pointer-events: none;
  background: radial-gradient(ellipse at center,
    rgba(0, 229, 255, 0.13) 0%, transparent 65%);
}
.hero-floor {
  position: absolute; left: -25%; right: -25%; bottom: -140px; height: 48%;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.13) 1px, transparent 1px);
  background-size: 56px 56px;
  transform: perspective(620px) rotateX(60deg);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 45%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 45%);
}
.hero-content {
  position: relative; max-width: 1080px; text-align: center;
  display: grid; gap: 26px; justify-items: center;
}
.hero-drop {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  border: 1px solid rgba(255, 215, 0, 0.4);
  background: rgba(255, 215, 0, 0.06); padding: 11px 18px;
}
.hero-drop-star { animation: pulse 1.8s ease-in-out infinite; }
.hero-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(54px, 9.5vw, 136px); line-height: 0.94;
  letter-spacing: -0.015em; text-transform: uppercase; margin: 0;
}
.hero-title .tld {
  color: var(--color-accent);
  text-shadow: 0 0 36px rgba(0, 229, 255, 0.5);
}
.hero-sub {
  font-size: 18px; line-height: 1.65; color: var(--color-fg-secondary);
  max-width: 620px; text-wrap: pretty;
}
.hero-menu { display: grid; gap: 12px; width: min(440px, 100%); margin-top: 6px; }
.menu-btn { width: 100%; justify-content: space-between; }
.menu-key {
  font-family: var(--font-mono); font-size: 11px; font-weight: 400;
  letter-spacing: 0.1em; opacity: 0.55;
}
.hero-readout {
  display: flex; flex-wrap: wrap; gap: 14px 30px; justify-content: center;
  margin-top: 16px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--color-fg-tertiary);
}
.hero-readout b { color: var(--color-fg-primary); font-weight: 600; }
.hero-readout b.up { color: var(--color-state-up); }

/* glitch no título — só com motion liberado */
@media (prefers-reduced-motion: no-preference) {
  .glitch { position: relative; }
  .glitch::before, .glitch::after {
    content: attr(data-text); position: absolute; inset: 0;
    pointer-events: none; clip-path: inset(100% 0 0 0);
  }
  .glitch::before {
    color: var(--color-accent); transform: translateX(-3px);
    animation: glitch-a 4.2s steps(1) infinite;
  }
  .glitch::after {
    color: var(--color-rarity-restricted); transform: translateX(3px);
    animation: glitch-b 4.2s steps(1) infinite;
  }
}
@keyframes glitch-a {
  0%, 92%, 100% { clip-path: inset(100% 0 0 0); }
  93%   { clip-path: inset(12% 0 70% 0); }
  94.5% { clip-path: inset(60% 0 22% 0); }
  96%   { clip-path: inset(30% 0 55% 0); }
  97%   { clip-path: inset(100% 0 0 0); }
}
@keyframes glitch-b {
  0%, 91%, 100% { clip-path: inset(100% 0 0 0); }
  92.5% { clip-path: inset(55% 0 30% 0); }
  94%   { clip-path: inset(8% 0 80% 0); }
  95.5% { clip-path: inset(75% 0 10% 0); }
  96.5% { clip-path: inset(100% 0 0 0); }
}

/* ---------- esqueleto de seção ---------- */
.sec {
  position: relative; max-width: 1240px; margin: 0 auto;
  padding: 110px 24px 0;
}
.sec-tag {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--color-accent); margin-bottom: 16px;
}
.sec-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(34px, 4.5vw, 54px); line-height: 1.02;
  letter-spacing: -0.01em; text-transform: uppercase; margin: 0 0 14px;
}
.sec-sub {
  color: var(--color-fg-secondary); font-size: 16px; line-height: 1.65;
  max-width: 580px; margin: 0; text-wrap: pretty;
}

/* ---------- responsivo ---------- */
@media (max-width: 980px) {
  .hud-nav { display: none; }
  .hud-inner { gap: 16px; }
  .hud-right { margin-left: auto; }
}
@media (max-width: 560px) {
  .hud-sale { display: none; }
  .hud-inner { padding: 0 16px; gap: 12px; }
  .hero { padding: 72px 20px 90px; }
  .sec { padding-top: 84px; }
}


/* ============================================================
   arsenal.css — abertura de caixa (roleta) + inventário.
   ============================================================ */

/* ---------- abertura de caixa ---------- */
.case-stage {
  position: relative; margin-top: 44px;
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border-default);
}
.case-view {
  position: relative; overflow: hidden; height: 224px; cursor: crosshair;
}
.case-fade {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(90deg,
    var(--color-bg-surface) 0%, transparent 14%,
    transparent 86%, var(--color-bg-surface) 100%);
}
.case-marker {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; z-index: 3;
  background: var(--gold); box-shadow: 0 0 14px rgba(255, 215, 0, 0.85);
}
.case-marker::before, .case-marker::after {
  content: ""; position: absolute; left: 50%; width: 10px; height: 10px;
  background: var(--gold); transform: translateX(-50%) rotate(45deg);
}
.case-marker::before { top: -5px; }
.case-marker::after { bottom: -5px; }

.case-track {
  display: flex; align-items: center; height: 100%;
  will-change: transform;
}
.case-track.is-spinning {
  transition: transform 5.4s cubic-bezier(0.08, 0.8, 0.06, 1);
}
.case-card {
  flex: 0 0 160px; margin-right: 8px; height: 186px;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border-subtle);
  display: grid; grid-template-rows: 1fr auto; overflow: hidden;
}
.case-card img {
  width: auto; height: auto;
  max-width: 130px; max-height: 100px; place-self: center;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.5));
}
.case-ph {
  width: 120px; height: 88px; place-self: center;
  background: repeating-linear-gradient(45deg,
    rgba(255, 255, 255, 0.06) 0 8px, transparent 8px 16px);
}
.case-card-name {
  font-family: var(--font-mono); font-size: 11px; line-height: 1.3;
  color: var(--color-fg-secondary); padding: 9px 10px;
  border-top: 2px solid var(--tier, var(--color-border-strong));
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.case-card-domain {
  grid-template-rows: none; place-content: center; gap: 7px;
  text-align: center; padding: 12px;
  background: linear-gradient(160deg,
    rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.04) 70%);
  border: 1px solid rgba(255, 215, 0, 0.55);
  box-shadow: inset 0 0 28px rgba(255, 215, 0, 0.1);
}
.case-star { font-size: 30px; line-height: 1; color: var(--gold); }
.case-domain-name {
  font-family: var(--font-display); font-weight: 700; font-size: 19px;
  color: var(--color-fg-primary);
}
.case-domain-sub {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em;
  color: var(--gold);
}

/* controles / revelação */
.case-controls {
  border-top: 1px solid var(--color-border-default);
  padding: 26px 28px; min-height: 116px;
  display: flex; align-items: center; justify-content: center;
}
.case-idle {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px 24px;
  justify-content: center; text-align: center; flex-direction: column;
}
.case-note {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em;
  color: var(--color-fg-tertiary);
}
.case-reveal {
  width: 100%; display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 18px 28px;
  animation: reveal-in 0.5s var(--ease-out);
}
@keyframes reveal-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.case-reveal-txt { display: grid; gap: 6px; }
.case-reveal-over {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
}
.case-reveal-name {
  font-family: var(--font-display); font-weight: 700; font-size: 30px;
  line-height: 1.05; color: var(--color-fg-primary);
}
.case-reveal-name em {
  font-style: normal; font-size: 16px; font-weight: 500;
  color: var(--color-fg-secondary);
}
.case-reveal-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- inventário ---------- */
.inv-grid {
  display: grid; gap: 14px; margin-top: 44px;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.inv-card {
  position: relative; padding: 18px;
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border-subtle);
  border-top: 2px solid var(--tier, var(--color-border-strong));
  display: grid; gap: 10px; align-content: start;
  transition: transform var(--dur-base) var(--ease-out),
    border-color var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out);
}
.inv-card:hover {
  transform: translateY(-4px);
  border-color: var(--tier, var(--color-border-strong));
  box-shadow: 0 0 26px color-mix(in oklab, var(--tier, #fff) 22%, transparent),
    var(--shadow-lg);
}
.inv-tier-label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--tier, var(--color-fg-secondary));
}
.inv-img {
  height: 112px; display: grid; place-items: center;
  background: radial-gradient(ellipse at 50% 62%,
    color-mix(in oklab, var(--tier, #fff) 13%, transparent) 0%,
    transparent 72%);
}
.inv-img img {
  width: auto; height: auto;
  max-width: 86%; max-height: 102px;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.55));
}
.inv-ph {
  width: 140px; height: 88px;
  background: repeating-linear-gradient(45deg,
    rgba(255, 255, 255, 0.06) 0 8px, transparent 8px 16px);
}
.inv-name {
  font-family: var(--font-display); font-weight: 600; font-size: 19px;
  line-height: 1.15; color: var(--color-fg-primary);
}
.inv-meta {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em;
  color: var(--color-fg-tertiary);
}
.inv-row {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 4px;
}
.inv-price {
  font-family: var(--font-mono); font-size: 16px; font-weight: 600;
  color: var(--color-fg-primary); font-variant-numeric: tabular-nums;
}
.inv-delta { font-family: var(--font-mono); font-size: 12px; }

/* carta especial: o domínio */
.inv-domain {
  grid-column: span 2; padding: 26px;
  background: linear-gradient(155deg,
    rgba(255, 215, 0, 0.13) 0%, var(--color-bg-surface) 65%);
  border: 1px solid rgba(255, 215, 0, 0.45); border-top-width: 2px;
  gap: 12px;
}
.inv-domain:hover {
  border-color: rgba(255, 215, 0, 0.8);
  box-shadow: var(--glow-knife), var(--shadow-lg);
}
.inv-domain-name {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(30px, 3.6vw, 44px); line-height: 1; letter-spacing: -0.01em;
  color: var(--color-fg-primary);
}
.inv-domain-meta {
  font-size: 15px; line-height: 1.55; color: var(--color-fg-secondary);
  max-width: 380px; text-wrap: pretty;
}
.inv-domain .inv-row { margin-top: auto; gap: 16px; flex-wrap: wrap; }
.inv-domain .inv-price { color: var(--gold); font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase; }

@media (max-width: 640px) {
  .inv-domain { grid-column: span 1; }
  .case-controls { padding: 22px 18px; }
  .case-reveal-name { font-size: 24px; }
}


/* ============================================================
   mission.css — briefing da missão, atributos do item,
   negociação (boss final / formulário) e rodapé.
   ============================================================ */

/* ---------- briefing ---------- */
.mis-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  margin-top: 44px; align-items: start;
}
.mis-objectives { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.mis-obj {
  display: flex; gap: 16px; padding: 18px 20px;
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border-subtle);
  transition: border-color var(--dur-fast) var(--ease-out);
}
.mis-obj:hover { border-color: rgba(0, 229, 255, 0.35); }
.mis-check {
  flex: 0 0 auto; width: 22px; height: 22px; margin-top: 2px;
  border: 1px solid var(--color-accent); color: var(--color-accent);
  display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 13px; line-height: 1;
}
.mis-obj-body { display: grid; gap: 5px; }
.mis-obj-title {
  font-family: var(--font-display); font-weight: 700; font-size: 19px;
  letter-spacing: 0.04em; text-transform: uppercase; margin: 0;
  color: var(--color-fg-primary);
}
.mis-obj-text {
  font-size: 14px; line-height: 1.6; color: var(--color-fg-secondary);
  margin: 0; text-wrap: pretty;
}

/* painel de atributos */
.mis-panel {
  position: relative; background: var(--color-bg-surface);
  border: 1px solid var(--color-border-default);
}
.mis-panel-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 20px; border-bottom: 1px solid var(--color-border-default);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--color-fg-secondary);
}
.mis-panel-head b { color: var(--gold); font-weight: 600; }
.mis-panel-body { padding: 24px 20px; display: grid; gap: 20px; }
.mis-attr { display: grid; gap: 8px; }
.mis-attr-row {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--color-fg-secondary);
}
.mis-attr-row b { color: var(--color-fg-primary); font-weight: 600; }
.mis-bar {
  height: 9px; border: 1px solid var(--color-border-default);
  position: relative; overflow: hidden;
}
.mis-bar i {
  position: absolute; inset: 1px auto 1px 1px; width: calc(var(--v) - 2px);
  background: linear-gradient(90deg, var(--color-accent), #7FF3FF);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
  transform: scaleX(0); transform-origin: left;
}
.mis-panel.in-view .mis-bar i {
  transition: transform 1.1s var(--ease-out); transform: scaleX(1);
}
.mis-bar-gold i {
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}
.mis-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--color-border-subtle);
  border-top: 1px solid var(--color-border-default);
}
.mis-stat { background: var(--color-bg-surface); padding: 16px 20px; display: grid; gap: 4px; }
.mis-stat-v {
  font-family: var(--font-display); font-weight: 700; font-size: 26px;
  color: var(--color-accent);
}
.mis-stat-l { font-size: 12px; line-height: 1.45; color: var(--color-fg-tertiary); }

/* ---------- negociação / boss final ---------- */
/* seção centralizada + formulário ampliado (pedido do Arthur) */
.sec-center .sec-tag, .sec-center .sec-title { text-align: center; }
.sec-center .sec-sub { margin-left: auto; margin-right: auto; }
.bf-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 30px; margin: 48px auto 0; max-width: 800px;
  justify-items: center; align-items: start;
}
.bf-pitch { display: grid; gap: 22px; width: 100%; justify-items: center; text-align: center; }
.bf-check { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; justify-items: center; }
.bf-check li {
  display: flex; gap: 12px; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--color-fg-secondary);
}
.bf-check li::before {
  content: "✓"; color: var(--color-state-up);
  border: 1px solid rgba(46, 230, 166, 0.4); width: 20px; height: 20px;
  display: grid; place-items: center; font-size: 12px; flex: 0 0 auto;
}
.bf-wa-big { margin-top: 6px; justify-self: center; }

.bf-panel {
  position: relative; background: var(--color-bg-surface);
  border: 1px solid var(--color-border-default); width: 100%;
}
.bf-titlebar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 13px 20px; border-bottom: 1px solid var(--color-border-default);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--color-fg-secondary);
}
.bf-titlebar b { color: var(--color-accent); font-weight: 600; }
.bf-body { padding: 36px; display: grid; gap: 20px; text-align: left; }
.bf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.bf-field { display: grid; gap: 8px; }
.bf-field label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--color-fg-secondary);
}
.bf-req { color: var(--color-accent); }
.bf-opt { color: var(--color-fg-tertiary); text-transform: none; letter-spacing: 0; }
.bf-field input, .bf-field textarea {
  background: var(--color-bg-base);
  border: 1px solid var(--color-border-default); border-radius: 0;
  color: var(--color-fg-primary); font-family: var(--font-body);
  font-size: 16px; padding: 15px 16px; width: 100%; resize: vertical;
  transition: border-color var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out);
}
.bf-field input::placeholder, .bf-field textarea::placeholder {
  color: var(--color-fg-tertiary);
}
.bf-field input:focus, .bf-field textarea:focus {
  outline: none; border-color: var(--color-accent);
  box-shadow: var(--glow-accent-sm);
}
.bf-field .is-error { border-color: var(--color-state-down); }
.bf-err {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--color-state-down);
}
.bf-form-error {
  display: flex; gap: 10px; align-items: center;
  border: 1px solid rgba(235, 75, 75, 0.4);
  background: rgba(235, 75, 75, 0.08);
  color: var(--color-state-down); padding: 12px 14px;
  font-size: 13px;
}
.bf-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.bf-foot {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em;
  color: var(--color-fg-tertiary); margin: 0;
}
.bf-spinner {
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid rgba(10, 10, 15, 0.3); border-top-color: #0A0A0F;
  animation: bf-spin 0.7s linear infinite;
}
@keyframes bf-spin { to { transform: rotate(360deg); } }

/* sucesso */
.bf-done { padding: 56px 28px; display: grid; gap: 12px; justify-items: center; text-align: center; }
.bf-done-icon {
  width: 64px; height: 64px; display: grid; place-items: center;
  border: 1px solid rgba(46, 230, 166, 0.5); color: var(--color-state-up);
  box-shadow: var(--glow-up);
}
.bf-done-title {
  font-family: var(--font-display); font-weight: 700; font-size: 26px;
  text-transform: uppercase; margin: 0; color: var(--color-fg-primary);
}
.bf-done-sub { color: var(--color-fg-secondary); font-size: 14px; max-width: 360px; margin: 0; }
.bf-reset {
  margin-top: 8px; background: none; border: none; cursor: pointer;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--color-accent);
}
.bf-reset:hover { text-shadow: var(--glow-accent-sm); }

/* ---------- rodapé ---------- */
.gfoot {
  margin-top: 120px; border-top: 1px solid var(--color-border-default);
  background: var(--color-bg-surface);
}
.gfoot-inner {
  max-width: 1240px; margin: 0 auto; padding: 28px 24px;
  display: flex; flex-wrap: wrap; gap: 14px 32px;
  align-items: center; justify-content: space-between;
}
.gfoot-brand { display: flex; align-items: center; gap: 10px; }
.gfoot-brand img { height: 22px; display: block; }
.gfoot-brand span {
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  letter-spacing: 0.04em; color: var(--color-fg-primary);
}
.gfoot-mid {
  font-size: 13px; color: var(--color-fg-secondary);
}
.gfoot-build {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em;
  color: var(--color-fg-tertiary); text-transform: uppercase;
}

/* ---------- responsivo ---------- */
@media (max-width: 920px) {
  .mis-grid, .bf-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 560px) {
  .bf-row { grid-template-columns: 1fr; }
  .bf-body { padding: 20px; }
  .mis-stats { grid-template-columns: 1fr; }
}


/* ============================================================
   fps.css — camada FPS: crosshair, tiros, hitmarkers e
   HUD de munição.
   ============================================================ */

/* cursor nativo some; inputs mantêm o caret pra digitar */
.fps-on, .fps-on * { cursor: none !important; }
.fps-on input, .fps-on textarea, .fps-on select { cursor: text !important; }

/* ---------- crosshair ---------- */
.xhair {
  position: fixed; left: 0; top: 0; z-index: 300; pointer-events: none;
  transform: translate(-200px, -200px);
  --gap: 7px;
}
.xh-dot {
  position: absolute; left: -1.5px; top: -1.5px; width: 3px; height: 3px;
  background: var(--color-accent); box-shadow: 0 0 6px rgba(0, 229, 255, 0.9);
}
.xh-l {
  position: absolute; background: var(--color-accent);
  box-shadow: 0 0 6px rgba(0, 229, 255, 0.7);
  transition: transform 90ms var(--ease-out), background 120ms var(--ease-out);
}
.xh-t  { left: -1px; top: calc(-1 * var(--gap) - 11px); width: 2px; height: 11px; }
.xh-b  { left: -1px; top: var(--gap); width: 2px; height: 11px; }
.xh-lf { top: -1px; left: calc(-1 * var(--gap) - 11px); width: 11px; height: 2px; }
.xh-rt { top: -1px; left: var(--gap); width: 11px; height: 2px; }
.xhair.is-firing .xh-t  { transform: translateY(-5px); }
.xhair.is-firing .xh-b  { transform: translateY(5px); }
.xhair.is-firing .xh-lf { transform: translateX(-5px); }
.xhair.is-firing .xh-rt { transform: translateX(5px); }
.xhair.is-hot .xh-l, .xhair.is-hot .xh-dot {
  background: var(--gold); box-shadow: 0 0 8px rgba(255, 215, 0, 0.85);
}

/* ---------- buraco de bala (some sozinho após 2s) ---------- */
.bullet-hole {
  position: fixed; z-index: 290; pointer-events: none;
  width: 14px; height: 14px; border-radius: 50%;
  background: radial-gradient(circle,
    rgba(0, 0, 0, 0.95) 0%, rgba(18, 18, 24, 0.9) 35%,
    rgba(130, 135, 145, 0.35) 55%, transparent 72%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.10), 0 0 10px rgba(0, 0, 0, 0.6);
  animation: hole-fade 2s linear forwards;
}
@keyframes hole-fade {
  0%, 72% { opacity: 1; }
  100%    { opacity: 0; }
}
.bullet-hole::before, .bullet-hole::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  background: rgba(185, 195, 205, 0.32);
}
.bullet-hole::before { width: 24px; height: 1px; transform: translate(-50%, -50%) rotate(26deg); }
.bullet-hole::after  { width: 1px; height: 21px; transform: translate(-50%, -50%) rotate(42deg); }

/* ---------- hitmarker ---------- */
.hitmark {
  position: fixed; z-index: 299; pointer-events: none; width: 0; height: 0;
  animation: hit-fade 0.45s var(--ease-out) forwards;
}
.hitmark::before, .hitmark::after {
  content: ""; position: absolute; left: -9px; top: -1px;
  width: 18px; height: 2px; background: #FFFFFF;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}
.hitmark::before { transform: rotate(45deg); }
.hitmark::after  { transform: rotate(-45deg); }
@keyframes hit-fade {
  from { opacity: 1; transform: scale(1); }
  to   { opacity: 0; transform: scale(1.7); }
}

/* ---------- HUD de munição ---------- */

/* ---------- HUD de munição ---------- */
.fps-ammo {
  position: fixed; left: 24px; bottom: 20px; z-index: 150;
  pointer-events: none; display: grid; gap: 4px;
  font-family: var(--font-mono);
}
.fps-ammo-label {
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--color-fg-tertiary);
}
.fps-ammo-count {
  font-family: var(--font-display); font-weight: 700; font-size: 34px;
  line-height: 1; color: var(--color-accent);
  text-shadow: var(--glow-accent-sm);
}
.fps-ammo-count.is-reloading {
  font-size: 17px; color: var(--gold); text-shadow: none;
  animation: blink 0.5s steps(1) infinite;
}
.fps-ammo-hint {
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-fg-tertiary);
}

/* sem mouse de verdade / telas pequenas → mira + HUD somem;
   o impacto (hitmarker + furo) continua, pois no mobile o tiro roda no toque (dentro do hero) */
@media (max-width: 900px), (pointer: coarse) {
  .fps-ammo, .xhair { display: none; }
}



/* ============================================================
   build.css — ajustes da versão estática (tudo local, leve)
   ============================================================ */

/* hero: texto "DOMINIO PREMIUM A VENDA" aumentado */
.hero-drop {
  font-size: clamp(15px, 2.25vw, 25px);
  letter-spacing: 0.2em;
  padding: 14px 28px; gap: 14px; line-height: 1.1;
}
.hero-drop-star { font-size: 1.15em; }
@media (max-width: 560px) {
  .hero-drop { font-size: 13.5px; letter-spacing: 0.14em; padding: 12px 16px; }
}

/* finish swatch — preview local da skin (substitui imagem externa da Steam) */
.skin-finish {
  position: relative; align-self: center; place-self: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.5), inset 0 0 30px rgba(0, 0, 0, 0.3);
  clip-path: polygon(9px 0, 100% 0, 100% calc(100% - 9px),
    calc(100% - 9px) 100%, 0 100%, 0 9px);
}
.skin-finish::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.26) 0%, rgba(255, 255, 255, 0) 38%,
    rgba(0, 0, 0, 0.3) 100%);
}
.inv-img .skin-finish { width: 88%; height: 96px; }
.case-media {
  align-self: stretch; justify-self: stretch;
  display: grid; place-items: center; overflow: hidden; min-height: 0;
}
.case-card .skin-finish { width: 132px; height: 96px; }

/* respeita motion reduzido nas barras de atributo (já são animadas via .in-view) */
@media (prefers-reduced-motion: reduce) {
  .case-track.is-spinning { transition: none; }
}
