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

:root {
  --bg: #0e0f1a;
  --bg-card: #181929;
  --bg-section: #131424;
  --bg-header: #13142a;
  --primary: #7c3aed;
  --primary-h: #6d28d9;
  --primary-light: rgba(124,58,237,0.15);
  --gold: #f59e0b;
  --gold-h: #d97706;
  --gold-light: rgba(245,158,11,0.12);
  --text: #ffffff;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;
  --border: #2d2e4a;
  --border-light: #1f2040;
  --green: #10b981;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --transition: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; outline: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-header);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 32px;
}
.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.logo img {
  height: 36px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.main-nav a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
  background: var(--primary-light);
}
.header-cta {
  margin-left: auto;
  flex-shrink: 0;
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  background: var(--gold);
  color: #0e0f1a;
  font-weight: 700;
  font-size: 14px;
  border-radius: 8px;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-gold:hover { background: var(--gold-h); transform: translateY(-1px); }
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-primary:hover { background: var(--primary-h); transform: translateY(-1px); }
.btn-lg {
  padding: 14px 32px;
  font-size: 16px;
  border-radius: 10px;
}
.btn-mobile-play {
  display: none;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--bg-header);
  border-top: 1px solid var(--border);
  padding: 12px 20px 16px;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
}
.mobile-nav a:hover { color: var(--text); background: var(--primary-light); }
.mobile-nav .btn-gold {
  margin-top: 8px;
  width: 100%;
  padding: 12px;
  font-size: 15px;
}

/* ── HERO BANNER ── */
.hero {
  position: relative;
  overflow: hidden;
}
.hero-banner {
  display: block;
  width: 100%;
  position: relative;
}
.hero-banner a {
  display: block;
}
.hero-banner img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
}
.hero-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(14,15,26,0.7) 0%, transparent 60%);
}
.hero-inner .container {
  width: 100%;
}
.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  max-width: 420px;
}
.hero-headline {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.hero-headline span { color: var(--gold); }
.page-hero .hero-headline {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-shadow: none;
  margin-bottom: 12px;
}
.hero-text p:not(.hero-headline) {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
}
.hero-text .btn-gold { padding: 12px 28px; font-size: 15px; }

/* Text-only hero (sign-up, games pages) */
.page-hero {
  background: linear-gradient(135deg, #1a0e3a 0%, #0e0f1a 50%, #0a1628 100%);
  padding: 56px 0 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(124,58,237,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .hero-headline span { color: var(--gold); }
.page-hero p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.page-hero .banner-img {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.page-hero .banner-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* ── FEATURES STRIP ── */
.features-strip {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.features-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-right: 1px solid var(--border);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}
.feature-item:last-child { border-right: none; }
.feature-item svg {
  flex-shrink: 0;
  color: var(--gold);
}
.feature-item strong { color: var(--text); }

/* ── CATEGORY TABS ── */
.category-tabs {
  background: var(--bg-section);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}
.category-tabs::-webkit-scrollbar { display: none; }
.tabs-inner {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 20px;
  width: max-content;
  min-width: 100%;
}
.tab-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  background: transparent;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
  border: 1px solid transparent;
}
.tab-btn:hover {
  color: var(--text);
  background: var(--primary-light);
}
.tab-btn.active {
  color: var(--text);
  background: var(--primary);
  border-color: var(--primary);
}
.tab-icon {
  font-size: 16px;
}

/* ── SECTION HEADER ── */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.section-title {
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 20px;
  background: var(--primary);
  border-radius: 2px;
}
.see-all {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  transition: color var(--transition);
}
.see-all:hover { color: var(--gold); }

/* ── GAMES SECTION ── */
.games-section {
  padding: 32px 0;
  background: var(--bg);
}

/* ── SLOT GRID ── */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.game-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  aspect-ratio: 4/3;
}
.game-card:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 8px 32px rgba(124,58,237,0.3); }
.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.game-card:hover img { transform: scale(1.05); }
.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,15,26,0.9) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10px;
  opacity: 0;
  transition: opacity var(--transition);
}
.game-card:hover .game-card-overlay { opacity: 1; }
.game-card-play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  color: #0e0f1a;
  font-size: 18px;
  margin: 0 auto 8px;
  transition: transform var(--transition);
}
.game-card:hover .game-card-play { transform: scale(1.1); }
.game-card-name {
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.game-card-provider {
  font-size: 10px;
  color: var(--text-muted);
  text-align: center;
}
.game-card-label {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.label-hot { background: #ef4444; color: #fff; }
.label-new { background: var(--green); color: #fff; }
.label-top { background: var(--gold); color: #0e0f1a; }

/* ── PROMO CARDS ── */
.promo-section {
  padding: 32px 0;
  background: var(--bg-section);
  border-top: 1px solid var(--border);
}
.promo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.promo-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  display: block;
  transition: transform var(--transition), box-shadow var(--transition);
}
.promo-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.promo-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

/* ── BONUS CARDS ── */
.bonus-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 28px 0;
}
.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.bonus-card:hover { border-color: var(--primary); transform: translateY(-2px); }
.bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
}
.bonus-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.bonus-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.bonus-desc {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}

/* ── STEPS CARDS ── */
.steps-section {
  padding: 32px 0;
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color var(--transition);
}
.step-card:hover { border-color: var(--primary); }
.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: #fff;
}
.step-content h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.step-content p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ── PAYMENT STRIP ── */
.payment-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.payment-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 14px;
  font-weight: 600;
}
.payment-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.pay-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  transition: border-color var(--transition), color var(--transition);
}
.pay-badge:hover { border-color: var(--primary); color: var(--text); }

/* ── SEO CONTENT BLOCK ── */
.seo-content {
  padding: 48px 0 56px;
  background: var(--bg-section);
  border-top: 1px solid var(--border);
}
.seo-content .container {
  max-width: 900px;
}
.seo-content h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.3;
}
.seo-content h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 700;
  margin: 36px 0 14px;
  color: var(--text);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.seo-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 24px 0 10px;
  color: var(--gold);
}
.seo-content p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  margin-bottom: 16px;
}
.seo-content strong { color: var(--text); font-weight: 600; }
.seo-content ul,
.seo-content ol {
  margin: 12px 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.seo-content ul li,
.seo-content ol li {
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}
.seo-content ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 16px;
}
.seo-content ol { counter-reset: seo-counter; }
.seo-content ol li { counter-increment: seo-counter; padding-left: 28px; }
.seo-content ol li::before {
  content: counter(seo-counter) '.';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
}
.seo-content ol li strong:first-child {
  color: var(--gold);
}
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 16px 0 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.seo-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 480px;
}
.seo-content thead { background: var(--primary-light); }
.seo-content th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
  font-size: 13px;
}
.seo-content td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border-light);
  color: rgba(255,255,255,0.8);
  vertical-align: middle;
}
.seo-content tbody tr:last-child td { border-bottom: none; }
.seo-content tbody tr:hover { background: rgba(124,58,237,0.06); }
.seo-content a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: rgba(124,58,237,0.4);
  transition: color var(--transition);
}
.seo-content a:hover { color: var(--gold); }
.seo-faq {
  margin-top: 12px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-q {
  padding: 14px 18px;
  background: var(--bg-card);
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background var(--transition);
}
.faq-q:hover { background: rgba(124,58,237,0.1); }
.faq-q::after {
  content: '+';
  color: var(--primary);
  font-size: 20px;
  font-weight: 400;
  flex-shrink: 0;
}
.faq-a {
  padding: 14px 18px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  background: var(--bg-section);
}

/* ── FOOTER ── */
.site-footer {
  background: #0a0b16;
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-brand img { height: 32px; margin-bottom: 12px; }
.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col li a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col li a:hover { color: var(--text); }
.footer-payments {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  margin-bottom: 20px;
}
.footer-payments .payment-label { text-align: left; }
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.footer-legal {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 800px;
}
.footer-legal a { color: var(--text-muted); text-decoration: underline; }
.footer-legal a:hover { color: var(--text); }
.footer-copy {
  font-size: 12px;
  color: var(--text-dim);
}
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 2px solid var(--text-dim);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
  color: var(--text-dim);
  flex-shrink: 0;
}
.footer-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.responsible-badge {
  font-size: 11px;
  color: var(--text-dim);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 5px;
}

/* ── RESPONSIVE ── */
@media (min-width: 480px) {
  .slots-grid { grid-template-columns: repeat(3, 1fr); }
  .promo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .slots-grid { grid-template-columns: repeat(4, 1fr); }
  .promo-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus-cards { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
  .hero-banner img { height: 380px; }
  .page-hero .banner-img img { height: 260px; }
}
@media (min-width: 1024px) {
  .slots-grid { grid-template-columns: repeat(5, 1fr); }
  .promo-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-banner img { height: 440px; }
}
@media (min-width: 1280px) {
  .slots-grid { grid-template-columns: repeat(6, 1fr); }
}

@media (max-width: 767px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-cta { display: none; }
  .btn-mobile-play { display: inline-flex; padding: 7px 14px; font-size: 12px; border-radius: 6px; }
  .hero-headline { font-size: 1.4rem; }
  .hero-text p:not(.hero-headline) { font-size: 0.85rem; }
  .hero-banner img { height: 220px; }
  .feature-item { padding: 6px 12px; font-size: 12px; }
  .seo-content h2 { font-size: 1.1rem; }
}
