/* Budapest Club — Start a Project LLC — performance-first CSS */
:root {
  --burgundy: #7b0e2a;
  --gold: #c9a02e;
  --velvet: #1a0a2e;
  --felt: #0a3d2b;
  --felt-dark: #0a1f15;
  --ivory: #f7f0e3;
  --marble: #d8ccb8;
  --rose: #c0396e;
  --emerald: #007a4b;
  --silver: #8a8a9a;
  --charcoal: #2a2535;
  --navy: #0c1f3f;
  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Crimson Pro", Georgia, serif;
  --font-ui: "Inter", system-ui, sans-serif;
  --font-mono: "Space Mono", ui-monospace, monospace;
  --radius: 4px;
  --header-h: 72px;
  --header-offset: 112px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.05vw, 17px);
  line-height: 1.55;
  color: var(--ivory);
  background: var(--velvet);
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #e4c04a;
}

.legal-panel a {
  color: var(--burgundy);
}

.legal-panel a:hover {
  color: #9a1e3e;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 12px 20px;
  background: var(--gold);
  color: var(--velvet);
  font-family: var(--font-ui);
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26, 10, 46, 0.96);
  border-bottom: 1px solid rgba(201, 160, 46, 0.25);
  backdrop-filter: blur(8px);
}

.header-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-row--top {
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 10px 0 8px;
  gap: 14px;
}

.header-row--nav {
  flex-wrap: wrap;
  gap: 8px 18px;
  padding: 10px 0 14px;
  border-top: 1px solid rgba(201, 160, 46, 0.18);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.brand:hover {
  color: #e4c04a;
}

.nav-main a {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 14px;
  color: var(--ivory);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.nav-main a:hover {
  color: var(--gold);
}

.header-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
}

.korona-balance--header {
  font-size: 14px;
  white-space: nowrap;
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 520px) {
  .korona-balance--header {
    max-width: 220px;
    font-size: 15px;
  }
}

.btn-header-dash {
  padding: 10px 16px;
  font-size: 13px;
}

.btn-icon-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 160, 46, 0.45);
  background: rgba(42, 37, 53, 0.6);
  color: var(--silver);
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.btn-icon-header:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201, 160, 46, 0.12);
}

.lang-toggle {
  display: inline-flex;
  border: 1px solid rgba(201, 160, 46, 0.45);
  border-radius: var(--radius);
  overflow: hidden;
}

.lang-toggle button {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 12px;
  border: none;
  background: transparent;
  color: var(--silver);
  cursor: pointer;
}

.lang-toggle button[aria-pressed="true"] {
  background: var(--gold);
  color: var(--velvet);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  position: relative;
  overflow: hidden;
  background: var(--gold);
  color: var(--velvet);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-16deg);
  pointer-events: none;
  transition: left 0.55s ease;
}

.btn-primary:hover {
  box-shadow: inset 0 0 0 999px rgba(255, 255, 255, 0.08);
}

.btn-primary:hover::after {
  left: 125%;
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-secondary:hover {
  background: rgba(201, 160, 46, 0.08);
}

.btn-burgundy {
  background: var(--burgundy);
  color: var(--ivory);
}

.btn-emerald {
  background: var(--emerald);
  color: var(--ivory);
}

.btn-ghost {
  background: transparent;
  color: var(--silver);
  border: none;
}

.hero {
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--gold);
  background: var(--velvet);
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 20px 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    padding: 72px 20px 88px;
  }
}

.hero h1 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 46px);
  color: var(--gold);
  line-height: 1.15;
  margin: 0 0 16px;
}

.hero .lead {
  font-size: clamp(17px, 2vw, 19px);
  color: var(--ivory);
  margin: 0 0 24px;
  max-width: 36ch;
}

.hero-disclaimer {
  font-family: var(--font-ui);
  font-size: 11px;
  color: var(--silver);
  margin-top: 20px;
}

.hero-art {
  animation: flicker 4s ease-in-out infinite alternate;
}

.hero-art img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  margin-inline: auto;
  border-radius: 8px;
  border: 1px solid rgba(201, 160, 46, 0.35);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
}

.deco-banner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: block;
  border-radius: 8px;
  border: 1px solid rgba(201, 160, 46, 0.2);
}

@keyframes flicker {
  from {
    opacity: 0.82;
  }
  to {
    opacity: 1;
  }
}

.stats-bar {
  background: var(--charcoal);
  border-block: 1px solid rgba(201, 160, 46, 0.2);
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  text-align: center;
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--ivory);
}

@media (min-width: 700px) {
  .stats-inner {
    grid-template-columns: repeat(4, 1fr);
    border-inline: 1px solid rgba(201, 160, 46, 0.15);
  }

  .stats-inner > div {
    border-inline: 1px solid rgba(201, 160, 46, 0.12);
    padding-inline: 12px;
  }
}

.stats-inner strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 4px;
}

.section {
  padding: 56px 20px;
}

.section-dark-felt {
  background: linear-gradient(180deg, var(--felt-dark) 0%, #061208 100%);
}

.section-ivory {
  background: var(--ivory);
  color: var(--velvet);
}

.section-ivory h2 {
  color: var(--burgundy);
}

.section h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 34px);
  color: var(--gold);
  text-align: center;
  margin: 0 0 32px;
}

.card-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.game-card {
  background: var(--charcoal);
  border-radius: var(--radius);
  border: 1px solid rgba(201, 160, 46, 0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.game-card .thumb {
  aspect-ratio: 16 / 9;
  background: var(--velvet);
  display: block;
}

.game-card .body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.game-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--gold);
  margin: 0 0 8px;
}

.game-card p {
  margin: 0;
  color: var(--ivory);
  font-size: 15px;
  flex: 1;
}

.site-footer {
  background: #12081f;
  border-top: 1px solid rgba(201, 160, 46, 0.25);
  padding: 48px 20px 24px;
  font-family: var(--font-ui);
  font-size: 14px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto 32px;
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 15px;
  color: var(--gold);
  margin: 0 0 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  color: var(--ivory);
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--gold);
}

.social-row a {
  display: block;
  font-size: 13px;
  word-break: break-all;
}

.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
  margin: 24px 0;
}

.footer-payments img {
  height: 32px;
  width: auto;
  max-width: 72px;
  object-fit: contain;
  opacity: 0.9;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

.social-icons-wrap {
  margin-top: 14px;
}

.social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-icons__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 160, 46, 0.35);
  color: var(--ivory);
  text-decoration: none;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.social-icons__link:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201, 160, 46, 0.1);
}

.social-icons__link .social-ico {
  display: block;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(201, 160, 46, 0.15);
  font-size: 12px;
  color: var(--silver);
  text-align: center;
  line-height: 1.6;
}

.footer-company {
  max-width: 1200px;
  margin: 0 auto 16px;
  text-align: center;
  font-size: 13px;
  color: var(--ivory);
}

.footer-company a[href^="tel:"] {
  color: var(--gold);
  font-weight: 600;
  white-space: nowrap;
}

/* Cookie banner — corner card (inner panel is absolute in fixed host) */
#cookie-banner {
  position: fixed;
  inset: 0;
  z-index: 8000;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  pointer-events: none;
}

#cookie-banner[hidden] {
  display: none !important;
}

.cookie-corner {
  position: absolute;
  right: max(16px, env(safe-area-inset-right, 0px));
  bottom: max(16px, env(safe-area-inset-bottom, 0px));
  left: auto;
  top: auto;
  width: min(420px, calc(100vw - 32px));
  max-height: min(70vh, calc(100dvh - 48px));
  overflow: auto;
  padding: 20px 22px 22px;
  box-sizing: border-box;
  background: var(--charcoal);
  border: 1px solid rgba(201, 160, 46, 0.45);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  pointer-events: auto;
  transform: translateY(12px);
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

#cookie-banner.is-visible .cookie-corner {
  transform: translateY(0);
  opacity: 1;
}

.cookie-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
}

#cookie-banner p {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 13px;
  line-height: 1.55;
  color: var(--ivory);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

/* Age gate */
#age-overlay,
.age-overlay {
  position: fixed;
  inset: 0;
  z-index: 12000;
  background: rgba(10, 4, 22, 0.72);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

#age-overlay[hidden],
.age-overlay[hidden] {
  display: none !important;
}

body.bc-age-gate-active {
  overflow: hidden;
}

.age-box {
  max-width: 420px;
  background: var(--charcoal);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}

.age-box h2 {
  font-family: var(--font-head);
  color: var(--gold);
  margin-top: 0;
}

/* Home — Grand Soirée preview */
.sec_soiree__h2 {
  color: var(--gold);
  text-align: center;
}

.sec_soiree__intro .sec_soiree__countdown,
.sec_soiree__intro .sec_soiree__theme {
  display: inline;
  color: var(--gold);
  font-weight: 600;
  margin-inline: 0.25em;
}

/* Forms */
.form-wrap {
  max-width: 480px;
  margin: 0 auto;
  padding: 40px 20px 64px;
}

.form-wrap label {
  display: block;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--ivory);
}

.form-wrap input,
.form-wrap textarea,
.form-wrap select {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 160, 46, 0.35);
  background: var(--charcoal);
  color: var(--ivory);
  font-family: var(--font-ui);
  font-size: 15px;
  margin-bottom: 16px;
}

.form-wrap input:focus,
.form-wrap textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.form-status {
  font-family: var(--font-ui);
  font-size: 14px;
  margin-top: 12px;
}

.form-status.ok {
  color: var(--emerald);
}

.form-status.err {
  color: #ff8a8a;
}

/* Game shell */
.game-shell {
  min-height: calc(100vh - var(--header-offset));
  padding: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.game-topbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.korona-balance {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 16px;
  color: var(--gold);
}

.game-disclaimer-bar {
  position: sticky;
  bottom: 0;
  margin-top: 24px;
  padding: 10px 14px;
  text-align: center;
  font-family: var(--font-ui);
  font-size: 11px;
  color: var(--ivory);
  background: rgba(122, 14, 42, 0.88);
  border-radius: var(--radius);
}

/* Slots / roulette simplified layouts */
.slot-machine {
  background: var(--charcoal);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}

.reels {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}

.reel {
  width: 72px;
  height: 96px;
  background: var(--velvet);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 36px;
  overflow: hidden;
}

.roulette-layout {
  display: grid;
  gap: 16px;
}

@media (min-width: 800px) {
  .roulette-layout {
    grid-template-columns: 1fr 200px;
  }
}

.legal-panel {
  max-width: 860px;
  margin: 20px auto 72px;
  padding: 28px 24px 48px;
  background: var(--ivory);
  color: var(--charcoal);
  border: 1px solid rgba(201, 160, 46, 0.45);
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.locale-block[data-lang] {
  margin: 0;
}

.legal-content {
  max-width: 820px;
  margin: 10px auto;
  padding: 10px 30px;
}

.legal-content h1 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 36px);
  color: var(--burgundy);
  margin-top: 0;
}

.legal-content h2 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--burgundy);
  text-align: left;
  margin-top: 28px;
}

.legal-content p,
.legal-content li {
  color: #2a2535;
}

.legal-content hr {
  border: none;
  border-top: 1px solid var(--marble);
  margin: 28px 0;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 20px 0;
}

.legal-table th,
.legal-table td {
  text-align: left;
  padding: 10px 8px;
  border-bottom: 1px solid var(--marble);
}

.legal-table th {
  font-family: var(--font-ui);
  font-weight: 600;
  color: var(--burgundy);
}

.content-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
}

main.content-page {
  padding-inline: clamp(16px, 4vw, 32px);
  padding-block: 32px 72px;
}

.content-page h1 {
  font-family: var(--font-head);
  color: var(--gold);
}

.faq-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.faq-card {
  border: 1px solid rgba(201, 160, 46, 0.35);
  border-radius: 8px;
  padding: 20px 22px 22px;
  background: rgba(42, 37, 53, 0.42);
}

.faq-card h2 {
  margin: 0 0 10px;
  font-family: var(--font-head);
  font-size: 1.12rem;
  color: var(--gold);
  line-height: 1.35;
}

.faq-card p {
  margin: 0;
  color: var(--ivory);
}

.section-lead-form {
  padding: 56px 20px;
  background: linear-gradient(180deg, rgba(26, 10, 46, 0.35), rgba(10, 5, 20, 0.92));
}

.lead-form-card {
  max-width: 440px;
  margin: 0 auto;
  padding: 28px 26px 32px;
  background: var(--ivory);
  border: 1px solid rgba(201, 160, 46, 0.5);
  border-radius: 10px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
}

.lead-form-card h2 {
  margin: 0 0 6px;
  font-family: var(--font-head);
  color: var(--burgundy);
  font-size: 1.35rem;
}

.lead-form-card .lead-form-lead {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--charcoal);
  margin: 0 0 22px;
  line-height: 1.45;
}

.lead-form .lead-field {
  margin-bottom: 18px;
}

.lead-form label {
  display: block;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.lead-form input {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(42, 37, 53, 0.28);
  background: #fff;
  color: var(--charcoal);
  font-family: var(--font-ui);
  font-size: 15px;
  box-sizing: border-box;
}

.lead-form input:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-color: rgba(201, 160, 46, 0.6);
}

.lead-form .btn {
  width: 100%;
  margin-top: 6px;
}

.prose p {
  margin: 0 0 1em;
}

.header-actions-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.btn-auth-compact {
  padding: 8px 14px !important;
  font-size: 12px !important;
  letter-spacing: 0.05em;
}

.mobile-drawer {
  display: none;
}

/* Mobile: burger opens panel with nav + auth; lang stays in header */
@media (max-width: 900px) {
  .header-actions-main {
    display: none;
  }

  .mobile-drawer {
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.25s ease, padding 0.25s ease;
    padding: 0;
    border-bottom: 1px solid transparent;
  }

  .mobile-drawer.is-open {
    max-height: min(85vh, 640px);
    opacity: 1;
    padding: 8px 0 18px;
    border-bottom-color: rgba(201, 160, 46, 0.22);
  }

  .mobile-drawer__nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 4px 0 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-drawer__nav a {
    font-family: var(--font-ui);
    font-size: 15px;
    font-weight: 500;
    color: var(--ivory);
    text-decoration: none;
    padding: 14px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .mobile-drawer__nav a:hover {
    color: var(--gold);
  }

  .mobile-drawer__nav a:last-child {
    border-bottom: none;
  }

  .mobile-drawer__auth {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 16px;
  }

  .mobile-drawer__bal {
    font-family: var(--font-mono);
    font-size: 15px;
    color: var(--gold);
    margin: 0 0 4px;
  }

  .mobile-drawer__btn {
    width: 100%;
    justify-content: center;
  }

  .header-row--nav.nav-main {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }
}

@media (min-width: 901px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle {
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: rgba(42, 37, 53, 0.55);
  border: 1px solid rgba(201, 160, 46, 0.45);
  color: var(--gold);
  border-radius: var(--radius);
  cursor: pointer;
}

.menu-toggle-bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 20px;
}

.menu-toggle-bars span {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  border-radius: 1px;
}

/* Dashboard stats */
.dash-page {
  max-width: 920px;
}

.dash-head h1 {
  margin-bottom: 8px;
}

.dash-lead {
  color: var(--silver);
  margin-bottom: 28px;
  max-width: 62ch;
}

.dash-table-wrap {
  overflow-x: auto;
  margin-bottom: 32px;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 160, 46, 0.22);
  background: rgba(42, 37, 53, 0.35);
}

.dash-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-ui);
  font-size: 14px;
}

.dash-table th,
.dash-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dash-table th {
  font-weight: 600;
  color: var(--silver);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dash-table td strong {
  color: var(--gold);
  font-weight: 600;
}

.dash-table tr:last-child td {
  border-bottom: none;
}

.dash-net-pos {
  color: #6ecf9a;
}

.dash-net-neg {
  color: #ff9a9a;
}

.dash-net-zero {
  color: var(--silver);
}

.dash-play-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 8px;
}

.dash-play-row .btn {
  padding: 8px 16px;
  font-size: 13px;
}
