/* Paradise Social Card Club — ultra-minimal, palette from the Paradise Poker Live logo */
:root {
  --black: #070605;
  --black-2: #0f0d0a;
  --line: rgba(231, 183, 90, .18);
  --gold: #e7b75a;
  --gold-hi: #fbe39a;
  --gold-lo: #a8741f;
  --sun: #f79a1e;
  --sunset: #e5431c;
  --neon: #ff2b3a;
  --cream: #f5ead3;
  --mute: rgba(245, 234, 211, .55);
  --radius: 4px;
  --nav-h: 56px;
  --ease: cubic-bezier(.5, 0, 0, .75);
  --gold-grad: linear-gradient(180deg, var(--gold-hi) 0%, var(--gold) 45%, var(--gold-lo) 100%);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-snap-type: y proximity; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--black); color: var(--cream); font-size: 14px; line-height: 1.45; -webkit-font-smoothing: antialiased; }
a { color: inherit; }
h1, h2, h3 { margin: 0; font-weight: 500; letter-spacing: -.01em; }
button, input { font: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--gold); color: var(--black); padding: 8px 12px; z-index: 100; border-radius: var(--radius); }
.skip:focus { left: 8px; }

/* ---------- nav ---------- */
.nav { position: fixed; inset: 0 0 auto 0; height: var(--nav-h); z-index: 50; display: flex; align-items: center; justify-content: space-between; padding: 0 16px 0 28px; transition: background .4s var(--ease), backdrop-filter .4s; }
.nav.solid { background: rgba(7, 6, 5, .72); backdrop-filter: saturate(1.4) blur(14px); }
.brand { display: flex; align-items: center; height: 100%; }
.brand img { height: 48px; width: auto; display: block; filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .5)); transition: transform .3s var(--ease); }
.brand:hover img { transform: scale(1.04); }
.links { display: flex; gap: 2px; position: absolute; left: 50%; transform: translateX(-50%); }
.links a, .menu-btn { text-decoration: none; font-weight: 500; font-size: 14px; padding: 6px 12px; border-radius: var(--radius); transition: background .3s var(--ease); }
.links a:hover, .menu-btn:hover, .ico:hover { background: rgba(245, 234, 211, .1); }
.nav-right { display: flex; align-items: center; gap: 2px; }
.ico { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: var(--radius); color: var(--cream); transition: background .3s var(--ease), color .3s; }
.ico svg { width: 18px; height: 18px; }
.ico:hover { color: var(--gold); }
.menu-btn { display: none; background: rgba(245, 234, 211, .1); margin-left: 6px; }
@media (max-width: 900px) {
  .links, .nav-right .ico { display: none; }
  .menu-btn { display: inline-block; }
  .nav { padding-left: 20px; }
}

/* ---------- drawer ---------- */
.drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(300px, 84vw); background: var(--black-2); border-left: 1px solid var(--line); z-index: 80; padding: 72px 20px 24px; display: flex; flex-direction: column; gap: 2px; transform: translateX(100%); transition: transform .45s var(--ease); overflow-y: auto; }
.drawer.open { transform: none; }
.drawer > a { text-decoration: none; font-weight: 500; padding: 10px 12px; border-radius: var(--radius); }
.drawer > a:hover { background: rgba(245, 234, 211, .08); }
.drawer-social { display: flex; gap: 6px; margin-top: 16px; padding: 12px 6px 0; border-top: 1px solid var(--line); }
.drawer-close { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border: 0; border-radius: var(--radius); background: transparent; color: var(--cream); font-size: 26px; line-height: 1; cursor: pointer; }
.scrim { position: fixed; inset: 0; background: rgba(0, 0, 0, .5); backdrop-filter: blur(4px); z-index: 70; opacity: 0; pointer-events: none; transition: opacity .45s var(--ease); }
.scrim.open { opacity: 1; pointer-events: auto; }

/* ---------- panels ---------- */
.panel { position: relative; min-height: 100vh; min-height: 100svh; scroll-snap-align: start; display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 40px; padding: calc(var(--nav-h) + 11vh) 16px 8vh; text-align: center; background: var(--black) var(--bg, none) center / cover no-repeat; overflow: hidden; isolation: isolate; }
.panel.photo::before, .hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(7, 6, 5, .82) 0%, rgba(7, 6, 5, .35) 34%, rgba(7, 6, 5, .25) 60%, rgba(7, 6, 5, .88) 100%); }
.panel h1, .panel h2 { font-size: clamp(36px, 5.2vw, 52px); line-height: 1.08; }
.panel h2 { background: linear-gradient(180deg, var(--cream), #e9d7b2); -webkit-background-clip: text; background-clip: text; color: transparent; }
.panel-cta { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.panel-cta.left { justify-content: flex-start; }

.btn { display: inline-flex; align-items: center; justify-content: center; min-width: 256px; height: 42px; padding: 0 24px; border-radius: var(--radius); border: 0; font-weight: 600; font-size: 14px; letter-spacing: .01em; text-decoration: none; cursor: pointer; transition: filter .3s var(--ease), background .3s var(--ease), transform .2s; }
.btn:active { transform: scale(.98); }
.btn.primary { background: var(--gold-grad); color: #1a1206; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35); }
.btn.primary:hover { filter: brightness(1.08); }
.btn.ghost { background: rgba(245, 234, 211, .12); color: var(--cream); backdrop-filter: blur(10px); box-shadow: inset 0 0 0 1px rgba(245, 234, 211, .22); }
.btn.ghost:hover { background: rgba(245, 234, 211, .2); }
.btn[disabled] { opacity: .5; cursor: progress; }
@media (max-width: 640px) {
  .panel-cta { flex-direction: column; gap: 12px; width: 100%; align-items: center; }
  .btn { width: 100%; max-width: 360px; min-width: 0; }
}

/* ---------- hero ---------- */
.slides { position: absolute; inset: 0; z-index: -2; }
.slide { position: absolute; inset: 0; background: var(--bg) center / cover no-repeat; opacity: 0; transform: scale(1.06); transition: opacity 1.4s ease, transform 7s linear; }
.slide.is-on { opacity: 1; transform: scale(1); }
.hero h1 { font-size: clamp(40px, 6.4vw, 64px); }
.dots { margin-top: auto; margin-bottom: -16px; display: flex; gap: 10px; }
.dots button { width: 7px; height: 7px; padding: 0; border-radius: 50%; border: 0; background: rgba(245, 234, 211, .4); cursor: pointer; transition: background .3s, transform .3s; }
.dots button.is-on { background: var(--gold); transform: scale(1.25); }

/* ---------- dark + themed panels ---------- */
.panel.dark { background: radial-gradient(90% 60% at 50% 0%, rgba(231, 183, 90, .08), transparent 70%), var(--black); }
.sunset { background:
  radial-gradient(closest-side at 50% 78%, rgba(255, 214, 102, .95), rgba(247, 154, 30, .55) 45%, transparent 75%),
  linear-gradient(180deg, #070605 0%, #3a0c07 30%, var(--sunset) 72%, var(--sun) 100%); }
.sunset::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 26%; z-index: -1;
  background: repeating-linear-gradient(180deg, rgba(7, 6, 5, .0) 0 10px, rgba(7, 6, 5, .35) 10px 13px), linear-gradient(180deg, transparent, rgba(7, 6, 5, .55)); }
.live { background: radial-gradient(60% 50% at 50% 45%, rgba(255, 43, 58, .16), transparent 70%), var(--black); justify-content: center; gap: 48px; }
.live-logo { width: min(620px, 88vw); height: auto; filter: drop-shadow(0 20px 60px rgba(255, 43, 58, .25)); }

/* ---------- schedule ---------- */
.week-grid, .events { list-style: none; margin: 0; padding: 0; width: min(1080px, 100%); display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.week-grid li, .events li { background: var(--black-2); padding: 26px 18px; display: flex; flex-direction: column; gap: 10px; text-align: left; }
.d { font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.week-grid strong, .events strong { font-size: 18px; font-weight: 500; }
.week-grid em { margin-top: auto; padding-top: 18px; font-style: normal; font-size: 30px; font-weight: 500; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.events { grid-template-columns: repeat(3, 1fr); width: min(820px, 100%); background: rgba(7, 6, 5, .25); border-color: rgba(7, 6, 5, .25); }
.events li { background: rgba(7, 6, 5, .55); backdrop-filter: blur(8px); }
.events .d { color: var(--gold-hi); }
@media (max-width: 900px) { .week-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) {
  .week-grid, .events { grid-template-columns: 1fr; }
  .week-grid li, .events li { flex-direction: row; align-items: baseline; gap: 14px; padding: 16px 18px; }
  .week-grid .d, .events .d { width: 78px; flex: none; white-space: nowrap; }
  .week-grid em { margin: 0 0 0 auto; padding: 0; font-size: 20px; }
}

/* ---------- jackpots ---------- */
.jackpots { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.jackpots table { border-collapse: collapse; min-width: 290px; background: var(--black-2); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.jackpots caption { caption-side: top; text-align: left; padding: 0 0 10px 4px; font-weight: 600; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.jackpots th, .jackpots td { padding: 16px 20px; border-bottom: 1px solid var(--line); }
.jackpots tr:last-child th, .jackpots tr:last-child td { border-bottom: 0; }
.jackpots th { text-align: left; font-weight: 500; }
.jackpots td { text-align: right; font-weight: 600; font-size: 20px; color: var(--gold-hi); }

/* ---------- visit ---------- */
.visit { justify-content: center; text-align: left; }
.visit-grid { width: min(1080px, 100%); display: grid; grid-template-columns: 1fr 1.25fr; gap: 48px; align-items: center; }
.visit address { font-style: normal; font-size: 22px; line-height: 1.5; margin: 22px 0 32px; }
.visit .panel-cta { gap: 12px; }
.visit .btn { min-width: 180px; }
.map { aspect-ratio: 4 / 3; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); background: var(--black-2); }
.map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) invert(.92) contrast(.9) sepia(.25); }
@media (max-width: 900px) { .visit-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- footer ---------- */
.foot { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 16px 32px; padding: 32px 28px; font-size: 12px; color: var(--mute); border-top: 1px solid var(--line); }
.foot-logo img { height: 72px; width: auto; display: block; }
.foot-links { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 12px 20px; }
.foot-mail { color: var(--cream); text-decoration: none; font-size: 14px; }
.foot-mail:hover { color: var(--gold); }
.foot nav { display: flex; gap: 4px; }
.foot-copy { grid-column: 1 / -1; }
@media (max-width: 640px) {
  .foot { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .foot-links { justify-content: center; flex-direction: column; }
}

/* ---------- waitlist ---------- */
.waitlist { background: radial-gradient(80% 55% at 50% 0%, rgba(247, 154, 30, .14), transparent 70%), var(--black); justify-content: flex-start; }
.wl-wrap { width: min(1180px, 100%); display: flex; flex-direction: column; align-items: center; gap: 20px; }
.wl-message { margin: 0; padding: 9px 18px; border-radius: 999px; color: var(--gold-hi); font-weight: 500; border: 1px solid rgba(231, 183, 90, .4); background: rgba(231, 183, 90, .08); }
/* one unified board, one column per game */
.wl-grid { --cols: 1; width: min(100%, calc(var(--cols) * 320px)); display: grid; grid-template-columns: repeat(var(--cols), minmax(240px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; min-height: 52vh; }
.wl-state { grid-column: 1 / -1; padding: 48px 16px; color: var(--mute); background: var(--black-2); display: grid; place-content: center; }
.wl-state .btn { margin-top: 16px; }
.wl-card { background: var(--black-2); padding: 0; text-align: left; display: flex; flex-direction: column; min-width: 0; }
.wl-card h3 { font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); padding: 16px 18px; border-bottom: 1px solid var(--line); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wl-card .wl-tables { padding: 12px 18px 0; }
.wl-card .wl-list { padding: 12px 12px 0; }
.wl-card > .btn { margin: 12px; width: auto; }
@media (max-width: 640px) {
  /* columns stay side by side and swipe horizontally */
  .wl-grid { width: 100%; overflow-x: auto; scroll-snap-type: x mandatory; grid-template-columns: repeat(var(--cols), minmax(78vw, 1fr)); }
  .wl-grid:has(.wl-card:only-child) { grid-template-columns: 1fr; }
  .wl-card { scroll-snap-align: start; }
}
.wl-tables { display: flex; flex-wrap: wrap; gap: 6px; }
.wl-tables span { font-size: 12px; padding: 2px 8px; border-radius: 999px; color: var(--gold-hi); border: 1px solid rgba(231, 183, 90, .4); }
.wl-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.wl-list li { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 6px; background: rgba(245, 234, 211, .05); font-weight: 500; }
.wl-list .pos { width: 20px; color: var(--gold); font-weight: 600; font-variant-numeric: tabular-nums; }
.wl-list .here { width: 8px; height: 8px; border-radius: 50%; background: var(--neon); box-shadow: 0 0 10px var(--neon); }
.wl-list .name { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.wl-list li.mine { box-shadow: inset 0 0 0 1px var(--gold); background: rgba(231, 183, 90, .12); }
.wl-card .btn { min-width: 0; }

/* ---------- modal ---------- */
.modal { border: 1px solid var(--line); padding: 0; border-radius: 12px; width: min(400px, calc(100vw - 32px)); color: var(--cream); background: var(--black-2); box-shadow: 0 30px 80px rgba(0, 0, 0, .6); }
.modal::backdrop { background: rgba(0, 0, 0, .6); backdrop-filter: blur(4px); }
.modal form { padding: 28px 24px 24px; display: flex; flex-direction: column; gap: 16px; position: relative; }
.modal h3 { font-size: 22px; padding-right: 32px; }
.modal label { display: flex; flex-direction: column; gap: 6px; font-weight: 500; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.modal input { height: 44px; border: 1px solid rgba(245, 234, 211, .16); border-radius: var(--radius); padding: 0 12px; font-size: 16px; letter-spacing: 0; text-transform: none; color: var(--cream); background: rgba(245, 234, 211, .05); transition: border-color .2s; }
.modal input:focus { outline: none; border-color: var(--gold); }
.modal-x { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border: 0; background: transparent; color: var(--cream); font-size: 24px; border-radius: var(--radius); cursor: pointer; }
.modal-x:hover { background: rgba(245, 234, 211, .08); }
.modal-actions .btn { width: 100%; min-width: 0; }
.form-err { margin: 0; color: var(--neon); font-size: 13px; }

.toast { position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%); z-index: 90; background: var(--gold-grad); color: #1a1206; padding: 12px 18px; border-radius: 8px; font-weight: 600; box-shadow: 0 10px 30px rgba(0, 0, 0, .5); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .slide { transition: none; transform: none; }
}
