:root {
  --neon: #ffb84d;
  --neon-hi: #ffd27a;
  --pink: #ff5c5c;
  --ink: #0a0806;
  --bg0: #120805;
  --bg1: #1c1008;
  --panel: #1a120c;
  --panel-2: #120c08;
  --card: linear-gradient(165deg, rgba(32, 20, 12, 0.96) 0%, rgba(18, 10, 6, 0.96) 100%);
  --line: rgba(255, 184, 77, 0.28);
  --text: #ffe8d0;
  --muted: rgba(255, 232, 208, 0.72);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; min-height: 100vh; font-family: Inter, system-ui, sans-serif; color: var(--text);
  background:
    radial-gradient(ellipse at 20% -10%, rgba(255, 184, 77, 0.14), transparent 42%),
    radial-gradient(ellipse at 80% 0%, rgba(255, 92, 92, 0.08), transparent 36%),
    linear-gradient(180deg, #2a1810 0%, var(--bg1) 45%, var(--bg0) 100%);
}
header {
  display: flex; justify-content: space-between; align-items: center; padding: 14px 22px;
  background: rgba(10, 6, 4, 0.92); border-bottom: 1px solid var(--line);
  position: sticky; top: 0; gap: 12px; flex-wrap: wrap; backdrop-filter: blur(10px); z-index: 20;
}
.brand {
  color: #fff; font-family: Orbitron, system-ui, sans-serif; font-weight: 700;
  text-decoration: none; font-size: 1.2rem; letter-spacing: 0.02em;
  text-shadow: 0 0 14px rgba(255, 184, 77, 0.4);
}
.brand::before { content: "⬤"; color: var(--neon); margin-right: 8px; font-size: 0.85rem; }
nav { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
a.btn, button.btn {
  display: inline-block; padding: 10px 18px;
  background: transparent; color: var(--text); border: 1px solid rgba(255, 184, 77, 0.4);
  border-radius: 999px; text-decoration: none; font-weight: 700; cursor: pointer; font-size: 0.95rem;
  transition: background 0.15s, border-color 0.15s, transform 0.12s;
}
a.btn:hover, button.btn:hover {
  background: rgba(255, 184, 77, 0.1); border-color: var(--neon);
}
a.btn.primary, button.btn.primary {
  background: linear-gradient(145deg, var(--neon-hi), var(--neon));
  color: #1a0a00; border: none;
  box-shadow: 0 8px 22px rgba(255, 184, 77, 0.32);
}
a.btn.primary:hover, button.btn.primary:hover {
  background: linear-gradient(145deg, #ffe0a0, var(--neon-hi));
  transform: translateY(-1px);
}
a.btn.solo, button.btn.solo {
  background: linear-gradient(145deg, #ff8a6a, var(--pink));
  color: #1a0505; border: none;
  box-shadow: 0 8px 22px rgba(255, 92, 92, 0.35);
}
a.btn.solo:hover, button.btn.solo:hover {
  background: linear-gradient(145deg, #ffb08a, #ff8a6a);
}
main { max-width: 920px; margin: 0 auto; padding: 28px 16px 48px; }
h1, h2 {
  font-family: Orbitron, system-ui, sans-serif; color: #fff; font-weight: 700; margin: 0 0 8px;
}
h1 { font-size: clamp(1.7rem, 4vw, 2.4rem); }
h2 { font-size: 1.2rem; color: var(--neon-hi); }
.card {
  background: var(--card);
  border: 1px solid var(--line); border-radius: 16px; padding: 20px; margin-top: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 12px; }
.stat {
  background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 184, 77, 0.14);
  border-radius: 12px; padding: 14px;
}
.stat strong, .stat .val {
  display: block; font-size: 1.35rem; color: var(--neon); font-variant-numeric: tabular-nums;
}
.stat .lbl { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.7; margin-bottom: 4px; }
.guest-badge {
  display: inline-block; margin-left: 8px; padding: 2px 8px; border-radius: 999px;
  background: rgba(255, 92, 92, 0.2); border: 1px solid var(--pink); font-size: 0.75rem; color: var(--pink);
}
.hint { opacity: 0.82; font-size: 0.92rem; line-height: 1.45; color: var(--muted); }
.controls code, .room-row code { background: #1a0c06; padding: 2px 6px; border-radius: 4px; }
.row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-top: 8px; }
input, select {
  background: #1a0c06; border: 1px solid #654; color: #ffe8d0; border-radius: 999px;
  padding: 10px 14px; min-width: 140px;
}
.room-list { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.room-row {
  display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap;
  padding: 12px 14px; border: 1px solid rgba(255, 184, 77, 0.16); border-radius: 12px;
  background: rgba(0, 0, 0, 0.25); transition: border-color 0.15s;
}
.room-row:hover { border-color: rgba(255, 184, 77, 0.45); }
.muted { opacity: 0.75; font-size: 0.9rem; }
table.hs { width: 100%; border-collapse: collapse; }
table.hs th, table.hs td { text-align: left; padding: 10px 8px; border-bottom: 1px solid rgba(255, 184, 77, 0.12); }
table.hs th { color: var(--neon); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; }
.cta-hero {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: stretch; margin-top: 8px;
}
.cta-hero .btn { padding: 14px 22px; font-size: 1.05rem; }
.solo-card {
  border-color: rgba(255, 92, 92, 0.35);
  background: linear-gradient(165deg, rgba(48, 18, 14, 0.96), rgba(22, 10, 8, 0.96));
}
.chip.accent {
  border-color: var(--neon) !important;
  background: rgba(255, 184, 77, 0.1);
}
