
:root {
  --bg-dark: #0B0609;
  --bg-surface: #140A10;
  --bg-card: #1E0F19;
  --bg-card-hover: #2B1624;
  --gold-primary: #F59E0B;
  --gold-light: #FDE68A;
  --gold-dark: #B45309;
  --accent-crimson: #DC2626;
  --text-light: #FAF5FF;
  --text-muted: #A89CA4;
  --border-gold: rgba(245, 158, 11, 0.22);
  --border-gold-hover: rgba(245, 158, 11, 0.6);
  --radius-md: 12px;
  --radius-lg: 18px;
  --container-width: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 20px; }

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 6, 9, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-gold);
  padding: 16px 0;
}
.header-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.header-logo img { height: 40px; width: auto; }
.nav-menu { display: flex; list-style: none; gap: 28px; align-items: center; }
.nav-menu a { font-size: 15px; font-weight: 600; color: var(--text-muted); transition: color 0.2s; }
.nav-menu a:hover { color: var(--gold-primary); }
.header-actions { display: flex; gap: 12px; align-items: center; }
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
  color: #0B0609;
  border: none;
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.3);
  transition: all 0.25s;
}
.btn-gold:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(245, 158, 11, 0.45); }
.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  background: transparent;
  color: var(--gold-primary);
  border: 1px solid var(--border-gold);
  transition: all 0.2s;
}
.btn-outline-gold:hover { background: var(--bg-card); border-color: var(--gold-primary); }

.hero-cinema {
  padding: 70px 0 50px;
  text-align: center;
  background: radial-gradient(circle at 50% 10%, rgba(245, 158, 11, 0.18) 0%, transparent 60%),
              radial-gradient(circle at 50% 90%, rgba(220, 38, 38, 0.12) 0%, transparent 50%);
  position: relative;
}
.gold-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cinema-title { font-size: 44px; font-weight: 900; line-height: 1.15; margin-bottom: 16px; color: #fff; max-width: 860px; margin-left: auto; margin-right: auto; }
.cinema-title span { color: var(--gold-primary); }
.cinema-lead { font-size: 18px; color: var(--text-muted); margin-bottom: 34px; max-width: 680px; margin-left: auto; margin-right: auto; }

.jackpot-board {
  max-width: 640px;
  margin: 0 auto 34px;
  background: linear-gradient(180deg, #24131F 0%, #170B13 100%);
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  padding: 20px 30px;
  box-shadow: 0 0 35px rgba(245, 158, 11, 0.25);
  position: relative;
}
.jackpot-label { font-size: 13px; font-weight: 800; color: var(--gold-light); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; }
.jackpot-amount { font-size: 42px; font-weight: 900; color: #fff; text-shadow: 0 0 20px rgba(245, 158, 11, 0.6); font-family: monospace; }
.cinema-actions { display: flex; justify-content: center; gap: 16px; margin-bottom: 40px; }

.metrics-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 800px; margin: 0 auto; }
.metric-card {
  background: rgba(30, 15, 25, 0.7);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: center;
}
.metric-val { font-size: 24px; font-weight: 800; color: var(--gold-primary); margin-bottom: 4px; }
.metric-desc { font-size: 13px; color: var(--text-muted); }

.vip-strip-section { padding: 30px 0; }
.vip-banner {
  background: linear-gradient(90deg, #2D1424 0%, #1A0B14 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 24px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.vip-info h3 { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.vip-info p { font-size: 14px; color: var(--text-muted); }

.slots-section { padding: 60px 0 70px; }
.section-header { text-align: center; margin-bottom: 44px; }
.eyebrow { color: var(--gold-primary); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
.section-title { font-size: 34px; font-weight: 900; color: #fff; margin-bottom: 12px; }
.section-desc { font-size: 16px; color: var(--text-muted); max-width: 620px; margin: 0 auto; }

.slots-grid-gold { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.slot-card-gold {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}
.slot-card-gold:hover { transform: translateY(-6px); border-color: var(--border-gold-hover); box-shadow: 0 14px 32px rgba(245, 158, 11, 0.22); }
.slot-thumb-wrap { position: relative; aspect-ratio: 4/3; width: 100%; overflow: hidden; background: #000; }
.slot-thumb-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.slot-card-gold:hover .slot-thumb-wrap img { transform: scale(1.08); }
.rtp-pill {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(11, 6, 9, 0.85);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 2;
}
.slot-overlay-dual {
  position: absolute;
  inset: 0;
  background: rgba(11, 6, 9, 0.88);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 3;
}
.slot-card-gold:hover .slot-overlay-dual { opacity: 1; }
.btn-slot-play { width: 130px; text-align: center; }
.btn-slot-demo { width: 130px; text-align: center; }
.slot-bottom-gold { padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; background: var(--bg-surface); border-top: 1px solid rgba(255,255,255,0.05); }
.slot-name-gold { font-size: 16px; font-weight: 700; color: #fff; }
.slot-prov-gold { font-size: 13px; color: var(--gold-primary); font-weight: 600; }

.bonuses-section { padding: 70px 0; background: var(--bg-surface); }
.bonuses-split-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.bonus-promo-box {
  background: linear-gradient(145deg, #24111E 0%, #150912 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.bonus-promo-box:hover { border-color: var(--gold-primary); }
.promo-tag { font-size: 12px; font-weight: 800; color: var(--gold-primary); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; }
.promo-heading { font-size: 26px; font-weight: 900; color: #fff; margin-bottom: 12px; }
.promo-text { font-size: 15px; color: var(--text-muted); margin-bottom: 24px; }

.steps-section { padding: 70px 0; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step-item {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 24px;
  position: relative;
}
.step-num-badge {
  width: 38px;
  height: 38px;
  background: var(--gold-primary);
  color: #0B0609;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 16px;
}
.step-title { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.step-desc { font-size: 14px; color: var(--text-muted); }

.about-section { padding: 80px 0; background: var(--bg-surface); }
.about-box { max-width: 900px; margin: 0 auto; }
.about-title { font-size: 32px; font-weight: 900; margin-bottom: 24px; color: #fff; text-align: center; }
.about-content p { font-size: 16px; color: #E2D9E0; margin-bottom: 18px; line-height: 1.7; }
.about-content h3 { font-size: 22px; font-weight: 700; color: var(--gold-light); margin: 28px 0 14px; }
.about-content ul { margin-left: 20px; margin-bottom: 20px; color: #E2D9E0; }
.about-content li { margin-bottom: 8px; }
.gold-table-wrap { overflow-x: auto; margin: 24px 0; border: 1px solid var(--border-gold); border-radius: var(--radius-md); }
.gold-table { width: 100%; border-collapse: collapse; text-align: left; }
.gold-table th, .gold-table td { padding: 14px 18px; border-bottom: 1px solid var(--border-gold); }
.gold-table th { background: #1C0F17; color: var(--gold-primary); font-size: 14px; }
.gold-table td { font-size: 14px; color: #E2D9E0; }

.faq-section { padding: 80px 0; }
.faq-grid-2col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 1000px; margin: 0 auto; }
.faq-box-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all 0.25s;
}
.faq-box-card.active { border-color: var(--gold-primary); background: #261320; }
.faq-box-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}
.faq-box-title { font-size: 17px; font-weight: 700; color: #fff; }
.faq-chevron { width: 20px; height: 20px; fill: var(--gold-primary); transition: transform 0.3s; flex-shrink: 0; }
.faq-box-card.active .faq-chevron { transform: rotate(180deg); }
.faq-box-body { padding-top: 14px; display: none; color: var(--text-muted); font-size: 15px; line-height: 1.6; }
.faq-box-card.active .faq-box-body { display: block; }

.footer { background: #060305; border-top: 1px solid var(--border-gold); padding: 50px 0 30px; }
.footer-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; margin-bottom: 30px; }
.footer-logo img { height: 34px; width: auto; }
.footer-nav { display: flex; gap: 24px; list-style: none; }
.footer-nav a { font-size: 14px; color: var(--text-muted); }
.footer-nav a:hover { color: var(--gold-primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: #7A6C75; flex-wrap: wrap; gap: 14px; }

@media (max-width: 992px) {
  .slots-grid-gold { grid-template-columns: repeat(2, 1fr); }
  .bonuses-split-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid-2col { grid-template-columns: 1fr; }
  .nav-menu { display: none; }
}
@media (max-width: 600px) {
  .slots-grid-gold { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .metrics-strip { grid-template-columns: 1fr; }
  .cinema-title { font-size: 28px; }
  .jackpot-amount { font-size: 30px; }
}
