/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #f0c040;
  --gold2: #e0a020;
  --green: #1db954;
  --dark: #0a0c10;
  --dark2: #111520;
  --dark3: #181d2a;
  --dark4: #1e2535;
  --card: #161b27;
  --border: rgba(240,192,64,.18);
  --text: #e8eaf0;
  --muted: #8890a8;
  --red: #e03060;
  --radius: 12px;
  --glow: 0 0 22px rgba(240,192,64,.35);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', 'Segoe UI', sans-serif;
  background: var(--dark);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--gold2); border-radius: 3px; }

/* ===== HEADER ===== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,12,16,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
}
.header-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 16px;
}
.logo img { height: 44px; display: block; }
.logo { flex-shrink: 0; }

.nav { display: flex; gap: 4px; }
.nav a {
  padding: 8px 16px; border-radius: 8px;
  font-size: .95rem; font-weight: 700; color: var(--muted);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav a:hover, .nav a.active {
  color: var(--gold); background: rgba(240,192,64,.1);
}

.header-btns { display: flex; gap: 10px; flex-shrink: 0; }

.btn { display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 22px; border-radius: 10px; font-size: .9rem; font-weight: 800;
  cursor: pointer; border: none; transition: all .2s; white-space: nowrap;
}
.btn-outline {
  background: transparent; color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover { background: rgba(240,192,64,.12); }

.btn-gold {
  background: linear-gradient(135deg, #f0c040, #e09000);
  color: #1a1000; box-shadow: 0 4px 18px rgba(240,160,0,.4);
}
.btn-gold:hover { box-shadow: 0 6px 26px rgba(240,160,0,.6); transform: translateY(-1px); }

.btn-green {
  background: linear-gradient(135deg, #1db954, #0e8c3a);
  color: #fff; box-shadow: 0 4px 18px rgba(29,185,84,.35);
}
.btn-green:hover { box-shadow: 0 6px 24px rgba(29,185,84,.55); transform: translateY(-1px); }

.btn-big { padding: 16px 40px; font-size: 1.15rem; border-radius: 14px; }

/* ===== WINS TICKER ===== */
.wins-bar {
  background: var(--dark2);
  border-bottom: 1px solid var(--border);
  overflow: hidden; height: 44px;
  display: flex; align-items: center;
}
.wins-track {
  display: flex; gap: 0; align-items: center;
  animation: ticker 40s linear infinite;
  white-space: nowrap;
}
.wins-track:hover { animation-play-state: paused; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.win-item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 28px; font-size: .82rem; color: var(--muted);
  border-right: 1px solid var(--border);
}
.win-item .avatar {
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold2), var(--red));
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 900; color: #fff; flex-shrink: 0;
}
.win-item .amount { color: var(--green); font-weight: 800; }
.win-item .game-name { color: var(--text); font-weight: 600; }

/* ===== HERO ===== */
.hero {
  position: relative; overflow: hidden;
  min-height: 560px; display: flex; align-items: center;
  background: linear-gradient(135deg, #0a0c10 0%, #111828 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('background.webp');
  background-size: cover; background-position: center;
  opacity: .22; pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,12,16,.98) 30%, rgba(10,12,16,.3) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 60px 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.hero-label {
  display: inline-block; background: rgba(240,192,64,.15);
  border: 1px solid rgba(240,192,64,.4); color: var(--gold);
  padding: 5px 14px; border-radius: 20px; font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; line-height: 1.15;
  margin-bottom: 16px;
}
.hero h1 span { color: var(--gold); }
.hero p { font-size: 1.05rem; color: var(--muted); line-height: 1.7; margin-bottom: 28px; max-width: 460px; }

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-card {
  background: linear-gradient(135deg, rgba(240,192,64,.12), rgba(224,144,0,.06));
  border: 1.5px solid rgba(240,192,64,.3);
  border-radius: 20px; padding: 36px 32px; text-align: center;
  box-shadow: 0 0 40px rgba(240,192,64,.12);
}
.hero-card .bonus-big {
  font-size: clamp(3rem, 6vw, 5rem); font-weight: 900; color: var(--gold);
  text-shadow: var(--glow); line-height: 1;
}
.hero-card .bonus-fs {
  font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 800; color: #fff; margin: 10px 0 24px;
}
.hero-card .bonus-note { font-size: .82rem; color: var(--muted); margin-top: 12px; }

/* ===== SECTION ===== */
.section { padding: 64px 24px; max-width: 1200px; margin: 0 auto; }
.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 900; margin-bottom: 8px;
}
.section-title span { color: var(--gold); }
.section-sub { color: var(--muted); font-size: .95rem; margin-bottom: 36px; }

/* ===== GAMES GRID ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 16px;
}
.game-card {
  background: var(--card); border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden;
  transition: transform .2s, box-shadow .2s; cursor: pointer;
  position: relative;
}
.game-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(240,192,64,.18); }
.game-card img { width: 100%; height: 140px; object-fit: cover; display: block; }
.game-card-placeholder {
  width: 100%; height: 140px;
  background: linear-gradient(135deg, var(--dark3), var(--dark4));
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
}
.game-card-info { padding: 10px 12px; }
.game-card-info h4 { font-size: .88rem; font-weight: 700; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.game-card-info p { font-size: .76rem; color: var(--muted); }
.game-badge {
  position: absolute; top: 8px; left: 8px;
  background: var(--red); color: #fff;
  font-size: .68rem; font-weight: 800; padding: 2px 7px; border-radius: 4px;
  text-transform: uppercase;
}
.game-badge.hot { background: linear-gradient(135deg, #f05000, #e02000); }
.game-badge.new { background: linear-gradient(135deg, var(--green), #0a7030); }

.game-overlay {
  position: absolute; inset: 0;
  background: rgba(10,12,20,.85);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .2s;
}
.game-card:hover .game-overlay { opacity: 1; }
.play-btn {
  background: var(--gold); color: #1a1000;
  padding: 9px 22px; border-radius: 8px; font-weight: 800; font-size: .9rem;
}

/* ===== BONUS BANNER ===== */
.bonus-banner {
  background: linear-gradient(135deg, #1a1000, #0f1820);
  border: 1.5px solid rgba(240,192,64,.3);
  border-radius: 20px; padding: 40px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  position: relative; overflow: hidden;
}
.bonus-banner::before {
  content: ''; position: absolute; right: -40px; top: -40px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(240,192,64,.12), transparent 70%);
  pointer-events: none;
}
.bonus-banner-text h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 900; margin-bottom: 8px; }
.bonus-banner-text h2 span { color: var(--gold); }
.bonus-banner-text p { color: var(--muted); max-width: 500px; line-height: 1.65; }

/* ===== FEATURES ===== */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px;
}
.feature-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  transition: border-color .2s, box-shadow .2s;
}
.feature-card:hover { border-color: rgba(240,192,64,.5); box-shadow: 0 8px 24px rgba(240,192,64,.1); }
.feature-icon { font-size: 2rem; margin-bottom: 14px; }
.feature-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 8px; }
.feature-card p { font-size: .88rem; color: var(--muted); line-height: 1.6; }

/* ===== LIVE STATS ===== */
.live-stats {
  display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px;
}
.stat-pill {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 40px; padding: 10px 22px;
  display: flex; align-items: center; gap: 8px;
}
.stat-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 1.5s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
.stat-pill span { font-size: .88rem; font-weight: 700; }
.stat-pill strong { color: var(--gold); }

/* ===== INFO BLOCKS ===== */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; }
.info-block { }
.info-block h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 10px; color: var(--gold); }
.info-block p, .info-block li { font-size: .9rem; color: var(--muted); line-height: 1.75; }
.info-block ul { padding-left: 18px; }
.info-block li { margin-bottom: 4px; }
.info-block ol { padding-left: 18px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark2); border-top: 1px solid var(--border);
  padding: 48px 24px 24px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: flex; gap: 40px; flex-wrap: wrap; margin-bottom: 36px; }
.footer-brand { flex: 0 0 260px; }
.footer-brand img { height: 38px; margin-bottom: 14px; }
.footer-brand p { font-size: .84rem; color: var(--muted); line-height: 1.7; }
.footer-col h4 { font-size: .9rem; font-weight: 800; color: var(--gold); margin-bottom: 14px; text-transform: uppercase; letter-spacing: .5px; }
.footer-col a { display: block; font-size: .85rem; color: var(--muted); margin-bottom: 8px; transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .78rem; color: var(--muted); }
.footer-18 {
  background: var(--dark3); border: 1px solid var(--border);
  border-radius: 6px; padding: 3px 9px; font-size: .78rem; font-weight: 800; color: var(--muted);
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: rgba(10,12,16,.96); backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  padding: 8px 0 12px;
}
.mobile-nav-inner { display: flex; justify-content: space-around; }
.mobile-nav a {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  font-size: .68rem; font-weight: 700; color: var(--muted); padding: 4px 10px;
  transition: color .2s;
}
.mobile-nav a .nav-icon { font-size: 1.3rem; }
.mobile-nav a.active, .mobile-nav a:hover { color: var(--gold); }

/* ===== PAGE BANNER ===== */
.page-banner {
  background: linear-gradient(135deg, var(--dark2), var(--dark3));
  border-bottom: 1px solid var(--border);
  padding: 48px 24px 40px;
  text-align: center; position: relative; overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image: url('background.webp');
  background-size: cover; background-position: center;
  opacity: .1; pointer-events: none;
}
.page-banner-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.page-banner h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; margin-bottom: 10px; }
.page-banner h1 span { color: var(--gold); }
.page-banner p { color: var(--muted); font-size: 1rem; line-height: 1.7; }

/* ===== TABS ===== */
.tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 28px; }
.tab-btn {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 8px; padding: 8px 18px;
  font-size: .88rem; font-weight: 700; color: var(--muted);
  cursor: pointer; transition: all .2s;
}
.tab-btn:hover, .tab-btn.active { background: rgba(240,192,64,.12); border-color: rgba(240,192,64,.5); color: var(--gold); }

/* ===== BONUS CARDS ===== */
.bonus-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.bonus-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 18px; overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.bonus-card:hover { box-shadow: 0 12px 36px rgba(240,192,64,.15); transform: translateY(-3px); }
.bonus-card-header {
  background: linear-gradient(135deg, rgba(240,192,64,.15), rgba(224,144,0,.08));
  padding: 28px 24px; text-align: center; border-bottom: 1px solid var(--border);
}
.bonus-card-header .b-icon { font-size: 2.4rem; margin-bottom: 10px; }
.bonus-card-header .b-amount { font-size: 2.2rem; font-weight: 900; color: var(--gold); }
.bonus-card-header .b-type { font-size: .85rem; color: var(--muted); margin-top: 4px; }
.bonus-card-body { padding: 22px 24px; }
.bonus-card-body h3 { font-size: 1rem; font-weight: 800; margin-bottom: 10px; }
.bonus-card-body ul { list-style: none; }
.bonus-card-body li { font-size: .86rem; color: var(--muted); padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.05); display: flex; gap: 8px; }
.bonus-card-body li::before { content: '✓'; color: var(--green); font-weight: 800; flex-shrink: 0; }
.bonus-card-footer { padding: 16px 24px 24px; }

/* ===== LIVE TABLE ===== */
.live-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px; }
.live-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.live-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(240,192,64,.15); }
.live-card-img {
  height: 150px; background: linear-gradient(135deg, #1a0520, #001a2e);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; position: relative;
}
.live-badge {
  position: absolute; top: 8px; right: 8px;
  background: var(--red); color: #fff;
  font-size: .68rem; font-weight: 800; padding: 3px 8px; border-radius: 4px;
  display: flex; align-items: center; gap: 4px;
}
.live-badge::before { content: '●'; font-size: .6rem; animation: pulse 1s infinite; }
.live-card-info { padding: 14px 16px; }
.live-card-info h4 { font-size: .92rem; font-weight: 800; margin-bottom: 4px; }
.live-card-info p { font-size: .8rem; color: var(--muted); }
.live-card-info .players { font-size: .78rem; color: var(--green); margin-top: 6px; font-weight: 700; }

/* ===== PROVIDERS ===== */
.providers-row {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
}
.provider-tag {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 8px; padding: 8px 18px;
  font-size: .82rem; font-weight: 700; color: var(--muted);
  transition: all .2s;
}
.provider-tag:hover { border-color: rgba(240,192,64,.5); color: var(--text); }

/* ===== DIVIDER ===== */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ===== SEO ARTICLE ===== */
.seo-article-wrap {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 24px;
}
.seo-article-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 48px;
}
.seo-article { }
.seo-article__header { margin-bottom: 36px; }
.seo-article__title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 900; margin-bottom: 12px;
}
.seo-article__title span { color: var(--gold); }
.seo-article__lead {
  font-size: .98rem; color: var(--muted); line-height: 1.75; max-width: 820px;
}
.seo-article__section { margin-bottom: 32px; }
.seo-article__h2 {
  font-size: 1.15rem; font-weight: 800; margin-bottom: 10px;
  color: var(--text); padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.seo-article__section p {
  font-size: .92rem; color: var(--muted); line-height: 1.8; max-width: 820px;
}
.seo-article__link { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.seo-article__link:hover { color: var(--text); }

/* ===== SEO FAQ ===== */
.seo-faq { }
.seo-faq__title {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 900; margin-bottom: 24px;
}
.seo-faq__list { display: flex; flex-direction: column; gap: 14px; }
.seo-faq__item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px 22px;
}
.seo-faq__question {
  font-size: .97rem; font-weight: 800; margin-bottom: 8px; color: var(--text);
}
.seo-faq__answer p {
  font-size: .88rem; color: var(--muted); line-height: 1.75; margin: 0;
}

/* ===== SEO INTERNAL LINKS ===== */
.seo-links { }
.seo-links__title {
  font-size: 1rem; font-weight: 800; color: var(--muted);
  text-transform: uppercase; letter-spacing: .5px; margin-bottom: 14px;
}
.seo-links__list {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.seo-links__item {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 8px; padding: 9px 16px;
  font-size: .88rem; font-weight: 700; color: var(--text);
  transition: border-color .2s, color .2s;
}
.seo-links__item:hover { border-color: rgba(240,192,64,.5); color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .hero { min-height: 420px; }
  .hero h1 { font-size: 2rem; }
  .bonus-banner { flex-direction: column; text-align: center; }
  .mobile-nav { display: block; }
  .footer { padding-bottom: 88px; }
  body { padding-bottom: 0; }
  .header-btns .btn-outline { display: none; }
}
@media (max-width: 480px) {
  .header-inner { padding: 0 4px; }
  .btn-big { padding: 13px 28px; font-size: 1rem; }
}
