/* BOOK'D HAUS brand palette — every color is primary */
:root {
  --acid-lime: #c6ff00;
  --nuclear-yellow: #fff500;
  --hyper-pink: #ff00a8;
  --toxic-orange: #ff4d00;
  --electric-blue: #0047ff;
  --laser-cyan: #00f5ff;
  --uv-purple: #8f00ff;
  --ink-black: #09000f;

  --text: #ffffff;
  --surface: rgba(9, 0, 15, 0.9);
  --focus: var(--laser-cyan);
  --cta: var(--acid-lime);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  font-family: "League Spartan", sans-serif;
  color: var(--text);
  background-color: var(--toxic-orange);
  height: 100svh;
  max-height: 100svh;
  overflow: hidden;
  position: relative;
  transition: background-color 0.25s ease, color 0.25s ease;
}

body.bg-light {
  --text: var(--ink-black);
  --surface: rgba(255, 255, 255, 0.92);
  --cta: var(--hyper-pink);
}

.marquee-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  overflow: hidden;
  border: none;
  border-bottom: 1px solid var(--text);
  background: transparent;
}

.marquee {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.marquee span {
  font-family: "League Spartan", sans-serif;
  letter-spacing: 0.16em;
  font-size: 0.85rem;
  padding: 0.4rem 0;
  color: var(--text);
  white-space: nowrap;
}

.hero {
  height: 100svh;
  max-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
  padding: 2.4rem 1rem 0.8rem;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.hero-copy {
  text-align: center;
  max-width: 720px;
}

.brand-logo {
  display: block;
  width: clamp(220px, 34vmin, 420px);
  height: auto;
  margin: 0 auto 0.35rem;
  transition: opacity 0.25s ease;
}

.title-stack {
  margin: 0;
  line-height: 0.9;
  font-family: "League Spartan", sans-serif;
  font-size: clamp(2rem, 8vmin, 4.2rem);
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.tagline {
  margin: 0.45rem auto 0;
  max-width: 28rem;
  font-size: clamp(0.78rem, 1.6vmin, 0.95rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

.waitlist-card,
.panel {
  width: min(400px, 92vw);
  padding: 0;
  background: transparent;
  border: none;
}

h2 {
  margin: 0 0 0.65rem;
  font-family: "League Spartan", sans-serif;
  letter-spacing: 0.1em;
  font-size: 1.35rem;
  color: var(--text);
}

.stack {
  display: grid;
  gap: 0.5rem;
}

input {
  border: none;
  border-bottom: 1px solid var(--text);
  border-radius: 0;
  background: transparent;
  color: var(--text);
  padding: 0.55rem 0;
  font-size: 0.9rem;
  font-family: inherit;
  font-weight: 600;
  outline: none;
}

input::placeholder {
  color: var(--text);
  opacity: 0.55;
}

input:focus {
  outline: none;
}

button {
  border: none;
  border-radius: 0;
  padding: 0.6rem 0;
  font-family: "League Spartan", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  color: var(--ink-black);
  background: var(--cta);
}

button:hover {
  transform: translateY(-1px);
}

button.outline {
  background: transparent;
  color: var(--text);
  border: none;
}

.action-link {
  display: inline-block;
  padding: 0.5rem 0;
  font-family: "League Spartan", sans-serif;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--text);
  border: none;
}

.status {
  margin: 0.5rem 0 0;
  font-size: 0.82rem;
  font-weight: 700;
  min-height: 1rem;
}

.status.success {
  color: var(--acid-lime);
}

body.bg-light .status.success {
  color: var(--electric-blue);
}

.status.error,
.error {
  color: var(--hyper-pink);
}

.admin-page {
  padding: 1.5rem 1rem;
  position: relative;
  z-index: 2;
  overflow: auto;
  height: 100svh;
}

.admin-page .panel {
  margin: 4rem auto 0;
}

.admin-header {
  max-width: 1100px;
  margin: 0 auto 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.admin-header h1 {
  font-family: "League Spartan", sans-serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  margin: 0;
}

.admin-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.admin-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.stats-card,
.table-wrap {
  background: transparent;
  border: none;
  padding: 0;
}

.stats-card p {
  font-size: 1.8rem;
  margin: 0;
  font-weight: 800;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  text-align: left;
  padding: 0.65rem 0.5rem;
  border: none;
  font-size: 0.9rem;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
