/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0a0a0a;
  --bg-card: #141414;
  --bg-elevated: #1a1a1a;
  --gold: #d4af37;
  --gold-light: #f0d78c;
  --gold-dark: #b8960c;
  --red: #8b0000;
  --red-bright: #c41e3a;
  --text: #f5f5f5;
  --text-muted: #a0a0a0;
  --border: rgba(212, 175, 55, 0.25);
  --radius: 12px;
  --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.15);
  --font-display: 'Cinzel', serif;
  --font-body: 'Montserrat', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: linear-gradient(90deg, #1a1200, #2a1f00, #1a1200);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  color: var(--gold-light);
  font-weight: 500;
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 1px;
}

.logo-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: radial-gradient(circle, #8b0000 0%, #1a0505 100%);
  border: 2px solid var(--gold);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gold-light);
  flex-shrink: 0;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text {
  font-size: 1.15rem;
  color: var(--gold-light);
}

.logo-sub {
  font-size: 0.6rem;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 500;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

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

.btn-nav {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #0a0a0a !important;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600 !important;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 60px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(139, 0, 0, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #0a0a0a 0%, #0f0a05 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.brand-badge {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
  font-weight: 600;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero h1 .gold {
  color: var(--gold-light);
  display: block;
}

.tagline {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 420px;
  margin-bottom: 32px;
}

.offer-cards {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.offer-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 28px;
  text-align: center;
  min-width: 140px;
  box-shadow: var(--shadow-gold);
}

.offer-card.highlight {
  background: linear-gradient(145deg, #1a1505, #2a2008);
  border-color: var(--gold);
}

.offer-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.1;
}

.offer-label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 600;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: #0a0a0a;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(212, 175, 55, 0.5);
}

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

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}

.payment-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.payment-row > span {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pay-logo {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,0.08);
}

.pay-logo.chime { color: #00c853; }
.pay-logo.cashapp { color: #00d632; }
.pay-logo.paypal { color: #0070ba; }
.pay-logo.crypto { color: #f7931a; }

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-height: 620px;
  width: auto;
  border-radius: 16px;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.6),
    0 0 40px rgba(212, 175, 55, 0.12);
  object-fit: contain;
}

/* ===== SECTIONS ===== */
.section {
  padding: 90px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--gold-light);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ===== OFFERS ===== */
.offers {
  background: linear-gradient(180deg, #0a0a0a 0%, #0f0c06 50%, #0a0a0a 100%);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.offer-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}

.offer-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.offer-box.featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, #1a1508, #12100a);
}

.ribbon {
  position: absolute;
  top: 14px;
  right: -8px;
  background: var(--red-bright);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 4px 0 0 4px;
}

.offer-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.offer-box h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.offer-box p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== GAMES ===== */
.games {
  background: #0a0a0a;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}

.game-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 14px;
  text-align: center;
  transition: all 0.25s;
  cursor: default;
}

.game-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.2);
  transform: translateY(-4px);
}

.game-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.game-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.5px;
}

/* ===== REFERRAL ===== */
.referral {
  background: linear-gradient(135deg, #120e05 0%, #0a0a0a 50%, #150a0a 100%);
}

.referral-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.referral-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--gold-light);
  margin-bottom: 16px;
}

.referral-text .lead {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.referral-text .lead strong {
  color: var(--gold);
}

.referral-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.referral-benefits {
  list-style: none;
  margin-bottom: 28px;
}

.referral-benefits li {
  padding: 8px 0;
  font-size: 1rem;
  color: var(--text);
}

.referral-visual {
  display: flex;
  justify-content: center;
}

.referral-card {
  background: linear-gradient(145deg, #1f1808, #0f0c05);
  border: 2px solid var(--gold);
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 0 50px rgba(212, 175, 55, 0.25);
  min-width: 220px;
}

.ref-amount {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.ref-label {
  font-size: 1.1rem;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 600;
  margin: 8px 0 4px;
}

.ref-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== OFFICIAL PAGES ===== */
.pages {
  background: linear-gradient(180deg, #0a0a0a 0%, #0c0a08 100%);
}

.pages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.page-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.25s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-5px);
}

.page-card.main-page {
  border-color: var(--gold);
  background: linear-gradient(160deg, #1a1508, #12100a);
}

.page-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: #0a0a0a;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 4px;
}

.page-badge.backup {
  background: var(--red-bright);
  color: white;
}

.page-logo-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border: 2px solid var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold-light);
}

.page-logo-circle.bella {
  background: radial-gradient(circle, #8b0000 0%, #1a0505 100%);
}

.page-logo-circle.bella2 {
  background: radial-gradient(circle, #4a0000 0%, #0f0505 100%);
}

.page-logo-circle.nexus {
  background: radial-gradient(circle, #1a0a4a 0%, #0a051a 100%);
  border-color: #7b68ee;
  color: #c4b5fd;
}

.page-logo-circle.dallas {
  background: radial-gradient(circle, #1a1a00 0%, #0a0a00 100%);
  border-color: #f0d78c;
  color: #f0d78c;
}

.page-logo-circle.ameristar {
  background: radial-gradient(circle, #001a4a 0%, #000a1a 100%);
  border-color: #60a5fa;
  color: #93c5fd;
}

.page-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.page-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.page-link {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
}

/* ===== PAYMENTS ===== */
.payments {
  background: #0a0a0a;
}

.payments-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.pay-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 32px;
  min-width: 140px;
  text-align: center;
  transition: all 0.2s;
}

.pay-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.pay-name {
  font-weight: 600;
  font-size: 1rem;
}

.pay-name.chime { color: #00c853; }
.pay-name.cashapp { color: #00d632; }
.pay-name.paypal { color: #0070ba; }
.pay-name.crypto { color: #f7931a; }
.pay-name.venmo { color: #008cff; }
.pay-name.apple { color: #a2aaad; }
.pay-name.google { color: #4285f4; }

/* ===== CTA ===== */
.cta {
  padding: 100px 0;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
}

.cta-box {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: var(--shadow-gold);
}

.cta-box h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold-light);
  margin-bottom: 14px;
}

.cta-box > p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.other-pages {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.other-pages a {
  color: var(--gold);
  margin: 0 6px;
}

.other-pages a:hover {
  text-decoration: underline;
}

/* ===== FOOTER ===== */
.footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 40px 0 30px;
}

.footer-top {
  text-align: center;
  margin-bottom: 24px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

.logo-crown {
  color: var(--gold);
  font-size: 1.3rem;
}

.footer-tag {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: #666;
}

.footer-bottom .disclaimer {
  margin-top: 6px;
  font-size: 0.75rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    order: 1;
  }

  .hero-image {
    order: 0;
  }

  .hero-image img {
    max-height: 420px;
  }

  .tagline {
    margin-left: auto;
    margin-right: auto;
  }

  .offer-cards {
    justify-content: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .payment-row {
    align-items: center;
  }

  .payment-logos {
    justify-content: center;
  }

  .referral-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .referral-benefits {
    display: inline-block;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #111;
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }

  .nav.open {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 40px 0 60px;
  }

  .section {
    padding: 60px 0;
  }

  .cta-box {
    padding: 36px 24px;
  }

  .logo-sub {
    display: none;
  }
}

@media (max-width: 480px) {
  .offer-card {
    min-width: 120px;
    padding: 14px 18px;
  }

  .offer-value {
    font-size: 1.6rem;
  }

  .ref-amount {
    font-size: 3rem;
  }

  .logo-circle {
    width: 40px;
    height: 40px;
    font-size: 0.8rem;
  }
}
