@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Eczar:wght@400;700&display=swap');

:root {
  --bolt-bg: #020d10;
  --bolt-surface: #041820;
  --bolt-accent: #0891b2;
  --bolt-light: #cffafe;
  --bolt-muted: #94a3b8;
  --bolt-text: #f0f9ff;
  --bolt-radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bolt-bg);
  color: var(--bolt-text);
  font-family: 'Eczar', Georgia, serif;
  font-size: 16px;
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  letter-spacing: 0.03em;
  line-height: 1.15;
}

a {
  color: var(--bolt-accent);
  text-decoration: none;
}

a:hover {
  color: var(--bolt-light);
}

img {
  max-width: 100%;
  display: block;
}

/* ── HEADER ── */
.bolt-header {
  background: var(--bolt-surface);
  border-bottom: 1px solid rgba(8,145,178,0.3);
  position: sticky;
  top: 0;
  z-index: 100;
}

.bolt-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}

.bolt-logo {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 28px;
  color: var(--bolt-accent);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.bolt-logo span {
  color: var(--bolt-light);
}

.bolt-nav {
  display: flex;
  gap: 24px;
  list-style: none;
  flex-wrap: wrap;
}

.bolt-nav a {
  color: var(--bolt-muted);
  font-size: 14px;
  transition: color 0.2s;
}

.bolt-nav a:hover {
  color: var(--bolt-light);
}

.bolt-cta-btn {
  display: inline-block;
  background: var(--bolt-accent);
  color: #fff;
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 18px;
  letter-spacing: 0.06em;
  padding: 10px 24px;
  border-radius: var(--bolt-radius);
  transition: background 0.2s, transform 0.1s;
  flex-shrink: 0;
  white-space: nowrap;
}

.bolt-cta-btn:hover {
  background: #0e7490;
  color: #fff;
  transform: translateY(-1px);
}

/* ── HERO ── */
.bolt-hero {
  background: linear-gradient(160deg, var(--bolt-surface) 0%, var(--bolt-bg) 60%);
  padding: 80px 20px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bolt-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(8,145,178,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.bolt-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.bolt-hero h1 {
  font-size: clamp(36px, 6vw, 72px);
  color: var(--bolt-light);
  margin-bottom: 20px;
}

.bolt-hero-sub {
  font-size: 18px;
  color: var(--bolt-muted);
  margin-bottom: 36px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.bolt-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.bolt-badge {
  background: rgba(8,145,178,0.15);
  border: 1px solid rgba(8,145,178,0.4);
  color: var(--bolt-light);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-family: 'Eczar', Georgia, serif;
}

.bolt-hero-cta {
  display: inline-block;
  background: var(--bolt-accent);
  color: #fff;
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 22px;
  letter-spacing: 0.08em;
  padding: 16px 48px;
  border-radius: var(--bolt-radius);
  transition: background 0.2s, transform 0.1s;
}

.bolt-hero-cta:hover {
  background: #0e7490;
  color: #fff;
  transform: translateY(-2px);
}

/* ── SECTIONS ── */
.bolt-section {
  padding: 64px 20px;
}

.bolt-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.bolt-section-alt {
  background: var(--bolt-surface);
}

.bolt-section-title {
  font-size: clamp(28px, 4vw, 46px);
  color: var(--bolt-light);
  margin-bottom: 32px;
  text-align: center;
}

.bolt-section-lead {
  font-size: 17px;
  color: var(--bolt-muted);
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

/* ── ABOUT ── */
.bolt-about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.bolt-about-card {
  background: var(--bolt-bg);
  border: 1px solid rgba(8,145,178,0.25);
  border-radius: var(--bolt-radius);
  padding: 28px 24px;
}

.bolt-about-card h3 {
  font-size: 20px;
  color: var(--bolt-accent);
  margin-bottom: 10px;
}

.bolt-about-card p {
  color: var(--bolt-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ── GAMES ── */
.bolt-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.bolt-game-card {
  background: var(--bolt-surface);
  border: 1px solid rgba(8,145,178,0.2);
  border-radius: var(--bolt-radius);
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.bolt-game-card:hover {
  border-color: var(--bolt-accent);
  transform: translateY(-3px);
}

.bolt-game-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.bolt-game-card h3 {
  font-size: 22px;
  color: var(--bolt-light);
  margin-bottom: 8px;
}

.bolt-game-card p {
  color: var(--bolt-muted);
  font-size: 14px;
}

/* ── BONUS ── */
.bolt-bonus-box {
  background: linear-gradient(135deg, rgba(8,145,178,0.2) 0%, rgba(4,24,32,0.8) 100%);
  border: 1px solid rgba(8,145,178,0.4);
  border-radius: 12px;
  padding: 48px 40px;
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
}

.bolt-bonus-amount {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(42px, 7vw, 80px);
  color: var(--bolt-accent);
  line-height: 1;
  margin-bottom: 8px;
}

.bolt-bonus-sub {
  font-size: 22px;
  color: var(--bolt-light);
  margin-bottom: 28px;
}

.bolt-bonus-terms {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 36px;
}

.bolt-bonus-term {
  background: var(--bolt-surface);
  border: 1px solid rgba(8,145,178,0.3);
  border-radius: var(--bolt-radius);
  padding: 10px 18px;
  font-size: 14px;
  color: var(--bolt-muted);
}

.bolt-bonus-term span {
  display: block;
  font-size: 18px;
  color: var(--bolt-light);
  font-family: 'Bebas Neue', Impact, sans-serif;
  letter-spacing: 0.03em;
}

/* ── CASHIER ── */
.bolt-table-wrap {
  overflow-x: auto;
  border-radius: var(--bolt-radius);
}

.bolt-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.bolt-table th {
  background: rgba(8,145,178,0.2);
  color: var(--bolt-light);
  padding: 14px 18px;
  text-align: left;
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 17px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.bolt-table td {
  padding: 12px 18px;
  color: var(--bolt-muted);
  border-bottom: 1px solid rgba(8,145,178,0.1);
}

.bolt-table tr:last-child td {
  border-bottom: none;
}

.bolt-table tr:hover td {
  background: rgba(8,145,178,0.05);
  color: var(--bolt-text);
}

/* ── VIP ── */
.bolt-vip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.bolt-vip-tier {
  background: var(--bolt-bg);
  border: 1px solid rgba(8,145,178,0.25);
  border-radius: var(--bolt-radius);
  padding: 24px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s;
}

.bolt-vip-tier:hover {
  border-color: var(--bolt-accent);
}

.bolt-vip-tier-name {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 24px;
  color: var(--bolt-light);
  margin-bottom: 8px;
}

.bolt-vip-tier-rate {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 36px;
  color: var(--bolt-accent);
  line-height: 1;
  margin-bottom: 4px;
}

.bolt-vip-tier-label {
  font-size: 12px;
  color: var(--bolt-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bolt-vip-desc {
  font-size: 16px;
  color: var(--bolt-muted);
  text-align: center;
  max-width: 680px;
  margin: 32px auto 0;
}

/* ── REVIEWS ── */
.bolt-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.bolt-review-card {
  background: var(--bolt-bg);
  border: 1px solid rgba(8,145,178,0.2);
  border-radius: var(--bolt-radius);
  padding: 28px 24px;
}

.bolt-review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.bolt-review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(8,145,178,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 20px;
  color: var(--bolt-accent);
  flex-shrink: 0;
}

.bolt-review-meta {
  flex: 1;
}

.bolt-review-name {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 18px;
  color: var(--bolt-light);
}

.bolt-review-date {
  font-size: 13px;
  color: var(--bolt-muted);
}

.bolt-review-stars {
  color: var(--bolt-accent);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.bolt-review-text {
  font-size: 15px;
  color: var(--bolt-muted);
  line-height: 1.65;
}

/* ── FAQ ── */
.bolt-faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bolt-faq-item {
  background: var(--bolt-surface);
  border: 1px solid rgba(8,145,178,0.2);
  border-radius: var(--bolt-radius);
  overflow: hidden;
}

.bolt-faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--bolt-light);
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 20px;
  letter-spacing: 0.03em;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.bolt-faq-question:hover {
  color: var(--bolt-accent);
}

.bolt-faq-arrow {
  color: var(--bolt-accent);
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.bolt-faq-item.bolt-open .bolt-faq-arrow {
  transform: rotate(180deg);
}

.bolt-faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: var(--bolt-muted);
  font-size: 15px;
  line-height: 1.7;
  border-top: 1px solid rgba(8,145,178,0.15);
}

.bolt-faq-item.bolt-open .bolt-faq-answer {
  display: block;
}

/* ── AUTHOR ── */
.bolt-author-box {
  background: var(--bolt-surface);
  border: 1px solid rgba(8,145,178,0.3);
  border-left: 4px solid var(--bolt-accent);
  border-radius: var(--bolt-radius);
  padding: 32px 36px;
  max-width: 820px;
  margin: 0 auto;
}

.bolt-author-title {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 22px;
  color: var(--bolt-accent);
  margin-bottom: 8px;
}

.bolt-author-role {
  font-size: 13px;
  color: var(--bolt-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.bolt-author-text {
  font-size: 15px;
  color: var(--bolt-muted);
  line-height: 1.7;
}

.bolt-author-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.bolt-author-tag {
  background: rgba(8,145,178,0.12);
  border: 1px solid rgba(8,145,178,0.3);
  color: var(--bolt-light);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 13px;
}

/* ── FOOTER ── */
.bolt-footer {
  background: var(--bolt-surface);
  border-top: 1px solid rgba(8,145,178,0.25);
  padding: 48px 20px 32px;
}

.bolt-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.bolt-footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
  margin-bottom: 40px;
}

.bolt-footer-brand .bolt-logo {
  font-size: 24px;
  margin-bottom: 12px;
  display: block;
}

.bolt-footer-brand p {
  font-size: 13px;
  color: var(--bolt-muted);
  line-height: 1.6;
}

.bolt-footer-col h4 {
  font-size: 18px;
  color: var(--bolt-light);
  margin-bottom: 14px;
}

.bolt-footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bolt-footer-col ul li a {
  color: var(--bolt-muted);
  font-size: 14px;
  transition: color 0.2s;
}

.bolt-footer-col ul li a:hover {
  color: var(--bolt-light);
}

.bolt-footer-bottom {
  border-top: 1px solid rgba(8,145,178,0.15);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.bolt-footer-legal {
  font-size: 12px;
  color: var(--bolt-muted);
  line-height: 1.6;
  max-width: 740px;
}

.bolt-footer-age {
  background: rgba(8,145,178,0.15);
  border: 1px solid rgba(8,145,178,0.4);
  color: var(--bolt-light);
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── UTILS ── */
.bolt-divider {
  border: none;
  border-top: 1px solid rgba(8,145,178,0.15);
  margin: 0;
}

.bolt-text-center {
  text-align: center;
}

.bolt-mt-8 {
  margin-top: 8px;
}

.bolt-mt-16 {
  margin-top: 16px;
}

.bolt-mt-32 {
  margin-top: 32px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .bolt-nav {
    display: none;
  }

  .bolt-hero {
    padding: 52px 20px 48px;
  }

  .bolt-bonus-box {
    padding: 32px 24px;
  }

  .bolt-author-box {
    padding: 24px 20px;
  }

  .bolt-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .bolt-header-inner {
    gap: 10px;
  }

  .bolt-cta-btn {
    padding: 8px 16px;
    font-size: 16px;
  }

  .bolt-vip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
