/* =====================================================
   OZ LOTTO CASINO — Shared Stylesheet
   Brand: Dark Navy + Gold + Green | AU Market
   ===================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* --- CSS Variables --- */
:root {
  --bg-base:       #0a0e1a;
  --bg-surface:    #111827;
  --bg-card:       #1a2235;
  --bg-card-hover: #1f2a42;
  --gold:          #f0b429;
  --gold-light:    #ffd700;
  --gold-dark:     #c8941a;
  --green:         #22c55e;
  --green-dark:    #16a34a;
  --red:           #ef4444;
  --text-primary:  #f8fafc;
  --text-muted:    #94a3b8;
  --text-dim:      #64748b;
  --border:        rgba(240, 180, 41, 0.18);
  --border-subtle: rgba(255, 255, 255, 0.07);
  --radius:        10px;
  --radius-lg:     16px;
  --radius-xl:     24px;
  --shadow:        0 4px 24px rgba(0,0,0,0.4);
  --shadow-gold:   0 0 24px rgba(240,180,41,0.18);
  --transition:    0.22s ease;
  --header-h:      72px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

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

ul, ol { padding-left: 1.4em; }
li { margin-bottom: 0.35em; }

/* =====================================================
   HEADER
   ===================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(10, 14, 26, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}

.header-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  height: 64px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.logo-text span {
  color: var(--gold);
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text-primary);
  background: var(--bg-card);
}

/* Header CTA */
.btn-header {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #0a0e1a;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-header:hover {
  background: var(--gold-light);
  color: #0a0e1a;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(240,180,41,0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  padding: 7px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: var(--radius);
  display: block;
  transition: all var(--transition);
}

.mobile-nav a.btn-primary {
  color: #0a0e1a;
}

.mobile-nav a.btn-primary:hover {
  color: #0a0e1a;
}

.mobile-nav a:hover {
  color: var(--text-primary);
  background: var(--bg-card);
}

.mobile-nav .btn-primary {
  margin-top: 8px;
  text-align: center;
}

/* =====================================================
   PAGE OFFSET (fixed header)
   ===================================================== */
.page-body { padding-top: var(--header-h); }

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/img/hero.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transform: scale(1.02);
  filter: brightness(0.45);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,14,26,0.85) 0%,
    rgba(10,14,26,0.5) 50%,
    rgba(10,14,26,0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,180,41,0.15);
  border: 1px solid rgba(240,180,41,0.35);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-headline {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  max-width: 700px;
}

.hero-headline .hl-gold { color: var(--gold); }
.hero-headline .hl-green { color: var(--green); }

.jackpot-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #1a2235, #0f1627);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px 24px;
  margin-bottom: 28px;
}

.jackpot-badge .jb-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.jackpot-badge .jb-amount {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold-light);
  letter-spacing: -0.02em;
  line-height: 1;
}

.jackpot-badge .jb-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(248,250,252,0.8);
  margin-bottom: 32px;
  max-width: 560px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #0a0e1a;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: #0a0e1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(240,180,41,0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.07);
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.35);
}

.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-green:hover {
  background: linear-gradient(135deg, #34d968 0%, var(--green) 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(34,197,94,0.35);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.85rem;
}

/* =====================================================
   TRUST BADGES
   ===================================================== */
.trust-section {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
  padding: 20px 24px;
}

.trust-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  transition: all var(--transition);
}

.trust-badge:hover {
  border-color: var(--border);
  color: var(--text-primary);
}

.trust-badge .tb-icon {
  font-size: 1rem;
  line-height: 1;
}

/* =====================================================
   SLOTS GRID
   ===================================================== */
.slots-section {
  padding: 48px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
  flex-wrap: wrap;
}

.section-title {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-title .st-gold { color: var(--gold); }

.section-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.slot-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: all var(--transition);
  group: true;
}

.slot-card:hover {
  transform: translateY(-4px);
  border-color: var(--border);
  box-shadow: var(--shadow), var(--shadow-gold);
}

.slot-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}

.slot-card:hover img {
  transform: scale(1.05);
}

.slot-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,14,26,0.95) 0%, rgba(10,14,26,0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  opacity: 0;
  transition: opacity var(--transition);
}

.slot-card:hover .slot-card-overlay { opacity: 1; }

.slot-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 14px;
  background: linear-gradient(to top, rgba(10,14,26,0.9), transparent);
}

.slot-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.slot-provider {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
}

.slot-play-btn {
  display: block;
  text-align: center;
  background: var(--gold);
  color: #0a0e1a;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 8px;
  transition: all var(--transition);
}

.slot-play-btn:hover {
  background: var(--gold-light);
  color: #0a0e1a;
}

.slots-see-all {
  display: block;
  text-align: center;
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* =====================================================
   CONTENT BANNER
   ===================================================== */
.content-banner {
  display: block;
  margin: 40px auto;
  max-width: 900px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.content-banner:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.content-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* =====================================================
   SEO CONTENT AREA
   ===================================================== */
.seo-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px 64px;
}

.seo-content h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 20px;
  padding-top: 48px;
}

.seo-content h2 {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-subtle);
}

.seo-content h3 {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 700;
  color: var(--gold);
  margin: 28px 0 12px;
}

.seo-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 20px 0 8px;
}

.seo-content p {
  color: rgba(248,250,252,0.82);
  margin-bottom: 16px;
  font-size: 0.97rem;
  line-height: 1.75;
}

.seo-content strong {
  color: var(--text-primary);
  font-weight: 600;
}

.seo-content ul, .seo-content ol {
  margin-bottom: 16px;
  padding-left: 1.5em;
}

.seo-content li {
  color: rgba(248,250,252,0.8);
  margin-bottom: 6px;
  font-size: 0.97rem;
  line-height: 1.65;
}

.seo-content li strong {
  color: var(--text-primary);
}

/* Lead paragraph */
.seo-content > p:first-of-type {
  font-size: 1.05rem;
  color: rgba(248,250,252,0.9);
  line-height: 1.8;
}

/* CTA within content */
.seo-content .cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #0a0e1a;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 0.95rem;
  margin: 8px 0 20px;
  transition: all var(--transition);
}

.seo-content .cta-link:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: #0a0e1a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240,180,41,0.4);
}

/* Step list (numbered) */
.steps-list {
  counter-reset: steps;
  list-style: none;
  padding-left: 0;
}

.steps-list li {
  counter-increment: steps;
  padding: 16px 16px 16px 56px;
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  margin-bottom: 10px;
}

.steps-list li::before {
  content: counter(steps);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  background: var(--gold);
  color: #0a0e1a;
  font-weight: 800;
  font-size: 0.85rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 28px;
  text-align: center;
}

/* Tip box */
.tip-box {
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 0.9rem;
  color: rgba(248,250,252,0.85);
}

.tip-box strong { color: var(--green); }

/* =====================================================
   TABLES
   ===================================================== */
.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 20px 0;
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
}

.table-scroll::-webkit-scrollbar { height: 6px; }
.table-scroll::-webkit-scrollbar-track { background: var(--bg-surface); }
.table-scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

.seo-content table,
.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 540px;
  font-size: 0.88rem;
}

.seo-content table th,
.data-table th {
  background: var(--bg-card);
  color: var(--gold);
  font-weight: 700;
  padding: 12px 16px;
  text-align: left;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  border-bottom: 1px solid var(--border);
}

.seo-content table td,
.data-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border-subtle);
  color: rgba(248,250,252,0.82);
  vertical-align: middle;
}

.seo-content table tr:last-child td,
.data-table tr:last-child td { border-bottom: none; }

.seo-content table tr:hover td,
.data-table tr:hover td {
  background: rgba(240,180,41,0.04);
  color: var(--text-primary);
}

/* =====================================================
   FAQ
   ===================================================== */
.faq-list {
  list-style: none;
  padding: 0;
}

.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
}

.faq-question {
  padding: 16px 20px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  transition: background var(--transition);
  font-size: 0.95rem;
}

.faq-question:hover { background: var(--bg-card-hover); }

.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-question::after { content: '−'; }

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
  color: rgba(248,250,252,0.8);
  font-size: 0.93rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 600px;
  padding: 16px 20px;
}

/* =====================================================
   PROMO CARDS
   ===================================================== */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
}

.promo-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: all var(--transition);
}

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

.promo-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.promo-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.promo-amount {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.promo-detail {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  padding: 48px 24px 32px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-subtle);
}

.footer-brand .logo { margin-bottom: 14px; }

.footer-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 380px;
  line-height: 1.65;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  align-items: flex-start;
  justify-content: flex-end;
}

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

.footer-nav a:hover { color: var(--text-primary); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.footer-disclaimer {
  font-size: 0.77rem;
  color: var(--text-dim);
  max-width: 680px;
  line-height: 1.65;
}

.footer-badges {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-dim);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 5px 10px;
}

/* =====================================================
   POPUP BOTTOM BANNER
   ===================================================== */
.popup-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 2000;
  background: linear-gradient(135deg, #0f1627 0%, #1a2235 100%);
  border-top: 2px solid var(--gold);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -4px 32px rgba(0,0,0,0.5);
}

.popup-banner.visible { transform: translateY(0); }

.popup-content {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.popup-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.popup-text {
  min-width: 0;
}

.popup-headline {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.popup-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1px;
}

.popup-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #0a0e1a;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  white-space: nowrap;
  transition: all var(--transition);
}

.popup-cta:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: #0a0e1a;
  transform: translateY(-1px);
}

.popup-close {
  flex-shrink: 0;
  width: 30px; height: 30px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  line-height: 1;
}

.popup-close:hover {
  background: rgba(255,255,255,0.15);
  color: var(--text-primary);
}

/* =====================================================
   BREADCRUMB
   ===================================================== */
.breadcrumb {
  padding: 16px 24px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb a, .breadcrumb span {
  font-size: 0.82rem;
  color: var(--text-dim);
}

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

.breadcrumb .bc-sep {
  color: var(--text-dim);
  font-size: 0.75rem;
}

.breadcrumb .bc-current {
  color: var(--text-muted);
  font-weight: 500;
}

/* =====================================================
   UTILITY
   ===================================================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 56px 0;
}

.divider {
  border: none;
  border-top: 1px solid var(--border-subtle);
  margin: 32px 0;
}

/* Bonus highlight box */
.highlight-box {
  background: linear-gradient(135deg, rgba(240,180,41,0.1) 0%, rgba(240,180,41,0.04) 100%);
  border: 1px solid rgba(240,180,41,0.25);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 24px 0;
}

.highlight-box p { color: rgba(248,250,252,0.88); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .slots-grid { grid-template-columns: repeat(3, 1fr); }
  .promo-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }

  .site-nav { display: none; }
  .hamburger { display: flex; }

  .hero { min-height: 420px; }
  .hero-content { padding: 48px 20px; }

  .slots-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .promo-grid { grid-template-columns: 1fr; }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-nav { justify-content: flex-start; }
  .footer-bottom { flex-direction: column; }

  .popup-banner { padding: 12px 16px; gap: 10px; }
  .popup-icon { display: none; }
  .popup-headline { font-size: 0.85rem; }
  .popup-cta { padding: 8px 14px; font-size: 0.82rem; }

  .seo-content { padding: 0 16px 48px; }
  .seo-content h1 { padding-top: 32px; }
  .slots-section { padding: 32px 16px; }
  .trust-section { padding: 16px; }

  .header-inner { padding: 0 16px; }
  .btn-header {
    display: inline-flex;
    padding: 9px 16px;
    font-size: 0.82rem;
  }
}

@media (max-width: 480px) {
  .slots-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .jackpot-badge { flex-wrap: wrap; }
}

/* =====================================================
   PAGE INTRO (for inner pages)
   ===================================================== */
.page-hero {
  position: relative;
  padding: 56px 24px 40px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 20% 50%, rgba(240,180,41,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}

.page-hero .hero-actions { margin-top: 24px; }
