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

:root {
  --bg: #0d0d0d;
  --bg-card: #1a1a1a;
  --bg-card2: #222222;
  --accent: #ccff00;
  --accent-hover: #ddff33;
  --accent-dark: #a8d400;
  --text: #ffffff;
  --text-muted: #888888;
  --text-dim: #555555;
  --border: rgba(255,255,255,0.08);
  --border-accent: rgba(204,255,0,0.3);
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 4px 24px rgba(0,0,0,0.5);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

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

/* ===================== HEADER ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #111111;
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 20px;
  max-width: 1280px;
  margin: 0 auto;
}

.header-logo {
  flex-shrink: 0;
}

.header-logo img {
  height: 42px;
  width: auto;
}

.header-nav {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}
.header-nav::-webkit-scrollbar { display: none; }

.nav-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  color: var(--text-muted);
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  cursor: pointer;
}

.nav-tab img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.nav-tab:hover,
.nav-tab.active {
  color: var(--accent);
  border-color: var(--border-accent);
  background: rgba(204,255,0,0.05);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.btn-login {
  padding: 9px 20px;
  border: 1.5px solid var(--accent);
  border-radius: var(--radius-sm);
  color: var(--accent);
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-login:hover { background: rgba(204,255,0,0.1); }

.btn-signup {
  padding: 9px 20px;
  border: 1.5px solid var(--accent);
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: #0d0d0d;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-signup:hover { background: var(--accent-hover); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== BUTTONS ===================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--accent);
  color: #0d0d0d;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  border-radius: var(--radius-sm);
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.btn-outline:hover { background: rgba(204,255,0,0.1); transform: translateY(-1px); }

/* ===================== HERO / FIRST SCREENS ===================== */
.hero {
  padding: 32px 20px;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 220px 1fr 240px;
  gap: 20px;
  align-items: start;
}

/* Left sidebar */
.hero-sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bonus-banner {
  background: linear-gradient(135deg, #1a1a00 0%, #2a2a00 50%, #1a1a00 100%);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
}

.bonus-banner .bonus-label {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.bonus-banner .bonus-value {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.bonus-banner .bonus-desc {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.hero-game-banner {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.hero-game-banner img {
  width: 100%;
  height: auto;
}

.spin-banner {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}
.spin-banner img {
  max-width: 140px;
  height: auto;
}

/* Center main */
.hero-main {}

.games-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.games-section-title h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}
.games-section-title .count-badge {
  background: var(--bg-card2);
  color: var(--text-muted);
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

/* ===================== SLOT TILES ===================== */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}

.slot-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  aspect-ratio: 1 / 1.1;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
}
.slot-tile:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
}

.slot-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slot-tile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.2s;
}
.slot-tile:hover .slot-tile-overlay { opacity: 1; }

.slot-tile-overlay .play-btn {
  padding: 8px 20px;
  background: var(--accent);
  color: #0d0d0d;
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.slot-tile-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 6px 8px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  font-size: 10px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Right CTA panel */
.hero-cta-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-panel-title {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.cta-bonus-amount {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
}

.cta-bonus-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: -8px;
}

.cta-divider {
  height: 1px;
  background: var(--border);
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text);
}
.cta-feature-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(204,255,0,0.15);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 10px;
  color: var(--accent);
}

.cta-panel .btn-primary {
  width: 100%;
  font-size: 14px;
  padding: 12px;
}

/* ===================== STATS BAR ===================== */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 20px;
}

.stats-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.stat-value {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}
.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===================== SEO CONTENT BLOCK ===================== */
.seo-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 20px 64px;
}

.seo-content h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.2;
}

.seo-content h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 600;
  color: var(--accent);
  margin: 40px 0 16px;
  padding-left: 14px;
  border-left: 3px solid var(--accent);
  line-height: 1.3;
}

.seo-content h3 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 600;
  color: var(--text);
  margin: 28px 0 12px;
}

.seo-content p {
  font-size: 15px;
  color: #cccccc;
  margin-bottom: 16px;
  line-height: 1.75;
}

.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 {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  color: #cccccc;
  line-height: 1.65;
}
.seo-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.seo-content ol {
  counter-reset: item;
}
.seo-content ol li {
  counter-increment: item;
  position: relative;
  padding-left: 32px;
  font-size: 15px;
  color: #cccccc;
  line-height: 1.65;
}
.seo-content ol li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(204,255,0,0.12);
  border: 1px solid var(--border-accent);
  color: var(--accent);
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 22px;
}

/* Tables */
.table-wrap {
  overflow-x: auto;
  margin: 20px 0 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  -webkit-overflow-scrolling: touch;
}

.seo-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 480px;
}

.seo-content thead tr {
  background: rgba(204,255,0,0.08);
}
.seo-content thead th {
  padding: 12px 16px;
  text-align: left;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid var(--border-accent);
  white-space: nowrap;
}

.seo-content tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.seo-content tbody tr:hover { background: rgba(255,255,255,0.03); }
.seo-content tbody tr:last-child { border-bottom: none; }

.seo-content tbody td {
  padding: 11px 16px;
  color: #cccccc;
  vertical-align: middle;
}
.seo-content tbody td:first-child { color: var(--text); font-weight: 500; }

/* CTA inside SEO text */
.seo-cta {
  margin: 28px 0;
  padding: 28px;
  background: linear-gradient(135deg, #151500 0%, #1e1e00 100%);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.seo-cta-text {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}
.seo-cta-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ===================== GAMES PAGE HERO ===================== */
.games-hero {
  padding: 40px 20px;
  max-width: 1280px;
  margin: 0 auto;
}

.games-hero-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.games-hero-header img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.games-hero-header h1,
.games-hero-header .hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: var(--text);
}

.games-hero-header p {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

.games-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}

/* ===================== SIGN-UP PAGE ===================== */
.signup-hero {
  padding: 48px 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.signup-hero h1,
.signup-hero .hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.signup-hero .hero-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.bonus-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.bonus-tier {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: border-color 0.2s;
}
.bonus-tier:hover { border-color: var(--border-accent); }
.bonus-tier.featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, #151500, #1e1e00);
  position: relative;
}
.bonus-tier.featured::before {
  content: 'BEST VALUE';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0d0d0d;
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 2px 10px;
  border-radius: 20px;
}

.tier-deposit {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.tier-pct {
  font-family: 'Oswald', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.tier-spins {
  font-size: 13px;
  color: var(--text-muted);
}

.steps-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px 48px;
}

.steps-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 28px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}
.step-item:hover { border-color: var(--border-accent); }

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(204,255,0,0.1);
  border: 1.5px solid var(--accent);
  color: var(--accent);
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-text h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.step-text p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===================== BONUS PAGE ===================== */
.bonus-hero {
  padding: 48px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.bonus-hero h1,
.bonus-hero .hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  text-align: center;
}

.bonus-hero .hero-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 40px;
  text-align: center;
}

.deposit-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.deposit-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  position: relative;
}
.deposit-step.first { border-color: var(--accent); }

.deposit-num {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.deposit-pct {
  font-family: 'Oswald', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.deposit-match {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.deposit-spins {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.bonus-total {
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, #151500, #1e1e00);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  margin-bottom: 36px;
}
.bonus-total .total-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.bonus-total .total-value {
  font-family: 'Oswald', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}
.bonus-total .total-spins {
  font-size: 16px;
  color: var(--text-muted);
}

.bonus-cta-center {
  text-align: center;
}

/* FAQ section */
.faq-section {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px 48px;
}
.faq-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 24px;
  text-align: center;
  text-transform: uppercase;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 16px 20px;
  background: none;
  border: none;
  text-align: left;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-question::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p {
  padding: 0 20px 16px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===================== FOOTER ===================== */
.site-footer {
  background: #111111;
  border-top: 1px solid var(--border);
  margin-top: 40px;
}

.footer-device-banner {
  border-bottom: 1px solid var(--border);
}
.footer-device-banner img {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  display: block;
  padding: 20px 20px 0;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 36px 20px 24px;
}

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

.footer-brand .footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 12px;
  color: var(--text-dim);
  max-width: 280px;
  line-height: 1.6;
}

.footer-nav-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.footer-nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav-col ul li a {
  font-size: 13px;
  color: var(--text-dim);
  transition: color 0.2s;
}
.footer-nav-col ul li a:hover { color: var(--accent); }

.footer-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 20px;
}

.footer-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.badge {
  padding: 5px 12px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.badge strong { color: var(--text); }

.footer-disclaimer {
  font-size: 11px;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 16px;
}

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

.footer-copyright {
  font-size: 11px;
  color: var(--text-dim);
}

.footer-links-bottom {
  display: flex;
  gap: 16px;
}
.footer-links-bottom a {
  font-size: 11px;
  color: var(--text-dim);
  transition: color 0.2s;
}
.footer-links-bottom a:hover { color: var(--text-muted); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 190px 1fr 200px;
    gap: 14px;
  }
}

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .hero-sidebar > * {
    flex: 1 1 160px;
  }
  .hero-cta-panel {
    display: none;
  }
  .deposit-steps,
  .bonus-tiers {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-nav.open {
    display: flex;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: #111111;
    border-bottom: 1px solid var(--border);
    padding: 12px 20px;
    flex-wrap: wrap;
    gap: 8px;
    z-index: 99;
  }
  .hamburger { display: flex; }
  .btn-login { display: none; }
  .slots-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); }
  .games-full-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
  .footer-top { flex-direction: column; }
  .seo-cta { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .header-inner { padding: 10px 14px; }
  .header-logo img { height: 34px; }
  .hero { padding: 20px 14px; }
  .bonus-tiers { grid-template-columns: 1fr; }
  .deposit-steps { grid-template-columns: 1fr; }
  .slots-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .games-full-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .seo-content { padding: 32px 14px 48px; }
  .steps-section { padding: 0 14px 36px; }
  .faq-section { padding: 0 14px 36px; }
  .bonus-hero { padding: 32px 14px; }
  .signup-hero { padding: 32px 14px; }
}
