: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__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 36px;
}

.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(4, 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 {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(245, 197, 24, 0.22), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(245, 197, 24, 0.18);
  display: grid;
  place-items: center;
}

.cat-card__icon::before {
  content: "";
  width: 25px;
  height: 25px;
  background: linear-gradient(135deg, #fff, var(--gold));
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
}

.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(3, 1fr);
  gap: 22px;
}

.feature {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.98)),
    var(--bg-card);
  border: 1px solid rgba(14, 68, 151, 0.1);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.feature::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), #ff7a1a, var(--blue));
}

.feature::after {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.18) 0%, transparent 68%);
  pointer-events: none;
}

.feature:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 68, 151, 0.2);
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.11);
}

.feature__icon {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(245, 197, 24, 0.18), rgba(14, 68, 151, 0.12));
  border: 1px solid rgba(14, 68, 151, 0.1);
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.feature__icon::before {
  content: "";
  width: 27px;
  height: 27px;
  background: linear-gradient(135deg, var(--blue), var(--gold));
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
}

.feature__icon--wallet { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 7.5h14.5A2.5 2.5 0 0 1 21 10v7a2.5 2.5 0 0 1-2.5 2.5h-14A2.5 2.5 0 0 1 2 17V6.5A2.5 2.5 0 0 1 4.5 4H18v3.5H4Z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M17 13.5h4' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); }
.feature__icon--speed { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13 2 4 14h7l-1 8 10-13h-7l0-7Z' fill='black'/%3E%3C/svg%3E"); }
.feature__icon--brand { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 19h14M7 19V9l5-4 5 4v10M9 19v-6h6v6' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.feature__icon--shield { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3 4.5 6v5.5c0 4.8 3 8 7.5 9.5 4.5-1.5 7.5-4.7 7.5-9.5V6L12 3Z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='m8.5 12 2.3 2.3 4.8-5' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.feature__icon--gift { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 9h18v4H3V9Zm2 4h14v8H5v-8Zm7-4v12M8 9C6 8.7 5 7.7 5 6.5S6 4.5 7.3 5c1.2.5 2.2 2 4.7 4M16 9c2-.3 3-1.3 3-2.5S18 4.5 16.7 5c-1.2.5-2.2 2-4.7 4' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.feature__icon--chat { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 5h16v11H8l-4 4V5Z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M8 9h8M8 13h5' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); }
.feature__icon--fish { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 12s4-6 10-6c4 0 7 3 8 6-1 3-4 6-8 6-6 0-10-6-10-6Z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M3 12 1.5 8.5M3 12l-1.5 3.5M16 12h.1' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); }
.feature__icon--dice { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='4' y='4' width='16' height='16' rx='3' fill='none' stroke='black' stroke-width='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.2' fill='black'/%3E%3Ccircle cx='15.5' cy='8.5' r='1.2' fill='black'/%3E%3Ccircle cx='12' cy='12' r='1.2' fill='black'/%3E%3Ccircle cx='8.5' cy='15.5' r='1.2' fill='black'/%3E%3Ccircle cx='15.5' cy='15.5' r='1.2' fill='black'/%3E%3C/svg%3E"); }
.feature__icon--ball { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='9' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M12 3v18M3 12h18M6 6c4 3 8 3 12 0M6 18c4-3 8-3 12 0' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E"); }
.feature__icon--slot { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='4' y='5' width='14' height='15' rx='2' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M18 9h2v5h-2M7 10h8M7 14h8M9 5V3h4v2' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); }
.feature__icon--cards { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='5' y='6' width='10' height='14' rx='2' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M9 4h8a2 2 0 0 1 2 2v10M9 11l2 2 2-2' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.feature__icon--bell { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 10a6 6 0 0 1 12 0v4l2 3H4l2-3v-4ZM10 20h4' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.feature__icon--cash { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='3' y='6' width='18' height='12' rx='2' fill='none' stroke='black' stroke-width='2'/%3E%3Ccircle cx='12' cy='12' r='3' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M6 9v6M18 9v6' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); }
.feature__icon--reload { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19 8a7 7 0 0 0-12-2l-2 2M5 3v5h5M5 16a7 7 0 0 0 12 2l2-2M19 21v-5h-5' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.feature__icon--users { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8 11a4 4 0 1 0 0-8 4 4 0 0 0 0 8Zm8-1a3 3 0 1 0 0-6M2 21a6 6 0 0 1 12 0M14 21a5 5 0 0 1 8 0' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); }
.feature__icon--vip { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m12 3 2.8 5.7 6.2.9-4.5 4.4 1.1 6.2-5.6-3-5.6 3 1.1-6.2L3 9.6l6.2-.9L12 3Z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.feature__icon--timer { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 2h6M12 8v5l3 2M12 22a8 8 0 1 0 0-16 8 8 0 0 0 0 16Z' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); }
.feature__icon--snow { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3v18M4.2 7.5l15.6 9M4.2 16.5l15.6-9M8 5l4 3 4-3M8 19l4-3 4 3' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.feature__icon--ban { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='9' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M6 18 18 6' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); }
.feature__icon--chart { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 20V4M4 20h16M8 16v-5M12 16V8M16 16v-9' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); }
.feature__icon--lock { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='5' y='10' width='14' height='10' rx='2' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M8 10V7a4 4 0 0 1 8 0v3M12 14v2' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); }
.feature__icon--crash { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 17c6-1 9-4 12-10l1.3 4.4L21 13l-5.4 1.2L13 19c-1.2-2.4-3.4-3.3-10-2Z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.feature__icon--lotto { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='4' y='5' width='16' height='14' rx='2' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M8 9h2M14 9h2M8 13h2M14 13h2' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); }
.feature__icon--support { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 13v-2a7 7 0 0 1 14 0v2M5 13h3v5H5a2 2 0 0 1-2-2v-1a2 2 0 0 1 2-2Zm14 0h-3v5h3a2 2 0 0 0 2-2v-1a2 2 0 0 0-2-2Zm-3 5c0 2-1.5 3-4 3' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.feature__icon--calendar { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='4' y='5' width='16' height='15' rx='2' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M8 3v4M16 3v4M4 10h16M8 14h2M14 14h2' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); }
.feature__icon--license { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 3h10l3 3v15l-3-2-3 2-3-2-3 2-3-2V5a2 2 0 0 1 2-2Z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M8 8h8M8 12h6' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); }
.feature__icon--gamepad { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10h10a4 4 0 0 1 3.8 5.3l-.8 2.3a2 2 0 0 1-3.3.7L14.5 16h-5l-2.2 2.3a2 2 0 0 1-3.3-.7l-.8-2.3A4 4 0 0 1 7 10Z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M8 13v3M6.5 14.5h3M16.5 13.5h.1M18.5 15.5h.1' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); }
.feature__icon--phone { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='7' y='2.5' width='10' height='19' rx='2.5' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M10 18h4' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); }
.feature__icon--sword { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14 4h6v6L9 21l-6-6L14 4ZM7 17l-2-2M10 18l-4-4' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.feature__icon--target { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='8' fill='none' stroke='black' stroke-width='2'/%3E%3Ccircle cx='12' cy='12' r='3' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M12 2v4M12 18v4M2 12h4M18 12h4' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); }

.feature h3,
.feature p {
  position: relative;
  z-index: 1;
}

.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 {
  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 {
  border-top: 1px solid var(--border);
  padding: 40px 0 28px;
  margin-top: 20px;
  background: #050e08;
}

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

.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; }
  .footer__grid { grid-template-columns: 1fr; }
}

/* BK8 light brand skin inspired by bk8-casino-my.com and bk8.services */
:root {
  --bg: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #f6f9ff;
  --bg-header: rgba(255, 255, 255, 0.98);
  --blue: #0057c8;
  --blue-dark: #003f9e;
  --sky: #e9f3ff;
  --gold: #ffb100;
  --gold-dark: #e19500;
  --orange: #ff8a1d;
  --orange-hover: #ffa142;
  --text: #111827;
  --text-muted: #657083;
  --border: #e7edf6;
  --shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

body {
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
  overflow-x: hidden;
}

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: "BK";
  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: 42px;
  top: -1px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #ffd94a, #ff8a1d);
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 3px 10px rgba(255, 138, 29, 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, #ffb052, var(--orange));
  border: 0;
  box-shadow: 0 4px 14px rgba(255, 138, 29, 0.3);
}

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

.hero {
  padding: 0 0 44px;
  background: #fff;
}

.brand-hero {
  margin-top: 0;
  overflow: hidden;
  border-radius: 0;
  position: relative;
  background: #061a54;
}

.brand-hero--full {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
}

.brand-hero__image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.brand-hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(6, 26, 84, 0.9) 0%, rgba(6, 26, 84, 0.62) 42%, transparent 72%);
  pointer-events: none;
}

.brand-hero__overlay .container {
  pointer-events: auto;
}

.brand-hero__content {
  max-width: 520px;
  padding: 28px 0;
  color: #fff;
}

.brand-hero__badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 14px;
}

.brand-hero__title {
  font-size: clamp(1.55rem, 3.4vw, 2.65rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  color: #fff;
}

.brand-hero__title mark {
  background: none;
  color: #f5c518;
}

.brand-hero__lead {
  font-size: clamp(13px, 1.4vw, 16px);
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 20px;
  max-width: 44ch;
  line-height: 1.55;
}

.brand-hero__content .btn--primary {
  font-size: 14px;
  padding: 11px 24px;
  border-radius: 999px;
}

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

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

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

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

.intro-panel .btn {
  text-decoration: none;
}

.intro-panel .btn--primary {
  color: #071209;
}

.intro-panel .btn--ghost {
  color: #fff;
}

.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;
}

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

td {
  border-bottom: 1px solid #e7edf6;
}

.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 h4 {
  color: #fff;
}

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

/* ─── Inner page hero banner (CSS) ─────────────────── */
.page-hero-banner {
  background: linear-gradient(140deg, #061540 0%, #0a2878 52%, #0d3da8 100%);
  position: relative;
  overflow: hidden;
  padding: 64px 0 56px;
  text-align: center;
  color: #fff;
}

.page-hero-banner--app {
  background: linear-gradient(140deg, #05122e 0%, #072260 52%, #0b3898 100%);
}

.page-hero-banner--promo {
  background: linear-gradient(140deg, #1a0848 0%, #0e2268 45%, #0057c8 100%);
}
.page-hero-banner--rg {
  background: linear-gradient(140deg, #052e16 0%, #065f46 52%, #047857 100%);
}

/* Decorative glow circles */
.page-hero-banner::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -60px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.13) 0%, transparent 68%);
  pointer-events: none;
}

.page-hero-banner::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero-banner .container {
  position: relative;
  z-index: 1;
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 7px 18px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.page-hero-badge .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #f5c518;
  display: inline-block;
  flex-shrink: 0;
}

.page-hero-banner h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.03em;
  margin: 0 auto 16px;
  max-width: 740px;
}

.page-hero-banner h1 mark {
  background: none;
  color: #f5c518;
  position: relative;
}

.page-hero-banner h1 mark::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(245, 197, 24, 0.45);
  border-radius: 2px;
}

.page-hero-lead {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.page-hero-cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.page-hero-cta .btn--ghost {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.page-hero-cta .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.page-hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-hero-stat {
  text-align: center;
}

.page-hero-stat strong {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: #f5c518;
  line-height: 1;
  margin-bottom: 5px;
  letter-spacing: -0.02em;
}

.page-hero-stat span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 620px) {
  .page-hero-banner {
    padding: 48px 0 40px;
  }
  .page-hero-stats {
    gap: 24px;
  }
  .page-hero-stat strong {
    font-size: 20px;
  }
}

/* ─── Facts grid (At a Glance) ─────────────────────── */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.fact-card {
  background: #fff;
  border: 1px solid #e7edf6;
  border-radius: 14px;
  padding: 18px 20px 16px;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.fact-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(14, 68, 151, 0.08), rgba(245, 197, 24, 0.16));
  border: 1px solid rgba(14, 68, 151, 0.08);
  display: grid;
  place-items: center;
  margin-bottom: 8px;
}

.fact-card__icon::before {
  content: "";
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--blue), var(--gold));
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
}

.fact-card__label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #0057c8;
}

.fact-card__value {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  line-height: 1.4;
}

.fact-card__note {
  font-size: 12px;
  color: #657083;
  line-height: 1.45;
  margin-top: 2px;
}

/* Fix invisible strong text inside table cells in light skin */
td strong { color: #111827; }

/* Table cell status indicators */
.cell-yes {
  color: #15803d;
  font-weight: 700;
  font-size: 16px;
}

.cell-no {
  color: #dc2626;
  font-weight: 700;
  font-size: 16px;
}

.cell-na {
  color: #9ca3af;
  font-size: 15px;
}

.pros-cons-table {
  border-color: #dbe7f5;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
}

.pros-cons-table table {
  table-layout: fixed;
}

.pros-cons-table th {
  font-size: 12px;
  letter-spacing: 0.08em;
}

.pros-cons-table th.pros-cons-table__good {
  background: linear-gradient(180deg, #eaf8ef, #dff3e7);
  color: #15803d;
}

.pros-cons-table th.pros-cons-table__bad {
  background: linear-gradient(180deg, #fff0f0, #ffe3e3);
  color: #b91c1c;
}

.pros-cons-table td {
  position: relative;
  padding-left: 48px;
  color: #374151;
  line-height: 1.6;
  vertical-align: top;
}

.pros-cons-table td::before {
  position: absolute;
  left: 20px;
  top: 17px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.pros-cons-table td.pros-cons-table__good {
  background: rgba(240, 253, 244, 0.5);
}

.pros-cons-table td.pros-cons-table__good::before {
  content: "✓";
  color: #15803d;
  background: #dcfce7;
  border: 1px solid #86efac;
}

.pros-cons-table td.pros-cons-table__bad {
  background: rgba(254, 242, 242, 0.58);
}

.pros-cons-table td.pros-cons-table__bad::before {
  content: "✕";
  color: #dc2626;
  background: #fee2e2;
  border: 1px solid #fca5a5;
}

/* ─── Review longform text ─────────────────────────── */
.review-body {
  max-width: 860px;
  margin: 0 auto;
}

.review-body p {
  color: #4b5563;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.review-body a,
.intro-panel a:not(.btn),
.feature p a,
.app-card a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.review-body a:hover,
.intro-panel a:not(.btn):hover,
.feature p a:hover,
.app-card a:hover {
  color: var(--blue-dark);
}

.review-body h3 {
  font-size: 19px;
  font-weight: 700;
  color: #111827;
  margin: 34px 0 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid #eef2ff;
  letter-spacing: -0.01em;
}

.review-body .table-wrap {
  margin-top: 16px;
  margin-bottom: 32px;
}

.review-img {
  float: right;
  width: 42%;
  max-width: 420px;
  border-radius: 14px;
  margin: 4px 0 20px 28px;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.09);
}

.review-img--left {
  float: left;
  margin: 4px 28px 20px 0;
}

.review-clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* Brand visual break */
.brand-visual {
  max-width: 720px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.1);
}

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

@media (max-width: 700px) {
  .review-img {
    width: 42%;
    max-width: 160px;
    margin: 4px 0 14px 18px;
  }

  .review-img--left {
    width: 42%;
    max-width: 160px;
    margin: 4px 18px 14px 0;
  }

  .review-img--fullmobile,
  .review-img--fullmobile.review-img--left {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 16px 0 20px;
  }
}

/* ─── Bonus card ───────────────────────────────────── */
.bonus-card {
  background: #fff;
  border: 2px solid #ffd580;
  border-radius: 18px;
  padding: 36px 32px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(255, 186, 0, 0.08);
}

.bonus-card__tag {
  display: inline-block;
  background: #fff3cd;
  color: #92640a;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.bonus-card__amount {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  color: #0057c8;
  line-height: 1;
  margin: 0 0 4px;
  letter-spacing: -0.03em;
}

.bonus-card__sub {
  font-size: 15px;
  color: #657083;
  margin-bottom: 24px;
}

.bonus-terms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 26px;
}

.bonus-term {
  background: #f6f9ff;
  border: 1px solid #dce8f7;
  border-radius: 10px;
  padding: 10px 16px;
  text-align: center;
  min-width: 100px;
}

.bonus-term strong {
  display: block;
  font-size: 16px;
  color: #111827;
  margin-bottom: 2px;
}

.bonus-term span {
  font-size: 11px;
  color: #657083;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ─── Login / Register section ─────────────────────── */
.login-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.login-block {
  background: #fff;
  border: 1px solid #e7edf6;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}

.login-block h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 18px;
}

/* ─── Info note ────────────────────────────────────── */
.info-note {
  background: #eaf3ff;
  border-left: 3px solid #0057c8;
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  font-size: 14px;
  color: #1e3a5f;
  margin-top: 16px;
  line-height: 1.65;
}

/* ─── App section ──────────────────────────────────── */
.app-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.app-row__text h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #111827;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.app-row__text p {
  color: #657083;
  font-size: 15px;
  margin-bottom: 16px;
  line-height: 1.7;
}

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

.app-card {
  background: #f6f9ff;
  border: 1px solid #dce8f7;
  border-radius: 14px;
  padding: 28px;
  font-size: 14px;
  color: #344054;
}

.app-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
}

.app-card ul {
  padding-left: 18px;
  line-height: 2;
}

/* ─── CTA final ────────────────────────────────────── */
.final-cta {
  background: linear-gradient(135deg, #0057c8 0%, #003fa0 100%);
  border-radius: 18px;
  padding: 48px 36px;
  text-align: center;
  color: #fff;
}

.final-cta h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.final-cta p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 28px;
  max-width: 54ch;
  margin-inline: auto;
}

.final-cta .btn--primary {
  background: #f5c518;
  color: #111827;
  font-weight: 800;
  font-size: 17px;
  padding: 14px 36px;
  border-radius: 999px;
}

/* ─── Responsive additions ─────────────────────────── */
@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;
  }

  .hero {
    padding-bottom: 0;
  }

  .brand-hero__image {
    height: clamp(190px, 48vw, 340px);
    width: 100%;
    object-fit: cover;
    object-position: center;
  }

  .brand-hero__overlay {
    background: linear-gradient(90deg, rgba(6, 26, 84, 0.94) 0%, rgba(6, 26, 84, 0.78) 58%, rgba(6, 26, 84, 0.35) 100%);
  }

  .brand-hero__content {
    max-width: 78%;
    padding: 16px 0;
  }

  .brand-hero__badge {
    font-size: 9px;
    padding: 5px 10px;
    margin-bottom: 10px;
  }

  .brand-hero__title {
    font-size: clamp(1.2rem, 5.5vw, 1.65rem);
    margin-bottom: 8px;
  }

  .brand-hero__lead {
    display: none;
  }

  .brand-hero__content .btn--primary {
    font-size: 12px;
    padding: 9px 16px;
  }

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

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

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

  .login-grid { grid-template-columns: 1fr; }

  .app-row { grid-template-columns: 1fr; }

  .final-cta { padding: 36px 20px; }

}

@media (max-width: 500px) {
  .facts-grid { grid-template-columns: 1fr; }
}

@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;
  }

  .brand-hero__image {
    height: 220px;
  }
}

/* Footer matching BK8 reference layout */
.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.3fr 1fr 1.25fr 1.2fr;
  gap: 58px;
  align-items: start;
  margin-bottom: 38px;
}

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

.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 h4 {
  color: #fff;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer h4 a {
  color: inherit;
  display: inline;
  font-size: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  text-transform: inherit;
}

.footer h4 a:hover {
  color: #fff;
  opacity: 0.85;
}

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

.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: 28px;
  align-items: center;
  padding-top: 24px;
  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 #f6cf3f;
  font-size: 11px;
  font-weight: 900;
}

.footer__disclaimer {
  display: none;
}

@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }

  .footer__bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}
