:root {
  --bg: #071209;
  --bg-card: #0f2216;
  --bg-card-hover: #152b1c;
  --bg-header: rgba(7, 18, 9, 0.96);
  --green: #1a5c32;
  --green-light: #2d8a4e;
  --gold: #f5c518;
  --gold-dark: #d4a012;
  --orange: #ff7a00;
  --orange-hover: #ff9226;
  --text: #f2f6f3;
  --text-muted: rgba(242, 246, 243, 0.68);
  --border: rgba(245, 197, 24, 0.14);
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  --radius: 14px;
  --radius-sm: 10px;
  --max: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: #ffe566; }

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

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-header);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}

.logo__mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 900;
  color: #071209;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: 0.2s;
}

.nav a:hover,
.nav a.active {
  color: #fff;
  background: rgba(245, 197, 24, 0.1);
}

.header__actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: 0.2s;
  text-decoration: none;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.btn--primary {
  background: linear-gradient(135deg, var(--orange) 0%, #ff5500 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 122, 0, 0.35);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(255, 122, 0, 0.45);
  color: #fff;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #071209;
}

.btn--gold:hover { color: #071209; filter: brightness(1.05); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

/* Hero */
.hero {
  padding: 56px 0 40px;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(245, 197, 24, 0.12), transparent),
    radial-gradient(ellipse 50% 40% at 90% 20%, rgba(45, 138, 78, 0.2), transparent);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: center;
}

.hero__badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(245, 197, 24, 0.12);
  border: 1px solid rgba(245, 197, 24, 0.25);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.hero h1 span { color: var(--gold); }

.hero__lead {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 54ch;
  margin-bottom: 24px;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
}

.stat strong {
  display: block;
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 2px;
}

.stat span { font-size: 12px; color: var(--text-muted); }

.hero__card {
  background: linear-gradient(160deg, #122818 0%, #0a1a10 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero__card h2 {
  font-size: 22px;
  margin-bottom: 8px;
}

.hero__bonus {
  font-size: 42px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin: 12px 0;
}

.hero__card ul {
  list-style: none;
  margin: 16px 0 20px;
}

.hero__card li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--text-muted);
  font-size: 14px;
}

.hero__card li::before {
  content: "✓ ";
  color: var(--green-light);
  font-weight: 700;
}

/* Sections */
.section { padding: 56px 0; }

.section--alt { background: rgba(255,255,255,0.02); }

.section--compact-bottom { padding-bottom: 24px; }
.section--compact-top { padding-top: 24px; }

.section__head {
  text-align: left;
  max-width: none;
  margin: 0 0 28px;
}

.section__head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.section__head p { color: var(--text-muted); }

/* Game categories */
.categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
}

.cat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  transition: 0.25s;
  cursor: default;
}

.cat-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(245, 197, 24, 0.3);
  transform: translateY(-3px);
}

.cat-card__icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.cat-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.cat-card p {
  font-size: 12px;
  color: var(--text-muted);
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.feature__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(245, 197, 24, 0.12);
  display: grid;
  place-items: center;
  font-size: 20px;
  margin-bottom: 14px;
}

.feature h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.feature p { color: var(--text-muted); font-size: 14px; }

/* Table */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

th, td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

th {
  background: rgba(245, 197, 24, 0.08);
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

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

td { color: var(--text-muted); }
td strong { color: #fff; }

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

.review {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}

.review__stars { color: var(--gold); margin-bottom: 10px; letter-spacing: 2px; }

.review p {
  color: var(--text-muted);
  font-size: 14px;
  font-style: italic;
  margin-bottom: 14px;
}

.review__source {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.review__verified {
  color: var(--green-light);
  font-size: 11px;
  font-weight: 600;
}

/* Payments */
.payments {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.pay-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; }

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

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  text-align: left;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-q::after {
  content: "+";
  color: var(--gold);
  font-size: 20px;
  font-weight: 400;
  flex-shrink: 0;
}

.faq-item.open .faq-q::after { content: "−"; }

.faq-a {
  display: none;
  padding: 0 20px 18px;
  color: var(--text-muted);
  font-size: 14px;
}

.faq-item.open .faq-a { display: block; }

/* Sponsors */
.sponsors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.sponsor {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px;
  text-align: center;
}

.sponsor strong {
  display: block;
  color: var(--gold);
  font-size: 13px;
  margin-bottom: 4px;
}

.sponsor span { font-size: 12px; color: var(--text-muted); }

/* Content page */
.page-hero {
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.page-hero p { color: var(--text-muted); max-width: 60ch; }

.content-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
}

.content-block h2,
.content-block h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--gold);
}

.content-block p,
.content-block li {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 10px;
}

.content-block ul { padding-left: 20px; }

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
}

.steps li {
  counter-increment: step;
  padding: 16px 16px 16px 52px;
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  background: rgba(255,255,255,0.02);
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 16px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold);
  color: #071209;
  font-weight: 800;
  font-size: 13px;
  display: grid;
  place-items: center;
}

/* Footer */
.footer {
  background: #101821;
  color: rgba(255, 255, 255, 0.72);
  padding: 46px 0 30px;
  margin-top: 0;
  border-top: 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 28px;
}

.footer h3,
.footer h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 12px;
}

.footer a {
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 8px;
}

.footer a:hover { color: #fff; }

.footer__disclaimer {
  padding: 16px;
  border-radius: var(--radius-sm);
  background: rgba(245, 197, 24, 0.06);
  border: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* Mobile nav */
@media (max-width: 900px) {
  .menu-toggle { display: block; }

  .nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--bg-header);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 12px 16px 16px;
  }

  .nav.open { display: flex; }

  .hero__grid { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .header__actions .btn--ghost { display: none; }
}

/* MB8 light brand skin — colors from mb8.com */
:root {
  --bg: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #f0f5ff;
  --bg-header: rgba(255, 255, 255, 0.98);
  --blue: #0B4FB2;
  --blue-dark: #2B318B;
  --sky: #e8f0fc;
  --gold: #F48120;
  --gold-dark: #F37D1E;
  --orange: #F48120;
  --orange-hover: #F37D1E;
  --text: #111827;
  --text-muted: #657083;
  --border: #e7edf6;
  --shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

main {
  flex: 1 0 auto;
  background: var(--bg);
}

a { color: var(--blue); }
a:hover { color: var(--blue-dark); }

.container {
  width: min(100% - 28px, 1120px);
}

.header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #edf1f7;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
  backdrop-filter: none;
}

.header > .container,
.header__inner {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: clamp(22px, 8vw, 150px);
}

.header__inner {
  min-height: 70px;
  justify-content: flex-start;
  gap: clamp(36px, 8vw, 120px);
}

.logo {
  color: var(--blue);
  font-size: 0;
}

.logo__mark {
  width: 72px;
  height: 36px;
  border-radius: 0;
  background: transparent;
  color: var(--blue);
  font-size: 0;
  position: relative;
}

.logo__mark::before {
  content: "MB";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--blue);
  font-size: 28px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.08em;
}

.logo__mark::after {
  content: "8";
  position: absolute;
  left: 46px;
  top: -1px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #F48120, #F37D1E);
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 3px 10px rgba(244, 129, 32, 0.28);
}

.logo__mark,
.logo__mark::before,
.logo__mark::after {
  content: none;
  display: none;
}

.logo__img {
  display: block;
  width: auto;
  height: 38px;
  object-fit: contain;
}

.footer .logo__img {
  height: 48px;
}

.nav {
  flex: 1;
  justify-content: flex-start;
  gap: clamp(20px, 3vw, 42px);
  flex-wrap: nowrap;
}

.nav a {
  color: #111827;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 0;
  white-space: nowrap;
}

.nav a:hover,
.nav a.active {
  background: transparent;
  color: var(--blue);
}

.header__actions {
  margin-left: auto;
  flex-shrink: 0;
}

.header .btn {
  font-size: 15px;
  font-weight: 600;
  min-height: 40px;
  padding: 10px 22px;
}

.header .btn--ghost {
  color: #111827;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding-inline: 12px;
}

.header .btn--ghost:hover {
  color: var(--blue);
  background: transparent;
}

.btn {
  min-height: 34px;
  padding: 8px 17px;
  border-radius: 7px;
  font-size: 12px;
  text-transform: none;
}

.btn--ghost {
  color: #fff;
  background: var(--blue);
  border: 0;
}

.btn--ghost:hover {
  color: #fff;
  background: var(--blue-dark);
}

.btn--primary,
.btn--gold {
  color: #fff;
  background: linear-gradient(180deg, #ff9a3d, var(--orange));
  border: 0;
  box-shadow: 0 4px 14px rgba(244, 129, 32, 0.3);
}

.btn--primary:hover,
.btn--gold:hover {
  color: #fff;
  background: linear-gradient(180deg, #ffb05a, var(--orange-hover));
}

.hero {
  padding: 18px 16px 24px;
  background: #f5f7fb;
}

.hero--home {
  padding: 18px 16px 24px;
  background: #f5f7fb;
}

.hero--home .brand-hero {
  width: min(100%, 1000px);
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 14px 32px rgba(10, 24, 45, 0.14);
}

.hero--home .brand-hero--full {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.brand-hero a {
  display: block;
  line-height: 0;
  max-width: 1000px;
  margin: 0 auto;
}

.brand-hero__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
}

.hero--home .brand-hero__image,
.hero--games .brand-hero__image,
.hero--app .brand-hero__image,
.hero--promotions .brand-hero__image {
  height: clamp(260px, 30vw, 360px);
}

@media (max-width: 560px) {
  .hero {
    padding: 10px 10px 16px;
  }

  .hero--home {
    padding: 10px 10px 16px;
  }

  .hero--home .brand-hero {
    border-radius: 8px;
  }

  .brand-hero__image {
    height: clamp(120px, 34vw, 160px);
    object-position: center;
  }

  .hero--home .brand-hero__image,
  .hero--games .brand-hero__image,
  .hero--app .brand-hero__image,
  .hero--promotions .brand-hero__image {
    height: clamp(175px, 50vw, 240px);
    object-position: center;
  }

  .hero--games {
    padding-bottom: 8px;
  }

  .hero--games + .page-content > .section:first-child {
    padding-top: 24px;
  }
}

.page-content {
  width: min(100% - 28px, 1120px);
  margin-inline: auto;
}

.page-content:not(:empty) {
  padding: 40px 0 48px;
}

.hero--games + .page-content {
  padding-top: 0;
}

.hero--games + .page-content > .section:first-child {
  padding-top: 34px;
}

/* Home page helpers */
.home-prose .home-lead {
  font-size: 15px;
  color: #657083;
  line-height: 1.7;
  margin-bottom: 20px;
}

.home-intro p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.home-prose {
  width: 100%;
}

.home-prose > h1 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: #111827;
  margin: 0 0 18px;
}

.home-prose > h2,
.home-prose > .home-h2 {
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: #111827;
}

.home-prose > h3 {
  font-size: 17px;
  font-weight: 700;
  color: #111827;
  margin: 32px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e7edf6;
}

.home-prose > h3:first-child {
  margin-top: 0;
}

.home-prose p {
  font-size: 15px;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 14px;
}

.home-prose p:last-child {
  margin-bottom: 0;
}

.home-prose p a,
.home-prose li a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(11, 79, 178, 0.4);
  font-weight: 500;
  transition: color 0.15s, text-decoration-color 0.15s;
}

.home-prose p a:hover,
.home-prose li a:hover {
  color: #0741a3;
  text-decoration-color: #0741a3;
}

.home-prose ul,
.home-prose ol {
  padding-left: 20px;
  margin: 10px 0 16px;
}

.home-prose li {
  font-size: 15px;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 6px;
}

.home-prose .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.home-prose .btn-row .btn {
  margin-top: 0;
}

.content-visual {
  margin: 28px 0;
  border-radius: 16px;
  overflow: hidden;
  background: #061f45;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
}

.content-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.content-visual--compact {
  max-width: 760px;
}

.content-visual--after-heading {
  margin-top: 18px;
}

.content-visual--float-right {
  float: right;
  width: min(42%, 430px);
  margin: 4px 0 18px 28px;
}

.content-visual--float-left {
  float: left;
  width: min(42%, 430px);
  margin: 4px 28px 18px 0;
}

.content-visual--float-right + p,
.content-visual--float-right ~ p,
.content-visual--float-left + p,
.content-visual--float-left ~ p {
  overflow: visible;
}

.games-slot-poster {
  width: min(32%, 300px);
  margin-top: 6px;
}

.games-slot-poster img {
  max-height: 430px;
  object-fit: cover;
  object-position: center top;
}

.games-wide-visual {
  max-width: 1000px;
  margin: 30px auto 36px;
}

.app-screen-poster {
  width: min(28%, 260px);
  margin-top: 6px;
}

.app-screen-poster img {
  max-height: 520px;
  object-fit: contain;
  background: transparent;
  box-shadow: none;
}

.promo-bonus-visual {
  width: min(40%, 420px);
  margin-top: 4px;
}

.promo-bonus-visual img {
  max-height: 260px;
  object-fit: cover;
  object-position: center;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.home-intro p:last-child { margin-bottom: 0; }

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.stat-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}

.stat-box__num {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 4px;
}

.stat-box__label {
  font-size: 12px;
  color: var(--text-muted);
}

.section__lead {
  max-width: none;
  margin: -8px 0 28px;
  text-align: left;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

.home-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}

.home-h2 {
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: #111827;
}

.home-lead {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 22px;
}

.steps li { font-size: 14px; }
.steps li strong { display: block; color: #111827; margin-bottom: 3px; }
.steps li span { color: var(--text-muted); }

.bonus-note {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 10px;
}

@media (max-width: 720px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .home-2col { grid-template-columns: 1fr; gap: 36px; }
}

.brand-hero {
  width: min(100%, 1000px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  background: #061f4a;
  box-shadow: 0 14px 32px rgba(10, 24, 45, 0.14);
}

.brand-hero--full {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.intro-panel {
  max-width: 760px;
  margin: 46px auto 0;
  text-align: center;
}

.intro-panel h1 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.15;
  color: #111827;
  margin-bottom: 12px;
}

.intro-panel p {
  color: #4b5563;
  font-size: 14px;
}

.intro-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.section {
  padding: 54px 0;
}

.section--alt {
  background: #f6f9ff;
}

.section__head h2 {
  color: #111827;
}

.section__head p {
  color: #657083;
}

.cat-card,
.feature,
.review,
.content-block,
.faq-item,
.sponsor,
.table-wrap {
  background: #fff;
  border: 1px solid #e7edf6;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.cat-card:hover {
  background: #f6f9ff;
  border-color: #b9d8ff;
}

.cat-card h3,
.feature h3,
.faq-q {
  color: #111827;
}

.cat-card p,
.feature p,
.review p,
.faq-a,
.content-block p,
.content-block li,
td,
.footer__disclaimer,
.footer__bottom {
  color: #657083;
}

.feature__icon {
  background: #eaf4ff;
}

th {
  background: #eaf4ff;
  color: var(--blue);
}

.review__source {
  color: #111827;
}

.pay-badge {
  background: #fff;
  border-color: #dce8f7;
  color: #344054;
}

.footer {
  background: #061f45;
  color: #fff;
  border-top: 0;
}

.footer a,
.footer p,
.footer__disclaimer,
.footer__bottom {
  color: rgba(255, 255, 255, 0.72);
}

.footer h3,
.footer h4 {
  color: #fff;
}

.footer__disclaimer {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

@media (max-width: 900px) {
  .header > .container,
  .header__inner {
    padding-inline: 16px;
  }

  .header__inner {
    gap: 16px;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-block: 10px;
  }

  .menu-toggle {
    display: none;
  }

  .nav {
    order: 3;
    display: flex;
    position: static;
    width: 100%;
    flex: 0 0 100%;
    background: #fff;
    box-shadow: none;
    border-top: 1px solid var(--border);
    border-bottom: 0;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    padding: 10px 0 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav a {
    font-size: 14px;
    padding: 4px 0;
  }

}

@media (max-width: 620px) {
  .intro-actions {
    flex-direction: column;
  }

  .logo__img {
    height: 34px;
  }

  .header__actions {
    display: flex;
    gap: 8px;
  }

  .header__actions .btn--ghost {
    display: inline-flex;
  }

  .header .btn {
    min-height: 38px;
    padding: 9px 14px;
    font-size: 14px;
  }
}

/* Footer matching MB8 reference layout */
.footer {
  flex-shrink: 0;
  background: #101821;
  color: rgba(255, 255, 255, 0.72);
  padding: 30px 0 22px;
  margin-top: 0;
  border-top: 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 24px;
}

.footer .logo {
  margin-bottom: 10px;
}

.footer .logo__img {
  height: 34px;
  width: auto;
}

.footer__brand-text {
  max-width: 235px;
  font-size: 12px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 14px;
}

.footer h3,
.footer h4 {
  color: #fff;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer a {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.55;
  margin-bottom: 7px;
}

.footer a:hover {
  color: #fff;
}

.footer__mini {
  max-width: 250px;
  margin-top: 10px;
  font-size: 10px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.38);
}

.footer__bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
}

.footer__age {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__age-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  background: #fff;
  color: #101821;
  border: 2px solid #F48120;
  font-size: 11px;
  font-weight: 900;
}

.footer__disclaimer {
  display: none;
}

@media (max-width: 900px) {
  .footer {
    padding: 22px 0 16px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px 24px;
    margin-bottom: 16px;
  }

  .footer__grid > div:first-child {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }

  .footer .logo {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .footer__brand-text {
    max-width: none;
    margin-bottom: 0;
  }

  .footer__bottom {
    grid-template-columns: 1fr;
    padding-top: 12px;
  }
}

@media (max-width: 560px) {
  .footer {
    padding: 18px 0 12px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px 16px;
    margin-bottom: 12px;
  }

  .footer .logo__img {
    height: 26px;
  }

  .footer__brand-text {
    font-size: 10px;
    line-height: 1.45;
  }

  .footer h3,
  .footer h4 {
    margin-bottom: 6px;
    font-size: 10px;
    letter-spacing: 0.07em;
  }

  .footer a {
    font-size: 10px;
    margin-bottom: 3px;
    line-height: 1.35;
  }

  .footer__age {
    gap: 8px;
    align-items: flex-start;
  }

  .footer__age-badge {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    font-size: 9px;
    border-width: 1.5px;
  }

  .footer__age span:last-child {
    font-size: 9px;
    line-height: 1.4;
  }
}

@media (max-width: 400px) {
  .footer__brand-text {
    display: none;
  }

  .footer__grid > div:first-child {
    justify-content: center;
  }
}

/* ── Login / Register block ───────────────────────────── */

.login-reg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 32px;
}

.lr-card {
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid #e7edf6;
  background: #fff;
  box-shadow: 0 6px 22px rgba(11, 79, 178, 0.06);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.lr-card--login {
  border-top: 4px solid #0B4FB2;
}

.lr-card--register {
  border-top: 4px solid #F48120;
}

.lr-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lr-badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lr-badge--login  { background: #dbeafe; }
.lr-badge--reg    { background: #fde8d0; }

.lr-card__title {
  font-size: 19px;
  font-weight: 800;
  color: #111827;
  line-height: 1.2;
}

.lr-card__sub {
  font-size: 12px;
  color: #9ca3af;
  margin-top: 2px;
}

.lr-body {
  font-size: 14px;
  color: #374151;
  line-height: 1.75;
  flex: 1;
}

.lr-body p { margin-bottom: 10px; }
.lr-body p:last-child { margin-bottom: 0; }

.lr-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lr-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: #374151;
}

.lr-list li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #dbeafe;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 9L7.5 12.5L14 6' stroke='%230B4FB2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: cover;
  margin-top: 1px;
}

.lr-list--orange li::before {
  background-color: #fde8d0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 9L7.5 12.5L14 6' stroke='%23F48120' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.lr-issue {
  background: #f8faff;
  border: 1px solid #e0eaff;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 13px;
  color: #374151;
  line-height: 1.65;
}

.lr-issue strong { color: #111827; }

/* Slot teaser grid */
.slot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 36px;
  align-items: start;
}

.slot-providers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 18px 0;
}

.prov-badge {
  background: #fff;
  border: 1px solid #e7edf6;
  border-radius: 10px;
  padding: 12px 10px;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.prov-badge img {
  max-width: 88%;
  max-height: 34px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.prov-badge:hover {
  background: #f8faff;
  border-color: #93c5fd;
  box-shadow: 0 4px 14px rgba(11, 79, 178, 0.1);
}

.jackpot-box {
  background: linear-gradient(135deg, #1e3a8a 0%, #0B4FB2 100%);
  border-radius: 14px;
  padding: 22px 20px;
  color: #fff;
  box-shadow: 0 14px 32px rgba(11, 79, 178, 0.18);
}

.jackpot-box__label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 6px;
}

.jackpot-box__title {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.jackpot-box__sub {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
  line-height: 1.55;
}

.jackpot-box__list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.jackpot-box__list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 7px;
}

.jackpot-box__list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.jackpot-box__list span:last-child {
  font-weight: 700;
  color: #fbbf24;
  text-align: right;
}

.jackpot-box p {
  font-size: 12px;
  color: rgba(255,255,255,0.58);
  line-height: 1.55;
}

.jackpot-box__btn {
  display: block;
  text-align: center;
  margin-top: 16px;
  padding: 10px 16px;
  background: linear-gradient(135deg,#F48120,#e07310);
}

/* Network block */
.network-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.net-card {
  border: 1px solid #e7edf6;
  border-radius: 14px;
  padding: 22px 20px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(11,79,178,0.05);
}

.net-card__icon {
  font-size: 24px;
  margin-bottom: 10px;
  display: block;
}

.net-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
}

.net-card p {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.6;
}

/* App teaser strip */
.app-strip {
  background: linear-gradient(120deg, #061f45 0%, #0B4FB2 100%);
  border-radius: 18px;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.app-strip__text h2 {
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.app-strip__text p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  max-width: 56ch;
  margin-bottom: 18px;
}

.app-strip__badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.app-badge:hover { background: rgba(255,255,255,0.22); }

.app-badge__icon {
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}

.app-badge__icon--android {
  width: 22px;
  height: 22px;
}

.app-badge__icon--apple {
  width: 18px;
  height: 22px;
  filter: brightness(0) invert(1);
}

.app-strip__media {
  flex-shrink: 0;
  width: min(360px, 42vw);
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-strip__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
}

@media (max-width: 720px) {
  .login-reg-grid { grid-template-columns: 1fr; }
  .slot-grid { grid-template-columns: 1fr; }
  .network-grid { grid-template-columns: 1fr; }
  .pay-text-grid { grid-template-columns: 1fr !important; }
  .content-visual--float-right,
  .content-visual--float-left {
    float: none;
    width: 100%;
    margin: 18px 0 20px;
  }
  .games-slot-poster img {
    max-height: 360px;
  }
  .app-screen-poster img {
    max-height: 420px;
  }
  .promo-bonus-visual img {
    max-height: 240px;
  }
  .app-strip {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }
  .app-strip__media {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 8px;
    justify-content: center;
    order: -1;
  }
}

/* ── Home visual polish ──────────────────────────────── */

.section--home-intro {
  background: linear-gradient(150deg, #eef4ff 0%, #fff 55%);
  border-bottom: 1px solid #e7edf6;
}

.stat-box {
  border-radius: 14px;
  border: 1px solid #e7edf6;
  border-bottom: 3px solid var(--blue);
  box-shadow: 0 4px 18px rgba(11, 79, 178, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.stat-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(11, 79, 178, 0.13);
}

.stat-box__num {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--blue);
}

/* Cat cards — accent bar + lift on hover */
.cat-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  padding: 28px 20px 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: default;
}

.cat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0B4FB2 0%, #F48120 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s ease;
}

.cat-card:hover::before { transform: scaleX(1); }

.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(11, 79, 178, 0.14);
  border-color: rgba(11, 79, 178, 0.2);
}

/* Coloured icon containers */
.cat-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.cat-card:hover .cat-icon-wrap { transform: scale(1.08); }

.cat-icon-wrap--slots   { background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%); }
.cat-icon-wrap--casino  { background: linear-gradient(135deg, #fde8d0 0%, #fdd5a4 100%); }
.cat-icon-wrap--sports  { background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%); }
.cat-icon-wrap--fishing { background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%); }
.cat-icon-wrap--esports { background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%); }

/* Feature cards */
.feature {
  border-radius: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 34px rgba(11, 79, 178, 0.11);
  border-color: rgba(11, 79, 178, 0.22);
}

.feature__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #e8f0ff 0%, #cfdfff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
}

.feature__icon svg {
  width: 34px;
  height: 34px;
  display: block;
}

/* Section head accent underline */
.section__head h2::after {
  content: '';
  display: block;
  width: 44px;
  height: 3px;
  background: linear-gradient(90deg, #0B4FB2, #F48120);
  margin: 10px 0 0;
  border-radius: 2px;
}

.section__head--center {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section__head--center h2::after {
  margin-left: auto;
  margin-right: auto;
}

/* Table row alt */
tbody tr:nth-child(even) td { background: #f8faff; }

/* Payment method badges */
.pay-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pay-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e7edf6;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 5px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.pay-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.pay-icon--dual {
  width: 50px;
  height: 50px;
  flex-direction: column;
  gap: 2px;
  padding: 4px;
}

.pay-icon--dual img {
  width: 100%;
  height: calc(50% - 1px);
  object-fit: contain;
}

.pay-name { font-weight: 600; color: #111827; font-size: 13.5px; line-height: 1.3; }
.pay-note { font-size: 11px; color: #9ca3af; margin-top: 1px; }

.pay-pop {
  display: inline-block;
  padding: 1px 7px;
  border-radius: 20px;
  font-size: 9.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #fef3c7;
  color: #92400e;
  margin-top: 3px;
}

/* Speed / status tags inside table */
.spd {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.spd--instant { background: #dcfce7; color: #166534; }
.spd--fast    { background: #fef9c3; color: #713f12; }
.spd--med     { background: #e0f2fe; color: #0369a1; }
.spd--ok      { background: #f3f4f6; color: #374151; }

.fee-free {
  font-weight: 700;
  color: #16a34a;
  font-size: 13px;
}

td { color: #374151; }
td strong { color: #111827; }

/* Home 2-col heading */
.home-h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: linear-gradient(90deg, #0B4FB2, #F48120);
  margin-top: 8px;
  border-radius: 2px;
}
