/* ═══════════════════════════════════════════════════════════
   UWUSAI VALORANT TOURNAMENT — SHARED STYLES
   Used by every page. Page-specific styles stay in their own file.
   ═══════════════════════════════════════════════════════════ */

:root {
  --vred: #ff4655;
  --vred2: #bd3944;
  --vdark: #0f1923;
  --vdark2: #1a2530;
  --vdark3: #232f3b;
  --vborder: #2a3a4a;
  --vwhite: #ece8e1;
  --vcream: #ece8e1;
  --vgold: #c89b3c;
  --vgold2: #f0c060;
  --vmuted: #6b7f8e;
  --vgreen: #00f5a0;
  --vblue: #00d4ff;
  --vpurple: #c8a8ff;
  --vorange: #ff9f43;
  --vtext: #d4cdc6;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--vdark);
  color: var(--vtext);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Grid + radial background pattern */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,70,85,0.025) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,70,85,0.015) 40px);
  pointer-events: none; z-index: 0;
}
body::after {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(255,70,85,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(200,155,60,0.05) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}

/* ─── HEADER ─── */
.site-hdr {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 28px; height: 56px;
  background: var(--vdark);
  border-bottom: 2px solid var(--vred);
  position: relative;
  z-index: 10;
}
.site-hdr::after {
  content: ''; position: absolute; bottom: -5px; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--vred), transparent 60%); opacity: 0.3;
}
.logo {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem;
  letter-spacing: 5px; color: var(--vcream);
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.logo .slash { color: var(--vred); }
.logo-sub { font-family: 'DM Mono', monospace; font-size: 0.5rem; letter-spacing: 3px; color: var(--vmuted); display: block; line-height: 1; }

.hdr-nav { display: flex; gap: 4px; }
.hdr-nav a {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem; letter-spacing: 2.5px;
  color: var(--vmuted);
  padding: 8px 12px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.15s;
  border-bottom: 2px solid transparent;
}
.hdr-nav a:hover { color: var(--vcream); border-bottom-color: var(--vred); }
.hdr-nav a.active { color: var(--vred); border-bottom-color: var(--vred); }

.hdr-right { display: flex; align-items: center; gap: 14px; }

/* Admin toggle slider */
.admin-toggle {
  display: flex; align-items: center; gap: 8px;
  cursor: pointer;
  user-select: none;
}
.admin-toggle input { display: none; }
.admin-toggle-track {
  width: 38px; height: 18px;
  background: var(--vdark3);
  border: 1px solid var(--vborder);
  position: relative;
  transition: border-color 0.15s, background 0.15s;
  clip-path: polygon(4px 0, 100% 0, calc(100% - 4px) 100%, 0 100%);
}
.admin-toggle-thumb {
  position: absolute;
  top: 2px; left: 2px;
  width: 12px; height: 12px;
  background: var(--vmuted);
  transition: left 0.18s cubic-bezier(.22,.68,0,1.2), background 0.18s;
}
.admin-toggle input:checked + .admin-toggle-track { background: rgba(255,70,85,0.18); border-color: var(--vred); }
.admin-toggle input:checked + .admin-toggle-track .admin-toggle-thumb { left: 22px; background: var(--vred); }
.admin-toggle-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem; letter-spacing: 3px;
  color: var(--vmuted);
  transition: color 0.15s;
}
.admin-toggle input:checked ~ .admin-toggle-label { color: var(--vred); }

/* ─── BUTTONS ─── */
.btn {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem; letter-spacing: 3px;
  padding: 10px 22px; border: none; cursor: pointer;
  transition: all 0.15s; text-transform: uppercase;
}
.btn-red { background: var(--vred); color: #fff; clip-path: polygon(0 0,calc(100% - 8px) 0,100% 8px,100% 100%,8px 100%,0 calc(100% - 8px)); }
.btn-red:hover { background: #ff6070; transform: translateY(-1px); }
.btn-gold { background: var(--vgold); color: #0f1923; clip-path: polygon(0 0,calc(100% - 8px) 0,100% 8px,100% 100%,8px 100%,0 calc(100% - 8px)); }
.btn-gold:hover { background: var(--vgold2); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--vmuted); border: 1px solid var(--vborder); font-size: 0.72rem; }
.btn-ghost:hover { border-color: var(--vred); color: var(--vred); }
.btn-green { background: var(--vgreen); color: #0f1923; clip-path: polygon(0 0,calc(100% - 8px) 0,100% 8px,100% 100%,8px 100%,0 calc(100% - 8px)); }
.btn-green:hover { background: #33ffb5; }
.btn-outline { background: transparent; color: var(--vred); border: 1px solid var(--vred); }
.btn-outline:hover { background: var(--vred); color: #fff; }
.btn:disabled { opacity: 0.3; cursor: not-allowed; transform: none !important; }

/* ─── INPUTS ─── */
input, select, textarea {
  background: var(--vdark2); border: 1px solid var(--vborder);
  color: var(--vcream); font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 600; padding: 10px 14px;
  outline: none; transition: border-color 0.15s; width: 100%; letter-spacing: 1px;
}
input:focus, select:focus, textarea:focus { border-color: var(--vred); box-shadow: 0 0 0 1px rgba(255,70,85,0.2); }
select option { background: var(--vdark2); }
label {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--vmuted);
  display: block; margin-bottom: 5px;
}
.field { margin-bottom: 12px; }

/* ─── COMMON LAYOUT ─── */
.page {
  position: relative; z-index: 1;
  padding: 28px;
  max-width: 1280px;
  margin: 0 auto;
}
.page-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem; letter-spacing: 6px;
  color: var(--vcream);
  margin-bottom: 22px;
  display: flex; align-items: center; gap: 14px;
}
.page-title::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, var(--vborder), transparent); }
.page-title .acc { color: var(--vred); }

.sec-hdr {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem; letter-spacing: 5px;
  color: var(--vcream); margin-bottom: 12px;
  display: flex; align-items: center; gap: 12px;
}
.sec-hdr::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, var(--vborder), transparent); }
.sec-hdr .acc { color: var(--vred); }

.empty-msg {
  padding: 60px 28px; text-align: center;
  color: var(--vmuted);
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem; letter-spacing: 3px;
  border: 1px dashed var(--vborder);
  margin: 20px 0;
}

.placeholder-note {
  padding: 30px 22px; text-align: center;
  background: rgba(255,70,85,0.04);
  border: 1px dashed rgba(255,70,85,0.3);
  border-left: 3px solid var(--vred);
  color: var(--vmuted);
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem; letter-spacing: 2px;
  line-height: 2.4;
}
.placeholder-note strong { color: var(--vred); }

/* ─── MAIN MENU (index.html) ─── */
.main-menu { position: relative; z-index: 1; padding: 24px 28px; max-width: 1320px; margin: 0 auto; }

/* HERO — tactical heads-up display */
.menu-hero {
  position: relative;
  padding: 38px 40px 32px;
  background:
    linear-gradient(140deg, rgba(255,70,85,0.06), transparent 50%, rgba(200,155,60,0.03)),
    var(--vdark2);
  border: 1px solid var(--vborder);
  overflow: hidden;
  margin-bottom: 22px;
  min-height: 300px;
}
.menu-hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--vred), var(--vgold), transparent 70%);
  z-index: 2;
}
/* Dotted texture overlay */
.menu-hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,70,85,0.06) 1px, transparent 1px);
  background-size: 14px 14px;
  pointer-events: none;
  z-index: 0;
}

/* Corner brackets */
.hero-corner {
  position: absolute;
  width: 18px; height: 18px;
  border-color: var(--vred);
  border-style: solid;
  border-width: 0;
  z-index: 2;
}
.hero-corner.tl { top: 14px; left: 14px;     border-top-width: 2px; border-left-width: 2px; }
.hero-corner.tr { top: 14px; right: 14px;    border-top-width: 2px; border-right-width: 2px; }
.hero-corner.bl { bottom: 14px; left: 14px;  border-bottom-width: 2px; border-left-width: 2px; }
.hero-corner.br { bottom: 14px; right: 14px; border-bottom-width: 2px; border-right-width: 2px; }

/* Slow horizontal scan effect */
.hero-scanline {
  position: absolute; top: 0; left: -50%;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,70,85,0.06), transparent);
  animation: heroScan 9s linear infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes heroScan {
  0%   { left: -50%; }
  100% { left: 150%; }
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 3px;
  color: var(--vmuted);
  margin-bottom: 22px;
  position: relative; z-index: 2;
}
.hero-meta-tag { display: inline-flex; align-items: center; gap: 6px; }
.hero-meta-tag .status-dot {
  display: inline-block;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--vgreen);
  box-shadow: 0 0 8px var(--vgreen);
  animation: dotBlink 1.4s ease-in-out infinite;
}
.hero-meta-tag.idle .status-dot { background: var(--vmuted); box-shadow: none; animation: none; }
.hero-meta-tag.live .status-dot { background: var(--vred); box-shadow: 0 0 10px var(--vred); }
.hero-meta-tag .status-label { color: var(--vgreen); }
.hero-meta-tag.idle .status-label { color: var(--vmuted); }
.hero-meta-tag.live .status-label { color: var(--vred); }
@keyframes dotBlink {
  0%,100% { opacity: 1; }
  50%     { opacity: 0.35; }
}

.menu-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4.2rem;
  letter-spacing: 12px;
  color: var(--vcream);
  line-height: 1;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.menu-hero-title .accent { color: var(--vred); }

.hero-subtitle {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 5px;
  color: var(--vred);
  margin-bottom: 22px;
  position: relative; z-index: 2;
}

.hero-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--vred) 0%, var(--vborder) 30%, transparent 100%);
  margin-bottom: 20px;
  position: relative; z-index: 2;
}

/* TACTICAL READOUT — 4-cell stats grid */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  position: relative; z-index: 2;
}
.hero-stat {
  background: rgba(15,25,35,0.55);
  border: 1px solid var(--vborder);
  border-left: 2px solid var(--vred);
  padding: 9px 14px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.hero-stat:hover { border-left-color: var(--vgold); transform: translateY(-2px); }
.hero-stat::after {
  content: ''; position: absolute; top: 4px; right: 6px;
  width: 4px; height: 4px;
  background: var(--vred);
}
.hero-stat-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.54rem;
  letter-spacing: 2.5px;
  color: var(--vmuted);
  margin-bottom: 4px;
}
.hero-stat-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 2.5px;
  color: var(--vcream);
  line-height: 1.05;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero-stat-val.red   { color: var(--vred); }
.hero-stat-val.gold  { color: var(--vgold); }
.hero-stat-val.green { color: var(--vgreen); }
.hero-stat-val.muted { color: var(--vmuted); }

/* SECTION BAR — between hero and grid */
.menu-section-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 3px;
  color: var(--vmuted);
}
.menu-section-bar::before {
  content: ''; width: 16px; height: 1px; background: var(--vred);
}
.menu-section-bar::after {
  content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, var(--vborder), transparent);
}
.menu-section-bar .accent { color: var(--vred); }

/* ─── MENU BUTTON GRID ─── */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}

.menu-btn {
  --btn-color: var(--vred);
  position: relative;
  display: flex; flex-direction: column;
  aspect-ratio: 1 / 1.08;
  padding: 18px 18px 18px;
  background: linear-gradient(155deg, var(--vdark2), var(--vdark) 80%);
  border: 1px solid var(--vborder);
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.28s cubic-bezier(.22,.68,0,1.2),
              border-color 0.2s, box-shadow 0.25s;
  cursor: pointer;
  isolation: isolate;
}
/* Top accent strip */
.menu-btn::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--btn-color);
  transition: height 0.22s, box-shadow 0.22s;
  z-index: 2;
}
/* Diamond background motif */
.menu-btn::after {
  content: ''; position: absolute; bottom: -60px; right: -60px;
  width: 160px; height: 160px;
  background: var(--btn-color);
  opacity: 0.06;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  transition: opacity 0.3s, transform 0.5s;
  z-index: 0;
}
.menu-btn:hover {
  border-color: var(--btn-color);
  transform: translateY(-5px);
  box-shadow:
    0 14px 38px rgba(0,0,0,0.55),
    inset 0 0 0 1px var(--btn-color);
}
.menu-btn:hover::before { height: 6px; box-shadow: 0 0 20px var(--btn-color); }
.menu-btn:hover::after  { opacity: 0.20; transform: rotate(20deg) scale(1.3); }
.menu-btn:active        { transform: translateY(-1px); transition: transform 0.05s; }

.menu-btn-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.menu-btn-num {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 2.5px;
  color: var(--vmuted);
}
.menu-btn-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.5rem;
  letter-spacing: 2px;
  color: var(--btn-color);
  padding: 3px 7px;
  border: 1px solid var(--btn-color);
  background: rgba(15,25,35,0.65);
}
.menu-btn-tag.is-live {
  display: inline-flex; align-items: center; gap: 5px;
}
.menu-btn-tag.is-live::before {
  content: ''; width: 6px; height: 6px;
  background: var(--vred);
  border-radius: 50%;
  animation: tagPulse 1.2s ease-in-out infinite;
}
@keyframes tagPulse {
  0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,70,85,0.7); }
  50%     { opacity: 0.55; box-shadow: 0 0 0 5px rgba(255,70,85,0); }
}

.menu-btn-icon {
  display: flex; justify-content: center; align-items: center;
  flex: 1;
  position: relative; z-index: 1;
  margin: 6px 0;
}
.menu-btn-icon svg {
  width: 52px; height: 52px;
  stroke: var(--btn-color);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: square;
  stroke-linejoin: miter;
  transition: transform 0.45s cubic-bezier(.22,.68,0,1.2), filter 0.25s;
  filter: drop-shadow(0 0 0 transparent);
}
.menu-btn:hover .menu-btn-icon svg {
  transform: scale(1.18) rotate(-4deg);
  filter: drop-shadow(0 0 16px var(--btn-color));
}

.menu-btn-bottom {
  position: relative; z-index: 1;
  padding-top: 6px;
  border-top: 1px solid var(--vborder);
}
.menu-btn-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 4px;
  color: var(--vcream);
  line-height: 1;
  margin-bottom: 4px;
}
.menu-btn-sub {
  font-family: 'DM Mono', monospace;
  font-size: 0.54rem;
  letter-spacing: 1.5px;
  color: var(--vmuted);
  line-height: 1.4;
}

.menu-btn-arrow {
  position: absolute;
  bottom: 16px; right: 18px;
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  color: var(--vmuted);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.2s, transform 0.25s, color 0.25s;
  z-index: 2;
}
.menu-btn:hover .menu-btn-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--btn-color);
}

/* Per-button accent colors */
.menu-btn[data-c="rules"]    { --btn-color: var(--vred); }
.menu-btn[data-c="dates"]    { --btn-color: var(--vgold); }
.menu-btn[data-c="prize"]    { --btn-color: var(--vgreen); }
.menu-btn[data-c="auction"]  { --btn-color: var(--vred); }
.menu-btn[data-c="teams"]    { --btn-color: var(--vblue); }
.menu-btn[data-c="brackets"] { --btn-color: var(--vpurple); }
.menu-btn[data-c="stats"]    { --btn-color: var(--vorange); }
.menu-btn[data-c="winners"]  { --btn-color: var(--vgold); }

/* BOTTOM STATUS BAR */
.bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 10px 18px;
  background: var(--vdark2);
  border: 1px solid var(--vborder);
  border-left: 2px solid var(--vred);
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 2.5px;
  color: var(--vmuted);
  margin-top: 8px;
}
.bb-item { white-space: nowrap; display: inline-flex; align-items: center; gap: 5px; }
.bb-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--vgreen);
  box-shadow: 0 0 6px var(--vgreen);
  animation: dotBlink 1.4s ease-in-out infinite;
}
.bb-item .bb-val { color: var(--vcream); }
.bb-item .bb-val.gold { color: var(--vgold); }
.bb-item .bb-val.red { color: var(--vred); }
.bb-item .bb-val.green { color: var(--vgreen); }

/* ─── ADMIN TOURNAMENT MANAGEMENT ─── */
.admin-only { display: none; }
body.admin-mode .admin-only { display: block; }
body.admin-mode .public-only { display: none; }

.t-mgmt-panel {
  background: var(--vdark2);
  border: 1px solid var(--vborder);
  border-left: 3px solid var(--vred);
  padding: 18px 20px;
  margin-bottom: 20px;
}
.t-create-row {
  display: grid;
  grid-template-columns: 1fr 160px;
  gap: 10px;
  margin-bottom: 14px;
}
.t-list {
  display: flex; flex-direction: column;
  gap: 6px;
}
.t-row {
  display: grid;
  grid-template-columns: 14px 1fr auto auto auto auto;
  gap: 10px; align-items: center;
  background: var(--vdark);
  border: 1px solid var(--vborder);
  padding: 9px 12px 9px 14px;
  position: relative;
}
.t-row.is-primary { border-left: 3px solid var(--vgold); }
.t-row.is-primary::before {
  content: 'PRIMARY';
  position: absolute; top: -8px; left: 12px;
  font-family: 'DM Mono', monospace; font-size: 0.5rem;
  letter-spacing: 2px; color: var(--vgold);
  background: var(--vdark);
  padding: 1px 6px;
}
.t-name { font-weight: 700; font-size: 1rem; letter-spacing: 1px; color: var(--vcream); }
.t-state-pill {
  font-family: 'DM Mono', monospace; font-size: 0.55rem;
  letter-spacing: 1.5px; padding: 3px 7px;
  border: 1px solid var(--vborder);
}
.t-state-pill[data-s="not-started"] { color: var(--vmuted); }
.t-state-pill[data-s="ongoing"] { color: var(--vred); border-color: var(--vred); }
.t-state-pill[data-s="finished"] { color: var(--vgold); border-color: var(--vgold); }
.t-icon-btn {
  background: none;
  border: 1px solid var(--vborder);
  color: var(--vmuted);
  cursor: pointer;
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  transition: all 0.12s;
}
.t-icon-btn:hover { border-color: var(--vred); color: var(--vred); }
.t-icon-btn.is-primary { border-color: var(--vgold); color: var(--vgold); }

/* ─── TOAST ─── */
#toast {
  position: fixed; bottom: 20px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--vdark2);
  border: 1px solid var(--vred);
  border-top: 2px solid var(--vred);
  color: var(--vcream);
  padding: 9px 22px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem; letter-spacing: 3px;
  transition: transform 0.3s cubic-bezier(.22,.68,0,1.2);
  z-index: 999;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}
#toast.show { transform: translateX(-50%) translateY(0); }

/* ─── SCROLLBARS ─── */
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--vborder); }
::-webkit-scrollbar-thumb:hover { background: var(--vmuted); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .menu-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .menu-hero-title { font-size: 3.2rem; letter-spacing: 8px; }
}
@media (max-width: 760px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .hdr-nav { display: none; }
  .menu-hero-title { font-size: 2.2rem; letter-spacing: 5px; }
  .menu-hero { padding: 26px 22px 22px; min-height: 0; }
  .hero-stats { gap: 8px; }
  .bottom-bar { flex-wrap: wrap; gap: 10px; }
  .menu-btn-icon svg { width: 42px; height: 42px; }
  .menu-btn-label { font-size: 1.3rem; letter-spacing: 3px; }
}
