/* RESET */
*, *::before, *::after { box-sizing: border-box; }
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%; }

/* TYPOGRAPHY */
body {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-weight: 800; line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 16px; }
h2 { font-size: clamp(24px, 3vw, 32px); margin: 48px 0 16px; }
h3 { font-size: 20px; margin: 24px 0 12px; }
p { margin: 0 0 16px; color: var(--text); }
strong { color: var(--text); font-weight: 700; }

/* ROOT */
:root {
  --bg: #0a0a0a;
  --bg-raised: #141414;
  --bg-elevated: #1c1c1c;
  --text: #ffffff;
  --text-muted: #a0a0a0;
  --accent: #ffcc00;
  --accent-hover: #ffd633;
  --accent-2: #f5b820;
  --danger: #e02020;
  --success: #00d68f;
  --border: #2a2a2a;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-yellow: 0 8px 32px rgba(255, 204, 0, 0.25);
}

.bw-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
.bw-header {
  background: #000;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.bw-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 64px;
  padding: 0 20px;
  max-width: 1400px;
  margin: 0 auto;
}
.bw-header__logo img {
  max-height: 28px;
  width: auto;
  object-fit: contain;
}
.bw-header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}
.bw-header__nav a {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--text);
  padding: 4px 0;
  transition: color 0.15s;
  position: relative;
}
.bw-header__nav a:hover { color: var(--accent); }
.bw-header__nav a.is-active { color: var(--accent); }
.bw-header__nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -22px;
  height: 2px;
  background: var(--accent);
}
.bw-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.bw-header__lang {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  padding: 6px 10px;
}
.bw-header__lang svg { width: 18px; height: 18px; }
.bw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 18px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: background 0.15s, transform 0.1s;
  border: 1px solid transparent;
}
.bw-btn--primary { background: var(--accent); color: #0a0a0a; }
.bw-btn--primary:hover { background: var(--accent-hover); }
.bw-btn--ghost { background: transparent; color: var(--text); border-color: #3a3a3a; }
.bw-btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.bw-btn--lg { height: 48px; padding: 0 28px; font-size: 15px; }
.bw-btn--block { width: 100%; }
.bw-btn:active { transform: scale(0.98); }
.bw-header__burger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: transparent;
  color: var(--text);
}
.bw-header__burger svg { width: 24px; height: 24px; margin: auto; }

/* SUB-NAV (sports menu) */
.bw-subnav {
  background: #111;
  border-bottom: 1px solid var(--border);
}
.bw-subnav__inner {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 52px;
  padding: 0 20px;
  max-width: 1400px;
  margin: 0 auto;
  overflow-x: auto;
  scrollbar-width: none;
}
.bw-subnav__inner::-webkit-scrollbar { display: none; }
.bw-subnav__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.bw-subnav__item:hover { background: var(--bg-elevated); color: var(--text); }
.bw-subnav__item svg { width: 18px; height: 18px; }
.bw-subnav__item--accent { color: var(--accent); }
.bw-subnav__badge {
  display: inline-block;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 11px;
  background: var(--accent);
  color: #0a0a0a;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  line-height: 22px;
}

/* HERO */
.bw-hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.45) 60%, rgba(10,10,10,0.85) 100%),
    radial-gradient(circle at 70% 30%, rgba(255,204,0,0.18) 0%, transparent 55%),
    linear-gradient(180deg, #0a0a0a, #1a1a1a);
  padding: 80px 0 100px;
  overflow: hidden;
}
.bw-hero::before {
  content: "";
  position: absolute;
  right: -10%;
  top: -20%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(255,204,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.bw-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.bw-hero__eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(255, 204, 0, 0.15);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
}
.bw-hero__lead {
  color: var(--text-muted);
  font-size: 17px;
  margin-bottom: 28px;
  max-width: 540px;
}
.bw-hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.bw-hero__trust {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  color: var(--text-muted);
}
.bw-hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.bw-hero__trust-item svg { width: 16px; height: 16px; color: var(--accent); }
.bw-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bw-hero__giga {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,204,0,0.25) 0%, transparent 60%),
    linear-gradient(135deg, #1a1a1a, #2a2a2a);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow-yellow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.bw-hero__giga-label {
  font-size: 14px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.bw-hero__giga-num {
  font-size: clamp(70px, 11vw, 140px);
  font-weight: 900;
  color: var(--accent);
  line-height: 0.9;
  text-shadow: 0 4px 24px rgba(255, 204, 0, 0.4);
  letter-spacing: -2px;
}
.bw-hero__giga-currency { font-size: 0.5em; vertical-align: top; }
.bw-hero__giga-sub {
  margin-top: 12px;
  font-size: 18px;
  color: var(--text);
  font-weight: 700;
}
.bw-hero__giga-foot {
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-muted);
}

/* BREADCRUMBS */
.bw-breadcrumbs {
  padding: 20px 0;
  font-size: 13px;
  color: var(--text-muted);
}
.bw-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.bw-breadcrumbs li:not(:last-child)::after {
  content: "›";
  margin-left: 8px;
  color: #555;
}
.bw-breadcrumbs a { color: var(--text-muted); }
.bw-breadcrumbs a:hover { color: var(--accent); }
.bw-breadcrumbs li[aria-current="page"] { color: var(--text); }

/* MAIN */
.bw-main { padding-bottom: 80px; }
.bw-section { padding: 24px 0; }
.bw-lead {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 820px;
  margin-bottom: 24px;
}

/* CONTENT IMAGES */
article img,
section.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(--radius);
}
.hero img,
.banner img,
img.banner {
  max-width: 100%;
  max-height: 560px;
  object-fit: cover;
  width: 100%;
  height: auto;
  display: block;
}
header img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
}
.author img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
}
footer img[src*="img_listing_casinos"] {
  max-height: 28px;
  width: auto;
  object-fit: contain;
}

/* CONTENT */
.bw-content { max-width: 820px; }
.bw-content p { color: #d4d4d4; font-size: 16px; line-height: 1.75; }
.bw-content ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
}
.bw-content ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: #d4d4d4;
}
.bw-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: inset 0 0 0 3px #0a0a0a, 0 0 0 1px var(--accent);
}
.bw-content blockquote {
  margin: 24px 0;
  padding: 20px 24px;
  border-left: 4px solid var(--accent);
  background: var(--bg-raised);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: #e0e0e0;
  font-style: italic;
  font-size: 17px;
}
.bw-content blockquote cite {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  font-style: normal;
  color: var(--text-muted);
}

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

/* OFFERS LISTING */
.bw-offers {
  margin: 40px 0;
  padding: 32px 0;
}
.bw-offers__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}
.bw-offers__title {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 30px);
}
.bw-offers__title-accent { color: var(--accent); }
.bw-offers__sub {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 24px;
}
.bw-offers__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.bw-offers__card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}
.bw-offers__card:hover {
  transform: translateY(-4px);
  border-color: #3a3a3a;
  box-shadow: var(--shadow);
}
.bw-offers__card--top {
  background: linear-gradient(180deg, #1a1a1a 0%, #141414 100%);
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-yellow);
  transform: translateY(-8px);
}
.bw-offers__card--top:hover { transform: translateY(-12px); }
.bw-offers__ribbon {
  position: absolute;
  top: 14px;
  right: -34px;
  width: 140px;
  padding: 5px 0;
  background: var(--accent);
  color: #0a0a0a;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-align: center;
  transform: rotate(35deg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.bw-offers__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  margin-bottom: 12px;
  background: #fff;
  border-radius: 6px;
  padding: 10px 14px;
}
.bw-offers__logo img { max-height: 32px; width: auto; }
.bw-offers__brand {
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}
.bw-offers__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}
.bw-offers__stars {
  color: var(--accent);
  letter-spacing: 1px;
  font-size: 16px;
}
.bw-offers__rating-num {
  font-weight: 700;
  color: var(--text);
  font-size: 14px;
}
.bw-offers__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-bottom: 16px;
}
.bw-offers__tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.bw-offers__tag--hot {
  background: rgba(255, 204, 0, 0.15);
  border-color: var(--accent);
  color: var(--accent);
}
.bw-offers__bonus {
  text-align: center;
  padding: 14px 12px;
  margin-bottom: 16px;
  background: #0a0a0a;
  border: 1px dashed #333;
  border-radius: var(--radius);
}
.bw-offers__bonus-label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 4px;
}
.bw-offers__bonus-amount {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.2;
}
.bw-offers__card--top .bw-offers__bonus-amount { font-size: 26px; }
.bw-offers__usp {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  flex: 1;
}
.bw-offers__usp li {
  position: relative;
  padding: 6px 0 6px 24px;
  font-size: 13px;
  color: #d4d4d4;
  border-bottom: 1px solid #1f1f1f;
}
.bw-offers__usp li:last-child { border-bottom: none; }
.bw-offers__usp li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  color: var(--accent);
  font-weight: 800;
  font-size: 13px;
}
.bw-offers__playing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--success);
  font-weight: 600;
}
.bw-offers__playing svg { width: 16px; height: 16px; }
.bw-offers__timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--text-muted);
}
.bw-offers__timer-clock {
  display: inline-flex;
  gap: 4px;
  font-family: "Courier New", monospace;
  font-weight: 700;
  color: var(--text);
  font-size: 15px;
}
.bw-offers__timer-clock span {
  display: inline-block;
  min-width: 26px;
  padding: 3px 4px;
  background: #0a0a0a;
  border-radius: 4px;
  text-align: center;
}
.bw-offers__cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bw-offers__cta {
  display: block;
  text-align: center;
  height: 46px;
  line-height: 46px;
  background: var(--accent);
  color: #0a0a0a;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.6px;
  border-radius: 6px;
  transition: background 0.15s;
}
.bw-offers__cta:hover { background: var(--accent-hover); }
.bw-offers__review {
  display: block;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: underline;
  text-decoration-color: #3a3a3a;
  text-underline-offset: 3px;
}
.bw-offers__review:hover { color: var(--accent); text-decoration-color: var(--accent); }
.bw-offers__urgency {
  margin-top: 12px;
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.bw-offers__aggregate {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
}
.bw-offers__aggregate strong { color: var(--accent); }

/* SLOTS LISTING */
.bw-slots {
  margin: 48px 0;
}
.bw-slots__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}
.bw-slots__title { margin: 0; }
.bw-slots__title-accent { color: var(--accent); }
.bw-slots__filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.bw-slots__filter-chip {
  padding: 6px 14px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 16px;
  font-size: 13px;
  color: var(--text-muted);
  transition: background 0.15s, color 0.15s;
}
.bw-slots__filter-chip:hover { background: var(--bg-elevated); color: var(--text); }
.bw-slots__filter-chip.is-active {
  background: var(--accent);
  color: #0a0a0a;
  border-color: var(--accent);
  font-weight: 600;
}
.bw-slots__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.bw-slots__tile {
  position: relative;
  display: block;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  color: inherit;
  text-decoration: none;
}
.bw-slots__tile:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 10px 24px rgba(0,0,0,0.5);
}
.bw-slots__cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.bw-slots__tile:hover .bw-slots__cover { transform: scale(1.05); }
.bw-slots__hot {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  padding: 3px 8px;
  background: var(--danger);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 3px;
}
.bw-slots__rtp-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  padding: 3px 8px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  border-radius: 3px;
  backdrop-filter: blur(4px);
}
.bw-slots__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 14px 12px 10px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.85) 55%);
}
.bw-slots__name {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bw-slots__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #c8c8c8;
}
.bw-slots__vol { color: var(--accent); letter-spacing: 1px; }
.bw-slots__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.bw-slots__tile:hover .bw-slots__overlay,
.bw-slots__tile.is-touched .bw-slots__overlay { opacity: 1; }
.bw-slots__overlay-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 12px;
  color: #d4d4d4;
}
.bw-slots__overlay-row span:last-child { color: var(--accent); font-weight: 700; }
.bw-slots__play-btn {
  margin-top: 8px;
  padding: 10px 20px;
  background: var(--accent);
  color: #0a0a0a;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
}
.bw-slots__play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 52px;
  height: 52px;
  margin: -26px 0 0 -26px;
  border-radius: 50%;
  background: rgba(255, 204, 0, 0.92);
  color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
}
.bw-slots__tile:hover .bw-slots__play-icon {
  opacity: 0;
}
.bw-slots__cta-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 24px auto 0;
  padding: 12px 28px;
  background: transparent;
  border: 1px solid var(--accent);
  border-radius: 4px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}
.bw-slots__cta-wrap { text-align: center; }
.bw-slots__cta-more:hover { background: var(--accent); color: #0a0a0a; }

/* AUTHOR */
.bw-author {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin: 40px 0;
}
.bw-author img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}
.bw-author__name {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 2px;
}
.bw-author__role {
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 10px;
}
.bw-author__bio {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}
.bw-author__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  font-size: 13px;
}
.bw-author__links a {
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s;
}
.bw-author__links a:hover { color: var(--accent); }
.bw-author__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(0, 214, 143, 0.12);
  border: 1px solid var(--success);
  color: var(--success);
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

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

/* RELATED LINKS */
.bw-related {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 20px;
  background: var(--bg-raised);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin: 32px 0;
  font-size: 13px;
}
.bw-related__label {
  color: var(--text-muted);
  margin-right: 8px;
}
.bw-related a {
  display: inline-block;
  padding: 4px 10px;
  background: var(--bg-elevated);
  border-radius: 12px;
  color: var(--text);
  font-size: 12px;
  transition: background 0.15s, color 0.15s;
}
.bw-related a:hover { background: var(--accent); color: #0a0a0a; }

/* STICKY CTA */
.bw-sticky-cta {
  position: sticky;
  bottom: 0;
  z-index: 50;
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  border-top: 2px solid var(--accent);
  padding: 12px 0;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.5);
}
.bw-sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.bw-sticky-cta__text {
  font-size: 14px;
  color: var(--text);
}
.bw-sticky-cta__text strong { color: var(--accent); }

/* FOOTER */
.bw-footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
  color: var(--text-muted);
  font-size: 14px;
}
.bw-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.bw-footer__brand img { max-height: 28px; width: auto; margin-bottom: 16px; }
.bw-footer__brand p { font-size: 13px; line-height: 1.6; color: var(--text-muted); margin-bottom: 16px; }
.bw-footer__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.bw-footer__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 11px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.bw-footer__trust-item--age { color: var(--danger); border-color: var(--danger); }
.bw-footer__col h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text);
  margin-bottom: 14px;
}
.bw-footer__col ul li { margin-bottom: 8px; }
.bw-footer__col a {
  color: var(--text-muted);
  font-size: 13px;
  transition: color 0.15s;
}
.bw-footer__col a:hover { color: var(--accent); }
.bw-footer__mid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.bw-footer__social {
  display: flex;
  gap: 10px;
}
.bw-footer__social a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.bw-footer__social a:hover {
  background: var(--accent);
  color: #0a0a0a;
  border-color: var(--accent);
}
.bw-footer__social svg { width: 16px; height: 16px; }
.bw-footer__pay {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.bw-footer__pay img {
  max-height: 24px;
  width: auto;
  opacity: 0.75;
  transition: opacity 0.15s;
}
.bw-footer__pay img:hover { opacity: 1; }
.bw-footer__pay-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.bw-footer__rg {
  padding: 20px 0;
  font-size: 12px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.bw-footer__rg-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--danger);
  border-radius: 50%;
  color: var(--danger);
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}
.bw-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  font-size: 12px;
}
.bw-footer__bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* MOBILE OVERLAY */
.bw-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.96);
  display: none;
  flex-direction: column;
  overflow-y: auto;
}
.bw-mobile-menu.is-open { display: flex; }
.bw-mobile-menu__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.bw-mobile-menu__close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
}
.bw-mobile-menu__close svg { width: 24px; height: 24px; }
.bw-mobile-menu__nav {
  padding: 16px 20px;
  flex: 1;
}
.bw-mobile-menu__nav a {
  display: block;
  padding: 14px 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  text-transform: uppercase;
}
.bw-mobile-menu__nav a:hover { color: var(--accent); }
.bw-mobile-menu__cta {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--border);
}

/* MEDIA */
@media (max-width: 1100px) {
  .bw-header__nav { gap: 18px; }
  .bw-header__nav a { font-size: 13px; }
}
@media (max-width: 900px) {
  .bw-header__nav { display: none; }
  .bw-header__burger { display: inline-flex; }
  .bw-subnav { display: none; }
  .bw-hero__inner { grid-template-columns: 1fr; }
  .bw-hero__visual { order: -1; }
  .bw-hero__giga { max-width: 320px; }
  .bw-offers__grid { grid-template-columns: 1fr; }
  .bw-offers__card--top { transform: none; order: -1; }
  .bw-offers__card--top:hover { transform: translateY(-4px); }
  .bw-slots__grid { grid-template-columns: repeat(3, 1fr); }
  .bw-footer__top { grid-template-columns: 1fr 1fr; }
  .bw-footer__brand { grid-column: 1 / -1; }
  .bw-author { grid-template-columns: 1fr; text-align: center; }
  .bw-author img { margin: 0 auto; }
  .bw-author__links { justify-content: center; }
}
@media (max-width: 768px) {
  article img, section.content img, main p img { max-height: 320px; }
  .hero img, .banner img { max-height: 360px; }
  h2 { margin: 32px 0 12px; }
  .bw-hero { padding: 48px 0 64px; }
  .bw-offers__card--top { border-width: 1px; }
  .bw-offers__ribbon { width: 120px; right: -36px; font-size: 10px; }
}
@media (max-width: 480px) {
  .bw-slots__grid { grid-template-columns: repeat(2, 1fr); }
  .bw-footer { padding: 32px 0 20px; }
  .bw-footer__top { grid-template-columns: 1fr 1fr; gap: 20px 16px; padding-bottom: 24px; }
  .bw-footer__brand { grid-column: 1 / -1; margin-bottom: 4px; }
  .bw-footer__col h4 { font-size: 13px; margin-bottom: 10px; }
  .bw-footer__col ul li { margin-bottom: 6px; }
  .bw-footer__col a { font-size: 12px; }
  .bw-footer__mid { flex-direction: column; align-items: flex-start; gap: 16px; padding: 20px 0; }
  .bw-footer__pay { gap: 6px; }
  .bw-footer__pay img { max-height: 20px; }
  .bw-footer__pay-chip { font-size: 10px; padding: 4px 8px; }
  .bw-footer__bottom { font-size: 11px; }
  .bw-hero__giga-num { font-size: 90px; }
}
