/* ============================================
   BRAND - Casino & Sportsbook Theme
   Dark style, mobile-first, production-ready
   ============================================ */

:root {
  --bg: #0b0d11;
  --bg-2: #101216;
  --bg-3: #15181f;
  --surface: #1a1d24;
  --surface-hover: #232730;
  --border: #262a33;
  --text: #e8eaed;
  --text-2: #9aa0a6;
  --muted: #6b7280;
  --gold: #d4af37;
  --gold-2: #f1c659;
  --accent: #22c55e;
  --danger: #ef4444;
  --radius: 12px;
  --radius-lg: 18px;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --container: 1200px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.25; color: #fff; }
h1 { font-size: clamp(1.8rem, 4vw, 2.75rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 1rem; }
h3 { font-size: 1.15rem; margin-bottom: .5rem; }
h4 { font-size: 1rem; margin-bottom: .5rem; }

p { color: var(--text-2); margin-bottom: 0.75rem; }

.eyebrow {
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: .5rem;
}

.section-lead {
  max-width: 760px;
  margin-bottom: 2.5rem;
  font-size: 1rem;
  color: var(--text-2);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .85rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #1a1206;
  box-shadow: 0 6px 18px rgba(212,175,55,.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(212,175,55,.35); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-outline:hover { background: var(--surface); border-color: var(--gold); }
.btn-lg { padding: 1.1rem 2.2rem; font-size: 1.05rem; }

/* ============ HEADER ============ */
.site-header {
  background: rgba(11,13,17,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 1.25rem;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--gold);
}
.brand img { width: 36px; height: 36px; object-fit: contain; }

.main-nav ul {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.main-nav a {
  font-size: .92rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color .15s;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--gold); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .4rem;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--text);
  transition: .25s;
  border-radius: 2px;
}

@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: .25s;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
  }
  .main-nav li { border-bottom: 1px solid var(--border); }
  .main-nav li:last-child { border-bottom: 0; }
  .main-nav a { display: block; padding: .9rem 0; }
}

/* ============ HERO ============ */
.hero {
  background:
    radial-gradient(circle at 20% 20%, rgba(212,175,55,.10), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(34,197,94,.06), transparent 50%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  padding: 4rem 0 3rem;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-text h1 { background: linear-gradient(135deg, #fff, var(--gold)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-text p { font-size: 1.05rem; margin-bottom: 1.75rem; }
.hero-cta { display: flex; gap: .75rem; flex-wrap: wrap; }
.hero-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

@media (max-width: 800px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero { padding: 2.5rem 0; }
}

/* ============ QUICK PILLS ============ */
.quick-pills {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.quick-pills .container {
  display: flex;
  gap: .5rem;
  padding: .9rem 1.25rem;
  white-space: nowrap;
}
.quick-pills a {
  padding: .5rem 1rem;
  background: var(--surface);
  border-radius: 999px;
  font-size: .85rem;
  color: var(--text-2);
  border: 1px solid var(--border);
  transition: .15s;
}
.quick-pills a:hover { color: var(--gold); border-color: var(--gold); }

/* ============ SECTIONS ============ */
.section { padding: 4rem 0; }
.section-alt { background: var(--bg-2); }

@media (max-width: 600px) { .section { padding: 2.5rem 0; } }

/* ============ GRIDS ============ */
.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }
.grid-7 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 980px) {
  .grid-7 { grid-template-columns: repeat(3, 1fr); }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-7, .grid-6, .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

/* ============ CARDS ============ */
.card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: .2s;
  cursor: pointer;
}
.card:hover {
  background: var(--surface-hover);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.card h3 { color: var(--gold); margin-bottom: .5rem; }
.card p { font-size: .9rem; margin: 0; }

/* ============ PROMO ============ */
.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2.5rem;
  align-items: center;
}
.promo-visual img { border-radius: var(--radius-lg); border: 1px solid var(--border); }
.promo-visual em { display: block; text-align: center; color: var(--muted); font-size: .85rem; margin-top: .5rem; }

.check-list { display: grid; gap: .75rem; margin-top: 1rem; }
.check-list li {
  padding: .85rem 1rem;
  background: var(--bg-3);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  font-size: .9rem;
  color: var(--text-2);
}
.check-list li strong { color: var(--text); display: block; margin-bottom: 2px; }

@media (max-width: 800px) {
  .promo-grid { grid-template-columns: 1fr; }
}

.offer-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.offer-card h4 { color: var(--gold); }
.offer-card p { font-size: .92rem; margin: 0; }

/* ============ BENEFITS ============ */
.benefit {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  position: relative;
  transition: .2s;
}
.benefit:hover { border-color: var(--gold); transform: translateY(-3px); }
.benefit .num {
  display: inline-block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  opacity: .35;
  margin-bottom: .5rem;
}
.benefit h3 { color: var(--text); }
.benefit p { font-size: .9rem; margin: 0; }

/* ============ OVERVIEW ============ */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
}
@media (max-width: 800px) { .overview-grid { grid-template-columns: 1fr; } }

.dot-list { display: grid; gap: .65rem; }
.dot-list li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-2);
  font-size: .95rem;
}
.dot-list li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: .75rem;
  top: .35rem;
}
.dot-list li strong { color: var(--text); margin-right: .3rem; }

.overview-visual img { border-radius: var(--radius-lg); border: 1px solid var(--border); }
.overview-visual em { display: block; text-align: center; color: var(--muted); font-size: .85rem; margin-top: .5rem; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
@media (max-width: 600px) { .stats { grid-template-columns: repeat(2, 1fr); } }

.stat { text-align: center; }
.stat strong {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat span { display: block; margin-top: .35rem; color: var(--text-2); font-size: .85rem; }

/* ============ PAYMENT ============ */
.pay-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
  transition: .2s;
}
.pay-card:hover { border-color: var(--gold); }
.pay-card strong { display: block; font-size: 1.1rem; color: var(--gold); margin-bottom: .35rem; }
.pay-card span { display: block; font-size: .78rem; color: var(--muted); }

/* ============ WHY CHOOSE / FEAT ============ */
.feat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: .2s;
}
.feat:hover { border-color: var(--gold); transform: translateY(-3px); }
.feat h3 { color: var(--gold); }
.feat p { font-size: .9rem; margin: 0; }

/* ============ COMPARE TABLE ============ */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
.compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  background: var(--surface);
}
.compare th, .compare td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: .92rem;
}
.compare th {
  background: var(--bg-3);
  color: var(--gold);
  font-weight: 600;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.compare td.hi { color: var(--accent); font-weight: 600; }
.compare tr:last-child td { border-bottom: 0; }

/* ============ STEPS ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  counter-reset: step;
}
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .steps { grid-template-columns: 1fr; } }

.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
  transition: .2s;
}
.step:hover { border-color: var(--gold); }
.step-no {
  display: inline-block;
  padding: .25rem .75rem;
  background: rgba(212,175,55,.12);
  color: var(--gold);
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.step h3 { color: var(--text); }
.step p { font-size: .9rem; margin: 0; }

/* ============ TRUST ============ */
.trust {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.trust h3 { color: var(--gold); }
.trust p { font-size: .9rem; margin: 0; }

/* ============ CTA BANNER ============ */
.cta-banner {
  padding: 4rem 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(212,175,55,.15), transparent 60%),
    linear-gradient(135deg, var(--bg-2), var(--bg-3));
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-banner h2 { margin-bottom: 1rem; }
.cta-banner p { max-width: 640px; margin: 0 auto 2rem; font-size: 1.05rem; }

/* ============ SPOTLIGHT ============ */
.spotlight {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 800px) { .spotlight { grid-template-columns: 1fr; } }
.spotlight-img img { border-radius: var(--radius-lg); border: 1px solid var(--border); }
.spotlight-body h3 { color: var(--gold); font-size: 1.35rem; margin-bottom: 1rem; }
.spotlight-body .dot-list { margin: 1rem 0 1.5rem; }

/* ============ TIERS ============ */
.tiers .tier {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  position: relative;
  text-align: center;
  transition: .2s;
}
.tiers .tier:hover { transform: translateY(-4px); }
.tiers .tier.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(212,175,55,.05), var(--surface));
}
.tiers .tier .badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #1a1206;
  padding: .25rem .85rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.tier-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  margin: .5rem 0 1.25rem;
}
.tier ul { display: grid; gap: .5rem; margin-top: 1rem; }
.tier ul li {
  padding: .5rem 0;
  border-top: 1px solid var(--border);
  color: var(--text-2);
  font-size: .9rem;
}

/* ============ FAQ ============ */
.faq { display: grid; gap: .75rem; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  transition: .2s;
}
.faq details[open] { border-color: var(--gold); }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  list-style: none;
  position: relative;
  padding-right: 2rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: var(--gold);
  transition: transform .2s;
}
.faq details[open] summary::after { content: '−'; }
.faq details p {
  margin-top: .85rem;
  padding-top: .85rem;
  border-top: 1px solid var(--border);
  font-size: .92rem;
}

/* ============ GUIDE ============ */
.guide { display: grid; gap: 1.5rem; max-width: 900px; }
.guide article {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.guide h3 { color: var(--gold); margin-bottom: .75rem; }
.guide p { font-size: .95rem; margin: 0; }

/* ============ SERVICE AREA ============ */
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1.5rem 0;
}
.area-tags span {
  padding: .4rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: .85rem;
  color: var(--text-2);
}
.map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}
.map iframe { width: 100%; height: 320px; border: 0; display: block; filter: grayscale(.3) invert(.05); }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding-top: 3rem;
  margin-top: 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.foot-col h4 { color: var(--gold); margin-bottom: .75rem; }
.foot-col h5 { color: var(--text); margin-bottom: 1rem; font-size: .9rem; text-transform: uppercase; letter-spacing: 1px; }
.foot-col p { font-size: .9rem; }
.foot-col small { color: var(--muted); }
.foot-col ul li { margin-bottom: .5rem; }
.foot-col a { color: var(--text-2); font-size: .9rem; transition: .15s; }
.foot-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: .85rem; color: var(--muted); margin: 0; }
.back-top {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 38px; height: 38px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.1rem;
  transition: .2s;
}
.back-top:hover { background: var(--gold); color: #1a1206; }

/* ============ UTILITIES ============ */
::selection { background: var(--gold); color: #1a1206; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--surface-hover); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ============================================
   v3 Additions - Nav CTA Button & Social Links
   ============================================ */

/* Highlighted CTA button di nav header */
.main-nav .nav-cta {
  margin-left: 0.5rem;
}
.main-nav .nav-cta a {
  background: linear-gradient(135deg, var(--gold), var(--accent));
  color: var(--bg) !important;
  padding: 0.55rem 1.25rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
}
.main-nav .nav-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.35);
  filter: brightness(1.1);
}

/* Footer social links */
.social-links {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.7rem;
  transition: all 0.2s;
}
.social-links a:hover {
  background: var(--gold);
  color: var(--bg);
  transform: translateY(-2px);
}

/* Mobile nav adjustment for CTA */
@media (max-width: 960px) {
  .main-nav .nav-cta {
    margin: 0.5rem 0 0 0;
  }
  .main-nav .nav-cta a {
    display: block;
    text-align: center;
  }
}
