/* ── TheatreBase — Shared Base Styles ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@700;800&display=swap');

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

:root {
  --bg:      #161618;
  --chrome:  #1e1e21;
  --chrome2: #242428;
  --chrome3: #2c2c31;
  --chrome4: #343438;
  --div:     #2e2e33;
  --div2:    #38383f;
  --text:    #e2e2e4;
  --text2:   #86868e;
  --text3:   #4a4a54;
  --go:      #2f9e52;
  --go-hi:   #36b85e;
  --go-dk:   #1f6b36;
  --go-txt:  #4dbb6e;
  --go-glow: rgba(47,158,82,.18);
  --blue:    #1f5fa0;
  --blue-hi: #2470b8;
  --blue-txt:#62a8e8;
  --blue-glow: rgba(31,95,160,.2);
  --amber:   #b87c18;
  --red:     #b03030;
  --r:  5px;
  --r2: 8px;
  --r3: 12px;
  --ui:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --mono:    'SF Mono', 'Fira Mono', 'Menlo', monospace;
}

html, body {
  height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: var(--ui);
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

a { color: var(--blue-txt); text-decoration: none; }
a:hover { color: var(--text); }

/* ── Logo ── */
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--text);
  text-decoration: none;
}
.logo-icon {
  width: 30px;
  height: 30px;
  background: var(--chrome3);
  border: 1px solid var(--div2);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0,0,0,.3);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  border-radius: var(--r2);
  font-family: var(--ui);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .12s, color .12s, border-color .12s,
              box-shadow .12s, transform .1s;
  white-space: nowrap;
  letter-spacing: .01em;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--go);
  color: #fff;
  border-color: var(--go-dk);
  box-shadow: 0 1px 4px rgba(0,0,0,.25), 0 0 0 0 var(--go-glow);
}
.btn-primary:hover {
  background: var(--go-hi);
  color: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.2), 0 0 0 3px var(--go-glow);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--chrome3);
  color: var(--text2);
  border-color: var(--div2);
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.btn-secondary:hover {
  background: var(--chrome4);
  color: var(--text);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text2);
  border-color: transparent;
}
.btn-ghost:hover { background: var(--chrome3); color: var(--text); }

/* ── Inputs ── */
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text3);
  letter-spacing: .07em;
  text-transform: uppercase;
}
.input {
  background: var(--chrome3);
  border: 1px solid var(--div2);
  border-radius: var(--r);
  color: var(--text);
  font-family: var(--ui);
  font-size: 13.5px;
  padding: 10px 13px;
  outline: none;
  transition: border-color .15s, background .15s, box-shadow .15s;
  width: 100%;
}
.input::placeholder { color: var(--text3); }
.input:focus {
  border-color: var(--blue-hi);
  background: var(--chrome4);
  box-shadow: 0 0 0 3px var(--blue-glow);
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--div2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text3); }
