/* RESET */
*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: hidden; max-width: 100%; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body, h1, h2, h3, h4, p, ul, ol, figure, blockquote, dl, dd { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg, video { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
table { border-collapse: collapse; width: 100%; min-width: 0; }
h1, h2, h3, p, li, blockquote, td, th, a, code { overflow-wrap: anywhere; }

/* ROOT */
:root {
  --bt-bg: #0a1410;
  --bt-bg-deep: #0d1814;
  --bt-bg-raised: #142820;
  --bt-bg-elev: #1a3329;
  --bt-text: #ffffff;
  --bt-text-muted: #9da89f;
  --bt-text-dim: #6f7c72;
  --bt-yellow: #ffb80c;
  --bt-yellow-2: #ffc733;
  --bt-yellow-ink: #0a1410;
  --bt-green: #14805e;
  --bt-green-2: #1aa873;
  --bt-green-3: #00c982;
  --bt-green-deep: #0e5e44;
  --bt-border: #1d3429;
  --bt-border-strong: #2a4a3b;
  --bt-danger: #e63946;
  --bt-radius: 8px;
  --bt-radius-lg: 12px;
  --bt-radius-sm: 4px;
  --bt-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
  --bt-shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.3);
  --bt-container: 1280px;
}

/* TYPOGRAPHY */
body {
  font-family: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: var(--bt-text);
  background: var(--bt-bg);
  background-image:
    linear-gradient(180deg, #0e3b29 0%, var(--bt-bg-deep) 280px, var(--bt-bg) 480px);
  background-repeat: no-repeat;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; color: #fff; }
h1 { font-size: clamp(26px, 5.5vw, 38px); }
h2 { font-size: clamp(20px, 3vw, 28px); margin: 36px 0 14px; }
h3 { font-size: 18px; margin: 20px 0 10px; }
p { margin: 0 0 14px; color: var(--bt-text); }

.bt-container {
  max-width: var(--bt-container);
  margin-inline: auto;
  padding-inline: 16px;
}
@media (min-width: 760px) {
  .bt-container { padding-inline: 24px; }
}

/* HEADER */
.bt-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background:
    linear-gradient(180deg, #0e3b29 0%, #0a2419 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.bt-header__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 60px;
  min-width: 0;
}
.bt-header__logo { flex-shrink: 0; display: flex; align-items: center; }
.bt-header__logo img {
  height: 28px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}
@media (min-width: 760px) {
  .bt-header__inner { height: 66px; gap: 22px; }
  .bt-header__logo img { height: 32px; max-width: none; }
}
.bt-header__nav {
  display: none;
  align-items: center;
  gap: 28px;
  flex: 1;
  min-width: 0;
  font-size: 14px;
  font-weight: 600;
}
@media (min-width: 980px) {
  .bt-header__nav { display: flex; }
}
.bt-header__nav a {
  color: #d4ddd6;
  padding: 8px 0;
  position: relative;
  white-space: nowrap;
}
.bt-header__nav a:hover { color: #fff; }
.bt-header__nav a.is-active { color: #fff; }
.bt-header__nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--bt-yellow);
  border-radius: 2px;
}
.bt-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}
.bt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 16px;
  border-radius: 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: background 0.15s, transform 0.1s, color 0.15s, border-color 0.15s;
  max-width: 100%;
}
.bt-btn--register { background: var(--bt-yellow); color: var(--bt-yellow-ink); }
.bt-btn--register:hover { background: var(--bt-yellow-2); }
.bt-btn--ghost { background: transparent; color: #fff; border: 1px solid rgba(255, 255, 255, 0.35); }
.bt-btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.06); }
.bt-btn--green { background: var(--bt-green-2); color: #fff; }
.bt-btn--green:hover { background: var(--bt-green-3); color: #fff; }
.bt-btn--lg { height: 44px; padding: 0 24px; font-size: 14px; }
.bt-btn--block { width: 100%; }
.bt-header__offers {
  display: none;
  font-size: 13px;
  font-weight: 600;
  color: #d4ddd6;
  padding: 8px 14px;
  border-radius: 18px;
}
.bt-header__offers:hover { color: #fff; }
@media (min-width: 760px) { .bt-header__offers { display: inline-flex; align-items: center; } }
.bt-header__burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  color: #fff;
}
.bt-header__burger:hover { background: rgba(255, 255, 255, 0.08); }
.bt-header__burger svg { width: 22px; height: 22px; }
@media (min-width: 980px) { .bt-header__burger { display: none; } }

/* SEARCH BAR */
.bt-searchbar {
  background: var(--bt-bg);
  padding: 14px 0 6px;
}
.bt-searchbar__input {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bt-bg-raised);
  border: 1px solid var(--bt-border);
  border-radius: 22px;
  padding: 10px 18px;
  width: 100%;
  max-width: 100%;
}
.bt-searchbar__input svg { width: 18px; height: 18px; color: var(--bt-text-muted); flex-shrink: 0; }
.bt-searchbar__input input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 14px;
  min-width: 0;
}
.bt-searchbar__input input::placeholder { color: var(--bt-text-dim); }

/* SUBNAV — sport category pills */
.bt-subnav {
  padding: 14px 0 6px;
  border-bottom: 1px solid var(--bt-border);
}
.bt-subnav__inner {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.bt-subnav__inner::-webkit-scrollbar { display: none; }
.bt-subnav__pill {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  color: var(--bt-text-muted);
  font-size: 12px;
  font-weight: 500;
  min-width: 64px;
  max-width: 100%;
}
.bt-subnav__pill:hover { color: #fff; }
.bt-subnav__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bt-bg-raised);
  border: 1px solid var(--bt-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bt-green-3);
  transition: background 0.15s, border-color 0.15s;
}
.bt-subnav__pill:hover .bt-subnav__icon { background: var(--bt-bg-elev); border-color: var(--bt-green); }
.bt-subnav__icon svg { width: 20px; height: 20px; }
.bt-subnav__pill.is-active .bt-subnav__icon { background: var(--bt-green); border-color: var(--bt-green-3); color: #fff; }
.bt-subnav__pill.is-active { color: #fff; }

/* HERO */
.bt-hero {
  padding: 20px 0 28px;
}
.bt-hero__inner { min-width: 0; max-width: 100%; }
.bt-hero__card {
  position: relative;
  overflow: hidden;
  border-radius: var(--bt-radius-lg);
  background:
    linear-gradient(135deg, rgba(20, 128, 94, 0.85) 0%, rgba(10, 36, 25, 0.85) 100%),
    radial-gradient(circle at 80% 30%, rgba(255, 184, 12, 0.18) 0%, transparent 60%),
    #0e3b29;
  padding: 28px 24px 32px;
  box-shadow: var(--bt-shadow);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
@media (min-width: 760px) {
  .bt-hero__card { padding: 40px 44px 44px; }
}
.bt-hero__eyebrow {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255, 184, 12, 0.18);
  color: var(--bt-yellow);
  border-radius: 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.bt-hero h1 {
  font-size: clamp(24px, 6vw, 38px);
  line-height: 1.15;
  margin-bottom: 8px;
}
.bt-hero__amount {
  display: block;
  color: var(--bt-yellow);
  font-size: clamp(32px, 7vw, 56px);
  font-weight: 900;
  line-height: 1;
  margin: 4px 0 14px;
}
.bt-hero__lead {
  color: #d8e2dc;
  font-size: 15px;
  max-width: 560px;
  margin-bottom: 22px;
}
.bt-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
@media (max-width: 639px) {
  .bt-hero__ctas .bt-btn--lg { width: 100%; }
}
.bt-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12px;
  color: #b6c1ba;
}
.bt-hero__meta strong { color: var(--bt-yellow); font-weight: 700; }

/* BREADCRUMBS */
.bt-breadcrumbs {
  padding: 18px 0 4px;
  font-size: 12px;
  color: var(--bt-text-muted);
}
.bt-breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 6px; }
.bt-breadcrumbs li:not(:last-child)::after {
  content: "›";
  margin-left: 6px;
  color: var(--bt-text-dim);
}
.bt-breadcrumbs a { color: var(--bt-text-muted); }
.bt-breadcrumbs a:hover { color: var(--bt-yellow); }
.bt-breadcrumbs li[aria-current="page"] { color: #fff; }

/* MAIN */
.bt-main { padding-bottom: 60px; }
.bt-lead {
  font-size: 16px;
  color: var(--bt-text-muted);
  max-width: 820px;
  margin: 14px 0 24px;
}

/* CONTENT IMAGES */
article img, section.bt-content img, main p img {
  display: block;
  max-width: 720px;
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  margin: 24px auto;
  border-radius: var(--bt-radius);
}
.author img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
}
header img { max-height: 48px; width: auto; object-fit: contain; }
footer img[src*="img_listing_casinos"] {
  max-height: 28px;
  width: auto;
  object-fit: contain;
}
img { max-width: 100%; height: auto; }
@media (max-width: 768px) {
  article img, section.bt-content img, main p img { max-height: 320px; }
}

/* CONTENT */
.bt-content { max-width: 820px; }
.bt-content p { color: #d8e2dc; }
.bt-content ul {
  margin: 16px 0 24px;
}
.bt-content ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 8px;
  color: #d8e2dc;
}
.bt-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bt-green-2);
  box-shadow: inset 0 0 0 3px var(--bt-bg);
}
.bt-content blockquote {
  margin: 24px 0;
  padding: 18px 22px;
  border-left: 4px solid var(--bt-yellow);
  background: var(--bt-bg-raised);
  border-radius: 0 var(--bt-radius) var(--bt-radius) 0;
  color: #e0e8e3;
  font-style: italic;
}
.bt-content blockquote cite {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  font-style: normal;
  color: var(--bt-text-muted);
}

/* TABLE */
.bt-tablewrap {
  overflow-x: auto;
  margin: 22px 0;
  border-radius: var(--bt-radius);
  border: 1px solid var(--bt-border);
}
.bt-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  background: var(--bt-bg-raised);
}
.bt-table th, .bt-table td {
  padding: 12px 16px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--bt-border);
}
.bt-table thead th {
  background: var(--bt-bg-deep);
  color: var(--bt-yellow);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.5px;
}
.bt-table tbody tr:last-child td { border-bottom: none; }
.bt-table tbody tr:hover { background: var(--bt-bg-elev); }

/* OFFERS LISTING */
.bt-offers {
  margin: 36px 0;
}
.bt-offers__head { margin-bottom: 18px; }
.bt-offers__title { margin: 0 0 4px; }
.bt-offers__title-accent { color: var(--bt-yellow); }
.bt-offers__sub { color: var(--bt-text-muted); font-size: 14px; }
.bt-offers__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 880px) {
  .bt-offers__grid { grid-template-columns: 1fr 1.1fr 1fr; align-items: stretch; }
}
.bt-offers__card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bt-bg-raised);
  border: 1px solid var(--bt-border);
  border-radius: var(--bt-radius-lg);
  padding: 22px 20px;
  transition: transform 0.18s, border-color 0.18s, box-shadow 0.18s;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  max-width: 100%;
}
.bt-offers__card:hover {
  transform: translateY(-3px);
  border-color: var(--bt-green-2);
  box-shadow: var(--bt-shadow);
}
.bt-offers__card--top {
  background:
    linear-gradient(180deg, rgba(20, 128, 94, 0.15) 0%, var(--bt-bg-raised) 60%);
  border: 2px solid var(--bt-yellow);
  box-shadow: 0 10px 30px rgba(255, 184, 12, 0.18);
}
@media (min-width: 880px) {
  .bt-offers__card--top { transform: translateY(-6px); }
  .bt-offers__card--top:hover { transform: translateY(-10px); }
}
.bt-offers__ribbon {
  position: absolute;
  top: 12px;
  right: -32px;
  width: 130px;
  padding: 4px 0;
  background: var(--bt-yellow);
  color: var(--bt-yellow-ink);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-align: center;
  transform: rotate(35deg);
  box-shadow: var(--bt-shadow-soft);
}
.bt-offers__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  margin-bottom: 12px;
  background: linear-gradient(180deg, #0e3b29 0%, #0a2419 100%);
  border-radius: var(--bt-radius);
  padding: 10px 14px;
}
.bt-offers__logo img { max-height: 28px; width: auto; }
.bt-offers__brand {
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.bt-offers__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}
.bt-offers__stars { color: var(--bt-yellow); letter-spacing: 1px; font-size: 15px; }
.bt-offers__rating-num { font-weight: 700; font-size: 13px; }
.bt-offers__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-bottom: 14px;
}
.bt-offers__tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--bt-bg-elev);
  border: 1px solid var(--bt-border);
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--bt-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.bt-offers__tag--hot {
  background: rgba(255, 184, 12, 0.14);
  border-color: var(--bt-yellow);
  color: var(--bt-yellow);
}
.bt-offers__bonus {
  text-align: center;
  padding: 12px;
  margin-bottom: 14px;
  background: var(--bt-bg-deep);
  border: 1px dashed var(--bt-border-strong);
  border-radius: var(--bt-radius);
}
.bt-offers__bonus-label {
  display: block;
  font-size: 11px;
  color: var(--bt-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.bt-offers__bonus-amount {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--bt-yellow);
  line-height: 1.1;
}
.bt-offers__card--top .bt-offers__bonus-amount { font-size: 26px; }
.bt-offers__usp { margin: 0 0 18px; flex: 1; }
.bt-offers__usp li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-size: 13px;
  color: #d8e2dc;
  border-bottom: 1px solid #1a3329;
}
.bt-offers__usp li:last-child { border-bottom: none; }
.bt-offers__usp li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--bt-green-3);
  font-weight: 800;
  font-size: 13px;
}
.bt-offers__playing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--bt-green-3);
  font-weight: 600;
}
.bt-offers__playing svg { width: 14px; height: 14px; }
.bt-offers__timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--bt-text-muted);
}
.bt-offers__timer-clock {
  display: inline-flex;
  gap: 3px;
  font-family: "Courier New", monospace;
  font-weight: 700;
  color: #fff;
  font-size: 15px;
}
.bt-offers__timer-clock span {
  display: inline-block;
  min-width: 26px;
  padding: 2px 4px;
  background: var(--bt-bg-deep);
  border-radius: 4px;
  text-align: center;
}
.bt-offers__cta-wrap { display: flex; flex-direction: column; gap: 6px; }
.bt-offers__cta {
  display: block;
  text-align: center;
  height: 44px;
  line-height: 44px;
  background: var(--bt-yellow);
  color: var(--bt-yellow-ink);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.4px;
  border-radius: 22px;
  transition: background 0.15s;
  max-width: 100%;
}
.bt-offers__cta:hover { background: var(--bt-yellow-2); }
.bt-offers__review {
  display: block;
  text-align: center;
  font-size: 12px;
  color: var(--bt-text-muted);
  text-decoration: underline;
  text-decoration-color: var(--bt-border-strong);
  text-underline-offset: 3px;
}
.bt-offers__review:hover { color: var(--bt-yellow); }
.bt-offers__urgency {
  margin-top: 10px;
  text-align: center;
  font-size: 11px;
  color: var(--bt-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.bt-offers__aggregate {
  margin-top: 18px;
  text-align: center;
  font-size: 14px;
  color: var(--bt-text-muted);
}
.bt-offers__aggregate strong { color: var(--bt-yellow); }

/* SLOTS LISTING */
.bt-slots { margin: 40px 0; }
.bt-slots__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
.bt-slots__title { margin: 0; }
.bt-slots__title-accent { color: var(--bt-green-3); }
.bt-slots__filter { display: flex; gap: 6px; flex-wrap: wrap; }
.bt-slots__filter-chip {
  padding: 5px 12px;
  background: var(--bt-bg-raised);
  border: 1px solid var(--bt-border);
  border-radius: 14px;
  font-size: 12px;
  color: var(--bt-text-muted);
  max-width: 100%;
}
.bt-slots__filter-chip:hover { background: var(--bt-bg-elev); color: #fff; }
.bt-slots__filter-chip.is-active {
  background: var(--bt-yellow);
  color: var(--bt-yellow-ink);
  border-color: var(--bt-yellow);
  font-weight: 700;
}
.bt-slots__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 600px) { .bt-slots__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 880px) { .bt-slots__grid { grid-template-columns: repeat(4, 1fr); } }
.bt-slots__tile {
  position: relative;
  display: block;
  background: var(--bt-bg-raised);
  border: 1px solid var(--bt-border);
  border-radius: var(--bt-radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  transition: transform 0.2s, border-color 0.2s;
  text-decoration: none;
  color: inherit;
  max-width: 100%;
}
.bt-slots__tile:hover { transform: translateY(-3px); border-color: var(--bt-yellow); }
.bt-slots__cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.bt-slots__tile:hover .bt-slots__cover { transform: scale(1.04); }
.bt-slots__hot {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  padding: 3px 8px;
  background: var(--bt-danger);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 3px;
}
.bt-slots__rtp {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  padding: 3px 7px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--bt-yellow);
  font-size: 11px;
  font-weight: 700;
  border-radius: 3px;
  backdrop-filter: blur(4px);
}
.bt-slots__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 12px 10px 8px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.85) 60%);
}
.bt-slots__name {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bt-slots__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #c8d2cc;
}
.bt-slots__vol { color: var(--bt-yellow); letter-spacing: 1px; }
.bt-slots__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: rgba(10, 20, 16, 0.92);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 12px;
  opacity: 0;
  transition: opacity 0.2s;
}
.bt-slots__tile:hover .bt-slots__overlay,
.bt-slots__tile.is-touched .bt-slots__overlay { opacity: 1; }
.bt-slots__overlay-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 12px;
  color: #d4ddd6;
}
.bt-slots__overlay-row span:last-child { color: var(--bt-yellow); font-weight: 700; }
.bt-slots__play {
  margin-top: 6px;
  padding: 8px 18px;
  background: var(--bt-yellow);
  color: var(--bt-yellow-ink);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 14px;
}
.bt-slots__cta-wrap { text-align: center; }
.bt-slots__cta-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 22px;
  padding: 11px 26px;
  background: transparent;
  border: 1px solid var(--bt-green-2);
  border-radius: 22px;
  color: var(--bt-green-3);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}
.bt-slots__cta-more:hover { background: var(--bt-green-2); color: #fff; }

/* AUTHOR */
.bt-author {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  background: var(--bt-bg-raised);
  border: 1px solid var(--bt-border);
  border-radius: var(--bt-radius-lg);
  margin: 36px 0;
}
@media (max-width: 639px) {
  .bt-author { grid-template-columns: 1fr; text-align: center; }
  .bt-author > img { margin: 0 auto; }
  .bt-author__links { justify-content: center; }
}
.bt-author > img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--bt-yellow);
}
.bt-author__name { font-size: 18px; font-weight: 800; margin-bottom: 2px; }
.bt-author__role { font-size: 13px; color: var(--bt-yellow); margin-bottom: 10px; }
.bt-author__bio { font-size: 14px; color: var(--bt-text-muted); line-height: 1.65; margin-bottom: 12px; }
.bt-author__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}
.bt-author__links a {
  color: var(--bt-text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.bt-author__links a:hover { color: var(--bt-yellow); }
.bt-author__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  background: rgba(20, 128, 94, 0.18);
  border: 1px solid var(--bt-green-2);
  color: var(--bt-green-3);
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

/* FAQ */
.bt-faq { margin: 40px 0; }
.bt-faq__item {
  background: var(--bt-bg-raised);
  border: 1px solid var(--bt-border);
  border-radius: var(--bt-radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.bt-faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 48px 16px 20px;
  font-size: 15px;
  font-weight: 700;
  position: relative;
  transition: background 0.15s;
}
.bt-faq__item summary::-webkit-details-marker { display: none; }
.bt-faq__item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bt-yellow);
  color: var(--bt-yellow-ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 24px;
  text-align: center;
  transition: transform 0.2s;
}
.bt-faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.bt-faq__item summary:hover { background: var(--bt-bg-elev); }
.bt-faq__answer { padding: 0 20px 16px; color: #d8e2dc; font-size: 14px; line-height: 1.65; }

/* RELATED */
.bt-related {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 18px;
  background: var(--bt-bg-raised);
  border: 1px solid var(--bt-border);
  border-radius: var(--bt-radius);
  margin: 28px 0;
  font-size: 12px;
}
.bt-related__label { color: var(--bt-text-muted); margin-right: 6px; }
.bt-related a {
  display: inline-block;
  padding: 4px 10px;
  background: var(--bt-bg-elev);
  border-radius: 12px;
  color: #fff;
  max-width: 100%;
}
.bt-related a:hover { background: var(--bt-yellow); color: var(--bt-yellow-ink); }

/* STICKY CTA */
.bt-sticky-cta {
  position: sticky;
  bottom: 0;
  z-index: 50;
  background: linear-gradient(180deg, #0e3b29 0%, #0a2419 100%);
  border-top: 1px solid var(--bt-yellow);
  padding: 10px 0;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.45);
}
.bt-sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.bt-sticky-cta__text { font-size: 13px; }
.bt-sticky-cta__text strong { color: var(--bt-yellow); }

/* FOOTER */
.bt-footer {
  background: #061008;
  border-top: 1px solid var(--bt-border);
  padding: 40px 0 20px;
  color: var(--bt-text-muted);
  font-size: 13px;
}
.bt-footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--bt-border);
}
@media (min-width: 600px) { .bt-footer__top { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .bt-footer__top { grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; } }
.bt-footer__brand img { max-height: 30px; width: auto; margin-bottom: 14px; }
.bt-footer__brand p { font-size: 13px; line-height: 1.55; margin-bottom: 14px; }
.bt-footer__trust { display: flex; flex-wrap: wrap; gap: 8px; }
.bt-footer__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: var(--bt-bg-raised);
  border: 1px solid var(--bt-border);
  border-radius: 4px;
  font-size: 11px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.bt-footer__trust-item--age { color: var(--bt-danger); border-color: var(--bt-danger); }
.bt-footer__col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
  margin-bottom: 12px;
}
.bt-footer__col ul li { margin-bottom: 7px; }
.bt-footer__col a { color: var(--bt-text-muted); font-size: 13px; }
.bt-footer__col a:hover { color: var(--bt-yellow); }
.bt-footer__mid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--bt-border);
}
.bt-footer__social { display: flex; gap: 8px; }
.bt-footer__social a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: var(--bt-bg-raised);
  border: 1px solid var(--bt-border);
  border-radius: 50%;
  color: var(--bt-text-muted);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.bt-footer__social a:hover {
  background: var(--bt-yellow);
  color: var(--bt-yellow-ink);
  border-color: var(--bt-yellow);
}
.bt-footer__social svg { width: 16px; height: 16px; }
.bt-footer__pay {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.bt-footer__pay img {
  max-height: 26px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.15s;
}
.bt-footer__pay img:hover { opacity: 1; }
.bt-footer__pay-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: var(--bt-bg-raised);
  border: 1px solid var(--bt-border);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.bt-footer__rg {
  padding: 16px 0;
  font-size: 12px;
  border-bottom: 1px solid var(--bt-border);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.bt-footer__rg-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--bt-danger);
  border-radius: 50%;
  color: var(--bt-danger);
  font-weight: 800;
  font-size: 12px;
  flex-shrink: 0;
}
.bt-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  font-size: 12px;
}
.bt-footer__bottom nav { display: flex; flex-wrap: wrap; gap: 14px; }
.bt-footer__bottom a:hover { color: var(--bt-yellow); }

/* MOBILE MENU */
.bt-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(6, 16, 8, 0.97);
  display: none;
  flex-direction: column;
  overflow-y: auto;
}
.bt-mobile-menu.is-open { display: flex; }
.bt-mobile-menu__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--bt-border);
}
.bt-mobile-menu__close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.bt-mobile-menu__close svg { width: 22px; height: 22px; }
.bt-mobile-menu__nav { padding: 14px 18px; flex: 1; }
.bt-mobile-menu__nav a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid var(--bt-border);
}
.bt-mobile-menu__nav a:hover { color: var(--bt-yellow); }
.bt-mobile-menu__cta {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--bt-border);
}
