@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;600;700;900&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --gold: #f0b429;
  --gold-dark: #c8870a;
  --gold-light: #ffd96a;
  --red: #e53e3e;
  --green: #38a169;
  --bg-dark: #0a0a0f;
  --bg-card: #13131f;
  --bg-card2: #1a1a2e;
  --border: rgba(240,180,41,0.18);
  --text: #f0f0f0;
  --text-muted: #8888a8;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── BACKGROUND ── */
.site-bg {
  position: fixed;
  inset: 0;
  background: url('bg.webp') center/cover no-repeat;
  opacity: .13;
  z-index: 0;
  pointer-events: none;
}

/* ── HEADER ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,15,.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(240,180,41,.4));
}

nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: .875rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}

nav a:hover, nav a.active {
  color: var(--gold);
  background: rgba(240,180,41,.08);
}

.header-cta {
  margin-left: auto;
  flex-shrink: 0;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 10px;
  font-family: 'Unbounded', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform .15s, box-shadow .15s, filter .15s;
}

.btn:hover { transform: translateY(-2px); filter: brightness(1.1); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0a0a0f;
  box-shadow: 0 4px 20px rgba(240,180,41,.35);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}

.btn-outline:hover { background: rgba(240,180,41,.08); }

.btn-lg { padding: 16px 40px; font-size: .95rem; }

/* ── WINS TICKER ── */
.wins-ticker {
  background: rgba(240,180,41,.06);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.ticker-track {
  display: flex;
  gap: 40px;
  animation: ticker-scroll 30s linear infinite;
  white-space: nowrap;
}

.ticker-track:hover { animation-play-state: paused; }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

.ticker-item .winner { color: var(--gold-light); font-weight: 600; }
.ticker-item .amount { color: #4ade80; font-weight: 700; }
.ticker-item .game { color: var(--text-muted); }

/* ── HERO ── */
.hero {
  position: relative;
  z-index: 1;
  padding: 80px 24px 60px;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,180,41,.1);
  border: 1px solid rgba(240,180,41,.3);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 28px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 30%, var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 600px;
  margin-inline: auto;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* ── STATS ── */
.stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 60px;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
}

.stat-label {
  font-size: .78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 4px;
}

/* ── SECTION ── */
section {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 72px;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
  flex-wrap: wrap;
}

.section-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.section-title span { color: var(--gold); }

.section-link {
  font-size: .85rem;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity .2s;
}

.section-link:hover { opacity: .75; }

/* ── GAME CARDS ── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 16px;
}

.game-card {
  background: var(--bg-card);
  border-radius: 14px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.6), 0 0 0 1px rgba(240,180,41,.3);
  border-color: rgba(240,180,41,.35);
}

.game-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.game-info {
  padding: 12px 14px 14px;
}

.game-name {
  font-weight: 600;
  font-size: .875rem;
  color: var(--text);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-provider {
  font-size: .75rem;
  color: var(--text-muted);
}

.game-rtp {
  float: right;
  font-size: .7rem;
  background: rgba(74,222,128,.12);
  color: #4ade80;
  padding: 2px 8px;
  border-radius: 100px;
  font-weight: 600;
  margin-top: -2px;
}

.game-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: .68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.badge-hot { background: #e53e3e; color: #fff; }
.badge-new { background: var(--gold); color: #000; }
.badge-jackpot { background: linear-gradient(90deg, #7c3aed, #ec4899); color: #fff; }

/* ── PROMO BANNER ── */
.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 700px) { .promo-grid { grid-template-columns: 1fr; } }

.promo-card {
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  overflow: hidden;
  position: relative;
}

.promo-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,.5); }

.promo-card-1 { background: linear-gradient(135deg, #1a0a3a 0%, #2d1b69 100%); }
.promo-card-2 { background: linear-gradient(135deg, #0a2a1a 0%, #0d4a2a 100%); }

.promo-tag {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  color: var(--gold);
}

.promo-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}

.promo-desc {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
}

.promo-emoji {
  position: absolute;
  right: 24px;
  bottom: 20px;
  font-size: 5rem;
  opacity: .2;
  pointer-events: none;
}

/* ── LIVE TABLE CARDS ── */
.live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.live-card {
  background: var(--bg-card2);
  border-radius: 14px;
  border: 1px solid var(--border);
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: transform .2s, box-shadow .2s;
}

.live-card:hover { transform: translateY(-4px); box-shadow: 0 14px 35px rgba(0,0,0,.5); }

.live-thumb {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
}

.live-indicator {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(229,62,62,.85);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .2; }
}

.live-info { padding: 14px 16px; }
.live-name { font-weight: 700; font-size: .95rem; margin-bottom: 6px; }

.live-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  color: var(--text-muted);
}

.live-players { color: #60a5fa; font-weight: 600; }

/* ── WIN FEED (live sidebar style) ── */
.win-feed {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  max-height: 340px;
  overflow: hidden;
}

.win-feed-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-family: 'Unbounded', sans-serif;
  font-size: .85rem;
  font-weight: 700;
}

.win-feed-list { display: flex; flex-direction: column; gap: 8px; }

.win-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255,255,255,.03);
  border-radius: 8px;
  animation: fadeIn .4s ease;
  font-size: .82rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.win-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.win-user { font-weight: 600; color: var(--text); }
.win-game { color: var(--text-muted); flex: 1; }
.win-prize { color: #4ade80; font-weight: 700; font-size: .9rem; white-space: nowrap; }

/* ── TWO-COL LAYOUT ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}

@media (max-width: 1000px) {
  .two-col { grid-template-columns: 1fr; }
}

/* ── PAYMENT ICONS ── */
.payments {
  padding: 32px 24px 48px;
  max-width: 1280px;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}

.payments-title {
  text-align: center;
  font-size: .8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 20px;
}

.payments-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  opacity: .55;
  filter: grayscale(1);
  transition: opacity .3s, filter .3s;
}

.payments-row:hover { opacity: .9; filter: grayscale(0); }

.pay-icon {
  font-size: 1.6rem;
  padding: 10px 16px;
  background: var(--bg-card);
  border-radius: 8px;
  border: 1px solid var(--border);
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 24px 32px;
  z-index: 1;
  position: relative;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 260px 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
}

.footer-logo img {
  height: 38px;
  margin-bottom: 14px;
  filter: drop-shadow(0 0 8px rgba(240,180,41,.3));
}

.footer-desc {
  font-size: .83rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-col h4 {
  font-family: 'Unbounded', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold);
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: .84rem;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color .2s;
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: .78rem;
  color: var(--text-muted);
}

.age-badge {
  font-family: 'Unbounded', sans-serif;
  font-size: .85rem;
  font-weight: 900;
  color: var(--gold-dark);
  border: 2px solid var(--gold-dark);
  border-radius: 6px;
  padding: 3px 8px;
}

/* ── PAGE HEADER ── */
.page-hero {
  position: relative;
  z-index: 1;
  padding: 56px 24px 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.page-hero h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
}

/* ── FILTER TABS ── */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.filter-tab {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  background: transparent;
  transition: all .2s;
}

.filter-tab:hover, .filter-tab.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(240,180,41,.08);
}

/* ── BONUS CARDS ── */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.bonus-card {
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--bg-card);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}

.bonus-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.5); }

.bonus-icon {
  font-size: 2.8rem;
}

.bonus-tag {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  font-weight: 700;
}

.bonus-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
}

.bonus-amount {
  font-family: 'Unbounded', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bonus-desc {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.bonus-terms {
  font-size: .73rem;
  color: var(--text-muted);
  opacity: .7;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 24px 0;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  flex-wrap: wrap;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: var(--text-muted);
}

.breadcrumb-list li::after {
  content: '›';
  color: var(--text-muted);
  opacity: .5;
}

.breadcrumb-list li:last-child::after { display: none; }

.breadcrumb-list a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s;
}

.breadcrumb-list a:hover { color: var(--gold); }
.breadcrumb-list li[aria-current="page"] { color: var(--gold); }

/* ── SEO ARTICLE ── */
.seo-article {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 72px;
}

.seo-article-inner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 56px;
}

@media (max-width: 768px) {
  .seo-article-inner { padding: 28px 24px; }
}

.seo-article-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.seo-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 56px;
}

@media (max-width: 900px) {
  .seo-sections { grid-template-columns: 1fr; gap: 32px; }
}

.seo-section h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
  line-height: 1.4;
}

.seo-section p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.seo-section p a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(240,180,41,.3);
  transition: border-color .2s;
}

.seo-section p a:hover { border-color: var(--gold); }

/* ── FAQ ── */
.faq-section {
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.faq-section-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 768px) {
  .faq-list { grid-template-columns: 1fr; }
}

.faq-item {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 22px;
}

.faq-q {
  font-size: .88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.45;
}

.faq-a {
  font-size: .84rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── RELATED LINKS ── */
.related-links {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.related-links-title {
  font-family: 'Unbounded', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .07em;
}

.related-links-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.related-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(240,180,41,.06);
  border: 1px solid rgba(240,180,41,.2);
  border-radius: 8px;
  font-size: .82rem;
  color: var(--gold);
  text-decoration: none;
  transition: background .2s, border-color .2s;
}

.related-link:hover {
  background: rgba(240,180,41,.12);
  border-color: rgba(240,180,41,.4);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .header-inner { gap: 16px; }
  nav a { padding: 8px 10px; font-size: .8rem; }
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  .hero { padding: 48px 24px 40px; }
}

@media (max-width: 480px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  nav a { display: none; }
  nav a.active { display: block; }
}

/* ── JACKPOT COUNTER ── */
.jackpot-banner {
  background: linear-gradient(135deg, #1a0a3a, #0d0520);
  border: 1px solid rgba(124,58,237,.4);
  border-radius: 16px;
  padding: 28px 36px;
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.jackpot-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(124,58,237,.25) 0%, transparent 70%);
  pointer-events: none;
}

.jackpot-label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(167,139,250,.8);
  margin-bottom: 8px;
  font-weight: 600;
}

.jackpot-amount {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  background: linear-gradient(90deg, #a78bfa, #f472b6, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: .02em;
}

.jackpot-note {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  margin-top: 8px;
}
