/* Base */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Nunito Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #1c1917;
  background: #f2ede6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #2ecc82; text-decoration: none; }
a:hover { text-decoration: underline; }
h1,h2,h3,h4 {
  font-family: 'Bitter', Georgia, serif;
  font-weight: 700;
  line-height: 1.25;
  color: #0c0a09;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(28px, 3.2vw, 40px); }
h2 { font-size: clamp(22px, 2.4vw, 30px); }
h3 { font-size: 20px; }
h4 { font-size: 17px; }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.2em; margin: 0 0 1em; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.section-alt { background: #edf7f2; border-radius: 24px; margin: 24px 16px; padding: 56px 20px; }
.section-lead { text-align: center; max-width: 720px; margin: 0 auto 40px; color: #7a726a; }
.section-lead p { margin: 0; font-size: 17px; }

/* Buttons */
.cta-btn {
  display: inline-block;
  background: #2ecc82;
  color: #fff !important;
  border: none;
  border-radius: 10px;
  padding: 12px 22px;
  font-weight: 700;
  font-family: 'Bitter', Georgia, serif;
  cursor: pointer;
  transition: background .2s, transform .1s;
  text-decoration: none !important;
  font-size: 15px;
}
.cta-btn:hover { background: #26b473; transform: translateY(-1px); text-decoration: none !important; }
.cta-btn--wide { display: block; width: 100%; text-align: center; padding: 14px; }
.cta-btn--ghost { background: transparent; color: #0c0a09 !important; border: 1.5px solid #0c0a09; }
.cta-btn--ghost:hover { background: #0c0a09; color: #fff !important; }
.cta-btn--big { padding: 16px 32px; font-size: 17px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: #f2ede6;
  border-bottom: 1px solid #e5ded4;
}
.header-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  max-width: 1200px; margin: 0 auto;
}
.site-logo {
  display: flex; align-items: center; gap: 10px;
  justify-self: center;
  color: #0c0a09; text-decoration: none;
}
.site-logo img { width: 40px; height: 40px; border-radius: 8px; }
.site-name { font-family: 'Bitter', Georgia, serif; font-weight: 800; font-size: 20px; letter-spacing: -.01em; }
.header-cta { justify-self: end; }
.burger {
  display: none;
  width: 40px; height: 40px;
  background: transparent; border: none; cursor: pointer;
  flex-direction: column; justify-content: center; gap: 5px; padding: 8px;
}
.burger span { display: block; height: 2px; background: #0c0a09; border-radius: 2px; }
.site-nav { padding: 0 20px 12px; }
.site-nav ul {
  display: flex; flex-wrap: wrap; gap: 24px;
  justify-content: center;
  list-style: none; padding: 0; margin: 0;
}
.site-nav a {
  color: #0c0a09; font-weight: 600; font-size: 14px;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color .2s;
  text-transform: uppercase; letter-spacing: .04em;
}
.site-nav a:hover { border-bottom-color: #2ecc82; text-decoration: none; }

/* Hero — cover screen: brand logo big, headline, button, timer */
.hero {
  padding: 72px 20px 80px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.hero-logo { width: 96px; height: 96px; margin: 0 auto 24px; border-radius: 20px; box-shadow: 0 8px 24px rgba(46,204,130,.18); }
.hero h1 { margin-bottom: 12px; }
.hero-lead { font-size: 18px; color: #7a726a; max-width: 600px; margin: 0 auto 28px; }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.hero-timer {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 18px;
  background: #fff; border: 1px solid #e5ded4; border-radius: 12px;
  font-family: 'Bitter', Georgia, serif;
}
.timer { font-size: 22px; font-weight: 700; color: #2ecc82; font-variant-numeric: tabular-nums; }
.timer-label { color: #7a726a; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }

/* Promo widget */
.promo-widget {
  background: #fff; border-radius: 18px; padding: 24px; margin: 24px auto;
  max-width: 640px; box-shadow: 0 8px 32px rgba(28,25,23,.06);
  display: grid; gap: 16px;
}
.promo-header { display: flex; align-items: center; gap: 14px; }
.promo-header img { width: 52px; height: 52px; border-radius: 10px; }
.promo-header h3 { margin: 0; }
.promo-amount { color: #2ecc82; font-weight: 800; }
.code-box {
  display: flex; align-items: stretch; gap: 0;
  border: 2px dashed #2ecc82; border-radius: 10px; overflow: hidden;
  background: #edf7f2;
}
.code-box code {
  flex: 1; padding: 12px 16px; font-family: 'JetBrains Mono', Consolas, monospace;
  font-weight: 700; letter-spacing: .05em; color: #0c0a09; font-size: 15px;
}
.copy-btn {
  border: none; background: #2ecc82; color: #fff;
  padding: 0 20px; font-weight: 700; cursor: pointer; font-size: 13px;
  text-transform: uppercase; letter-spacing: .06em;
}
.copy-btn:hover { background: #26b473; }
.promo-fine { color: #7a726a; font-size: 12px; text-align: center; margin: 0; }

/* Grid utilities */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }

/* Cards — borderless, only gaps */
.bonus-card, .slot-card, .review-card, .step-card, .feature-card, .provider-card {
  background: #fff; padding: 20px; border-radius: 14px;
  box-shadow: 0 6px 22px rgba(28,25,23,.05);
  display: flex; flex-direction: column;
}
.bonus-card .card-head { display:flex; align-items:center; gap:10px; margin-bottom: 12px; }
.bonus-card .card-icon {
  width: 42px; height: 42px; background: #edf7f2; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.bonus-card h3 { margin: 0; font-size: 18px; }
.bonus-card ul { list-style: none; padding: 0; margin: 8px 0 16px; font-size: 14px; color: #7a726a; }
.bonus-card ul li { padding: 4px 0 4px 22px; position: relative; }
.bonus-card ul li::before {
  content:''; position: absolute; left: 0; top: 8px; width: 12px; height: 12px;
  border-radius: 50%; background: #2ecc8222;
  border: 2px solid #2ecc82;
}
.bonus-card .card-rating { color: #f5a623; margin-bottom: 4px; font-size: 13px; }
.bonus-card .card-cta { margin-top: auto; }

/* Slot cards */
.slot-card { padding: 0; overflow: hidden; }
.slot-card a { color: #1c1917; text-decoration: none; display: block; }
.slot-card a:hover { text-decoration: none; }
.slot-card img { width: 100%; height: 160px; object-fit: cover; }
.slot-card .slot-info { padding: 12px 14px 16px; }
.slot-card .slot-title { font-family: 'Bitter', Georgia, serif; font-weight: 700; margin: 0 0 4px; font-size: 15px; }
.slot-card .slot-provider { color: #7a726a; font-size: 12px; margin: 0; }
.slot-card .slot-badge {
  display: inline-block; background: #2ecc82; color: #fff;
  padding: 2px 8px; border-radius: 20px; font-size: 10px; font-weight: 800;
  letter-spacing: .06em; margin-top: 6px;
}
.slot-card .slot-play {
  display: block; text-align: center; margin: 0 12px 14px;
  padding: 8px; background: #edf7f2; color: #0c0a09;
  border-radius: 8px; font-weight: 700; font-size: 13px;
  transition: background .2s;
}
.slot-card .slot-play:hover { background: #2ecc82; color: #fff; text-decoration: none; }

/* Reviews */
.review-card .card-head { display:flex; align-items:center; gap: 10px; margin-bottom: 8px; }
.review-card .avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: #edf7f2; display: grid; place-items: center;
  font-weight: 700; color: #2ecc82; font-family: 'Bitter';
}
.review-card .review-name { margin: 0; font-weight: 700; }
.review-card .review-rating { color: #f5a623; font-size: 13px; }
.review-card p { margin: 0; color: #1c1917; }

/* Steps */
.step-card { position: relative; padding-top: 32px; }
.step-num {
  position: absolute; top: -14px; left: 20px;
  width: 40px; height: 40px; border-radius: 50%;
  background: #2ecc82; color: #fff;
  display: grid; place-items: center; font-weight: 800; font-family: 'Bitter';
  font-size: 18px;
}
.step-card h3 { margin: 0 0 8px; }

/* Feature */
.feature-card .feat-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: #edf7f2; display: grid; place-items: center;
  font-size: 22px; margin-bottom: 12px;
}
.feature-card h3 { font-size: 16px; margin: 0 0 6px; }
.feature-card p { color: #7a726a; font-size: 14px; margin: 0; }

/* Provider row */
.provider-card {
  align-items: center; justify-content: center; padding: 14px 12px;
  font-weight: 700; font-family: 'Bitter'; text-align: center;
  color: #7a726a; font-size: 13px;
}

/* Payments row */
.payments { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.payment {
  padding: 10px 16px; border-radius: 10px;
  background: #fff; box-shadow: 0 4px 14px rgba(28,25,23,.05);
  font-weight: 700; font-size: 13px; color: #0c0a09;
  display: inline-flex; align-items: center; gap: 8px;
}
.payment .pay-dot { width: 10px; height: 10px; border-radius: 50%; }

/* Table */
.table-wrap { overflow-x: auto; }
table.data-table {
  width: 100%; border-collapse: collapse;
  background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 18px rgba(28,25,23,.05);
}
.data-table th, .data-table td {
  padding: 12px 16px; text-align: left; border-bottom: 1px solid #e5ded4; font-size: 14px;
}
.data-table th { background: #edf7f2; font-family: 'Bitter'; color: #0c0a09; font-size: 13px; text-transform: uppercase; letter-spacing: .04em; }
.data-table tr:last-child td { border-bottom: none; }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: #fff; border-radius: 12px; padding: 16px 20px; margin-bottom: 12px;
  box-shadow: 0 4px 14px rgba(28,25,23,.04);
}
.faq summary { font-weight: 700; cursor: pointer; font-family: 'Bitter'; color: #0c0a09; list-style: none; padding-right: 28px; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: 0; top: -3px; color: #2ecc82; font-size: 22px; font-weight: 700; }
.faq details[open] summary::after { content: '−'; }
.faq details p { margin: 12px 0 0; color: #7a726a; }

/* Wiki article */
.wiki-block { max-width: 780px; margin: 0 auto; }
.wiki-block h2, .wiki-block h3 { margin-top: 1.4em; }
.wiki-block p { color: #1c1917; }
.wiki-block ul li { margin: 6px 0; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, #2ecc82 0%, #3deda0 100%);
  color: #fff; padding: 40px 28px; border-radius: 20px;
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
  box-shadow: 0 12px 32px rgba(46,204,130,.24);
}
.cta-banner h3 { color: #fff; margin: 0 0 6px; }
.cta-banner p { margin: 0; opacity: .9; }
.cta-banner .cta-btn { background: #0c0a09; }
.cta-banner .cta-btn:hover { background: #000; }

/* Filter pills */
.pills { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 24px; }
.pill {
  padding: 8px 18px; border-radius: 100px;
  background: #fff; border: 1.5px solid #e5ded4;
  color: #0c0a09; font-weight: 700; font-size: 13px; cursor: pointer;
}
.pill.active, .pill:hover { background: #0c0a09; color: #fff; border-color: #0c0a09; text-decoration: none; }

/* Stats row */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: center; }
.stat-item { padding: 20px; }
.stat-value { font-family: 'Bitter'; font-size: 32px; color: #2ecc82; font-weight: 800; display: block; }
.stat-label { color: #7a726a; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; }

/* Footer */
.site-footer {
  background: #0c0a09;
  color: #ddd;
  padding: 48px 20px 20px;
  margin-top: 60px;
}
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 32px; }
.footer-col h4 { color: #fff; margin: 0 0 12px; font-size: 15px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin: 8px 0; }
.footer-col a { color: #b0aa9f; font-size: 14px; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid #2a251f; padding-top: 20px;
  display: flex; gap: 20px; align-items: center; flex-wrap: wrap;
  font-size: 13px; color: #8f887c;
}
.footer-18 {
  display: inline-block; width: 40px; height: 40px; border-radius: 50%;
  background: #ff4444; color: #fff; font-weight: 800;
  display: grid; place-items: center; font-size: 13px; font-family: 'Bitter';
}

/* Mobile */
@media (max-width: 780px) {
  body { font-size: 15px; }
  .container { padding: 0 16px; }
  .section { padding: 40px 0; }
  .section-alt { margin: 16px 8px; padding: 40px 16px; border-radius: 18px; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
  .stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .cta-banner { grid-template-columns: 1fr; text-align: center; }
  .header-top { padding: 12px 16px; }
  .burger { display: flex; }
  .site-nav { display: none; padding: 8px 16px 12px; }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; gap: 4px; align-items: stretch; }
  .site-nav a { padding: 10px 4px; border-bottom: 1px solid #e5ded4; text-align: left; }
  .header-cta .cta-btn--ghost { padding: 8px 14px; font-size: 13px; }
  .header-top { grid-template-columns: auto 1fr auto; }
  .site-logo { justify-self: start; }
  .site-name { font-size: 17px; }
  .hero { padding: 48px 16px 56px; }
  .hero-logo { width: 80px; height: 80px; }
  .mobile-sticky {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 40;
    padding: 10px 16px;
    background: #0c0a09; color: #fff;
    display: flex; gap: 10px; align-items: center; justify-content: space-between;
    box-shadow: 0 -6px 18px rgba(0,0,0,.28);
  }
  .mobile-sticky .cta-btn { flex: 1; padding: 12px; text-align: center; }
}

@media (min-width: 781px) {
  .mobile-sticky { display: none; }
}

/* Page title */
.page-h1 { display: none; }  /* our hero H1 takes over */