:root {
  --b8a-bg-top: #1a0a2e;
  --b8a-bg-bottom: #12071f;
  --b8a-surface: #1f1035;
  --b8a-surface-soft: rgba(31, 16, 53, 0.82);
  --b8a-line: rgba(255, 215, 0, 0.15);
  --b8a-line-strong: rgba(255, 215, 0, 0.3);
  --b8a-gold: #fbbf24;
  --b8a-gold-deep: #f59e0b;
  --b8a-purple: #7c3aed;
  --b8a-text: #faf5ff;
  --b8a-muted: #dbc8f3;
  --b8a-shadow: 0 24px 48px rgba(2, 0, 8, 0.42);
  --b8a-radius: 28px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--b8a-text);
  font-family: "Outfit", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(124, 58, 237, 0.18), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(251, 191, 36, 0.12), transparent 18%),
    linear-gradient(180deg, var(--b8a-bg-top), var(--b8a-bg-bottom));
  min-height: 100vh;
}

body.b8a-no-scroll {
  overflow: hidden;
}

a {
  color: inherit;
}

img,
svg {
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

.b8a-page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.b8a-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.b8a-site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.b8a-site-header.b8a-header-solid {
  background: rgba(33, 14, 58, 0.94);
  border-color: rgba(251, 191, 36, 0.16);
  box-shadow: 0 18px 44px rgba(7, 1, 17, 0.36);
  backdrop-filter: blur(10px);
}

.b8a-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
}

.b8a-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
  text-decoration: none;
}

.b8a-logo-icon {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
}

.b8a-logo-text {
  color: var(--b8a-text);
  font-family: "Playfair Display", serif;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: uppercase;
}

.b8a-nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgba(251, 191, 36, 0.35);
  border-radius: 50%;
  background: rgba(31, 16, 53, 0.86);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.22rem;
}

.b8a-nav-toggle span {
  width: 1.15rem;
  height: 2px;
  border-radius: 999px;
  background: #fff8e6;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.b8a-site-header.b8a-nav-open .b8a-nav-toggle span:nth-child(1) {
  transform: translateY(0.38rem) rotate(45deg);
}

.b8a-site-header.b8a-nav-open .b8a-nav-toggle span:nth-child(2) {
  opacity: 0;
}

.b8a-site-header.b8a-nav-open .b8a-nav-toggle span:nth-child(3) {
  transform: translateY(-0.38rem) rotate(-45deg);
}

.b8a-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.b8a-nav a {
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  color: #f6e8ff;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  padding-bottom: 0.15rem;
}

.b8a-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.05rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--b8a-gold-deep), var(--b8a-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.b8a-nav a:hover::after,
.b8a-nav a:focus-visible::after {
  transform: scaleX(1);
}

.b8a-hero,
.b8a-page-hero {
  position: relative;
  overflow: hidden;
  padding: 7.4rem 0 4rem;
}

.b8a-hero::before,
.b8a-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(124, 58, 237, 0.28), transparent 38%),
    radial-gradient(circle at 18% 28%, rgba(251, 191, 36, 0.12), transparent 18%),
    radial-gradient(circle at 84% 18%, rgba(124, 58, 237, 0.24), transparent 22%);
  pointer-events: none;
}

.b8a-hero-shell,
.b8a-page-hero-shell {
  position: relative;
  z-index: 1;
}

.b8a-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.95rem;
  border: 1px solid rgba(251, 191, 36, 0.32);
  border-radius: 999px;
  background: rgba(20, 8, 35, 0.78);
  color: #fce7a8;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.b8a-hero h1,
.b8a-page-hero h1 {
  margin: 1rem 0 1rem;
  max-width: 14ch;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.15rem, 5vw, 4.4rem);
  line-height: 1.03;
  letter-spacing: 0.08em;
  color: transparent;
  background: linear-gradient(120deg, #fef3c7 10%, #fbbf24 42%, #fff5d8 54%, #f59e0b 72%, #fef3c7 92%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  animation: b8aShimmer 8s linear infinite;
}

.b8a-hero-lead,
.b8a-page-hero p {
  max-width: 58rem;
  margin: 0;
  color: var(--b8a-muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.b8a-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.b8a-button,
.b8a-link-button,
.b8a-form button,
.b8a-age-actions button,
.b8a-cookie-banner button,
.b8a-back-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  text-decoration: none;
  border: 1px solid rgba(251, 191, 36, 0.55);
  border-radius: 999px;
  padding: 0.92rem 1.38rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  color: #2b1303;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  box-shadow: 0 18px 34px rgba(245, 158, 11, 0.3);
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}

.b8a-button:hover,
.b8a-link-button:hover,
.b8a-form button:hover,
.b8a-age-actions button:hover,
.b8a-cookie-banner button:hover,
.b8a-back-top:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 22px 44px rgba(251, 191, 36, 0.4);
}

.b8a-button.b8a-button-ghost,
.b8a-cookie-banner button.b8a-cookie-secondary,
.b8a-age-actions button.b8a-age-leave {
  background: rgba(251, 191, 36, 0.08);
  color: var(--b8a-text);
  box-shadow: none;
}

.b8a-trustline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.65rem;
  color: #fae7a0;
}

.b8a-trustline span {
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(251, 191, 36, 0.22);
  background: rgba(25, 10, 45, 0.72);
}

.b8a-hero-carousel {
  position: relative;
  margin-bottom: 2.1rem;
  padding: 1rem;
  border: 1px solid rgba(251, 191, 36, 0.18);
  border-radius: 30px;
  background:
    radial-gradient(circle at top, rgba(124, 58, 237, 0.28), transparent 44%),
    rgba(23, 8, 40, 0.84);
  box-shadow: var(--b8a-shadow);
}

.b8a-carousel-track {
  position: relative;
  min-height: 15rem;
}

.b8a-carousel-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 1.25rem;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.b8a-carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.b8a-carousel-copy h2 {
  margin: 0 0 0.7rem;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: #fde68a;
}

.b8a-carousel-copy p {
  margin: 0;
  color: var(--b8a-muted);
  line-height: 1.7;
}

.b8a-carousel-chip-row,
.b8a-pill-row,
.b8a-reg-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.b8a-carousel-chip,
.b8a-pill,
.b8a-reg-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.24);
  border: 1px solid rgba(251, 191, 36, 0.18);
  color: #f7ecff;
  font-size: 0.82rem;
}

.b8a-carousel-panel {
  padding: 1.1rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.24), rgba(30, 12, 49, 0.94));
  border: 1px solid rgba(251, 191, 36, 0.18);
}

.b8a-carousel-panel strong {
  display: block;
  margin-bottom: 0.45rem;
  color: #fde68a;
  font-size: 1.5rem;
}

.b8a-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.2rem;
}

.b8a-carousel-arrow {
  width: 2.9rem;
  height: 2.9rem;
  padding: 0;
  border: 1px solid rgba(251, 191, 36, 0.26);
  border-radius: 50%;
  background: rgba(31, 16, 53, 0.92);
  color: var(--b8a-text);
  cursor: pointer;
}

.b8a-carousel-dots {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.b8a-carousel-dot {
  width: 0.82rem;
  height: 0.82rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(250, 245, 255, 0.28);
  cursor: pointer;
}

.b8a-carousel-dot.is-active {
  background: linear-gradient(135deg, var(--b8a-gold-deep), var(--b8a-gold));
  box-shadow: 0 0 18px rgba(251, 191, 36, 0.46);
}

.b8a-disclaimer-strip {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 1.55rem;
  padding: 0.9rem 1.1rem;
  border-radius: 20px;
  background: rgba(49, 20, 78, 0.72);
  border: 1px solid rgba(251, 191, 36, 0.16);
  color: #f1d8ff;
  text-align: center;
}

.b8a-section {
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  border-radius: var(--b8a-radius);
  background: rgba(31, 16, 53, 0.86);
  border: 1px solid rgba(251, 191, 36, 0.14);
  box-shadow: var(--b8a-shadow);
}

.b8a-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.b8a-section h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.18rem, 3vw, 2.2rem);
  letter-spacing: 0.05em;
  color: #fcd978;
}

.b8a-section-intro {
  margin: 0.5rem 0 0;
  color: var(--b8a-muted);
  line-height: 1.72;
}

.b8a-card-stack,
.b8a-spotlight-grid,
.b8a-methodology-grid,
.b8a-contact-grid,
.b8a-team-grid,
.b8a-info-grid {
  display: grid;
  gap: 1rem;
}

.b8a-card-stack {
  grid-template-columns: 1fr;
}

.b8a-card {
  padding: 1.1rem;
  border-radius: 24px;
  border: 1px solid rgba(251, 191, 36, 0.16);
  border-left: 3px solid var(--b8a-gold);
  background:
    linear-gradient(180deg, rgba(124, 58, 237, 0.08), transparent 28%),
    #1f1035;
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.b8a-card:hover,
.b8a-card[data-hover="active"] {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(251, 191, 36, 0.28);
  box-shadow: 0 28px 48px rgba(7, 1, 17, 0.48), 0 0 26px rgba(124, 58, 237, 0.28);
}

.b8a-card-top {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.b8a-logo-wrap {
  padding: 6px;
  width: min(140px, 100%);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
  flex-shrink: 0;
}

.b8a-logo-wrap img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 12px;
}

.b8a-brand-meta {
  flex: 1 1 auto;
  min-width: 0;
}

.b8a-brand-meta h3,
.b8a-spotlight-card h3,
.b8a-team-card h3,
.b8a-info-card h3,
.b8a-contact-panel h3,
.b8a-legal-panel h3 {
  margin: 0.5rem 0 0.45rem;
  font-size: 1.35rem;
  color: #fff4cc;
}

.b8a-brand-meta h3 a,
.b8a-spotlight-card h3 a {
  text-decoration: none;
}

.b8a-brand-meta p,
.b8a-card-copy,
.b8a-spotlight-card p,
.b8a-rg-copy,
.b8a-legal-panel p,
.b8a-contact-panel p,
.b8a-team-card p,
.b8a-info-card p {
  margin: 0;
  color: var(--b8a-muted);
  line-height: 1.72;
}

.b8a-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.26);
  border: 1px solid rgba(251, 191, 36, 0.18);
  color: #fee8a1;
  font-size: 0.78rem;
  font-weight: 700;
}

.b8a-score {
  min-width: 105px;
  text-align: right;
}

.b8a-score strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.85rem;
  color: #fde68a;
}

.b8a-score span,
.b8a-card-disclaimer,
.b8a-mini-note {
  color: #e7d8f7;
  font-size: 0.88rem;
  line-height: 1.6;
}

.b8a-bonus {
  margin: 1rem 0 0.85rem;
  padding: 0.78rem 0.9rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.5), rgba(73, 21, 138, 0.78));
  color: #fff6d6;
  font-weight: 700;
}

.b8a-card-copy {
  margin-top: 0.9rem;
}

.b8a-card-actions,
.b8a-footer-cta,
.b8a-age-actions,
.b8a-cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.b8a-card-actions {
  margin-top: 1rem;
}

.b8a-card-disclaimer {
  margin: 0.9rem 0 0;
}

.b8a-content-stack {
  display: grid;
  gap: 1.25rem;
}

.b8a-spotlight-grid,
.b8a-methodology-grid,
.b8a-team-grid,
.b8a-contact-grid,
.b8a-info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.b8a-spotlight-card,
.b8a-method-card,
.b8a-team-card,
.b8a-info-card,
.b8a-contact-panel,
.b8a-legal-panel,
.b8a-payment-guide {
  padding: 1.15rem;
  border-radius: 24px;
  border: 1px solid rgba(251, 191, 36, 0.14);
  background: rgba(28, 11, 48, 0.92);
}

.b8a-spotlight-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(251, 191, 36, 0.12), transparent 20%),
    linear-gradient(180deg, rgba(124, 58, 237, 0.22), rgba(30, 12, 49, 0.94));
}

.b8a-payment-guide {
  background:
    radial-gradient(circle at top left, rgba(124, 58, 237, 0.16), transparent 24%),
    rgba(28, 11, 48, 0.92);
}

.b8a-payment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 1rem 0;
}

.b8a-payment-card {
  min-width: 0;
  padding: 0.9rem;
  border-radius: 18px;
  background: rgba(124, 58, 237, 0.14);
  border: 1px solid rgba(251, 191, 36, 0.14);
}

.b8a-payment-card strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #fde68a;
}

.b8a-rg-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 1rem;
}

.b8a-rg-copy h3,
.b8a-footer-title {
  margin: 0 0 0.75rem;
  font-family: "Playfair Display", serif;
  color: #fde68a;
  font-size: clamp(1.1rem, 2.8vw, 1.9rem);
}

.b8a-rg-checklist {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.b8a-rg-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  min-width: 0;
  padding: 0.85rem 0.9rem;
  border-radius: 18px;
  background: rgba(124, 58, 237, 0.16);
  border: 1px solid rgba(251, 191, 36, 0.14);
}

.b8a-rg-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(251, 191, 36, 0.18);
  color: #fff4cc;
  font-weight: 700;
}

.b8a-rg-sidebox {
  padding: 1rem;
  border-radius: 22px;
  background: rgba(22, 8, 36, 0.9);
  border: 1px solid rgba(251, 191, 36, 0.16);
}

.b8a-rg-sidebox p,
.b8a-rg-sidebox a {
  color: var(--b8a-muted);
}

.b8a-rg-sidebox a {
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.b8a-methodology-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.b8a-method-card h3 {
  margin: 0 0 0.6rem;
  font-family: "Playfair Display", serif;
  color: #ffe59c;
}

.b8a-method-card p {
  margin: 0;
  color: var(--b8a-muted);
  line-height: 1.72;
}

.b8a-page-hero {
  padding-bottom: 2.9rem;
}

.b8a-page-hero h1 {
  max-width: 16ch;
}

.b8a-page-hero-panel {
  margin-top: 1.2rem;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(31, 16, 53, 0.76);
  border: 1px solid rgba(251, 191, 36, 0.14);
  color: var(--b8a-muted);
}

.b8a-team-grid,
.b8a-contact-grid,
.b8a-info-grid {
  margin-top: 1rem;
}

.b8a-form {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.b8a-form label {
  display: grid;
  gap: 0.45rem;
  color: #f7ecff;
}

.b8a-form input,
.b8a-form textarea,
.b8a-form select {
  width: 100%;
  padding: 0.86rem 0.9rem;
  border: 1px solid rgba(251, 191, 36, 0.14);
  border-radius: 16px;
  background: rgba(22, 8, 36, 0.9);
  color: var(--b8a-text);
}

.b8a-form textarea {
  min-height: 9rem;
  resize: vertical;
}

.b8a-legal-stack {
  display: grid;
  gap: 1rem;
}

.b8a-legal-panel h2 {
  margin: 0 0 0.7rem;
  font-size: 1.45rem;
}

.b8a-legal-panel p + p {
  margin-top: 0.8rem;
}

.b8a-footer {
  padding: 0 0 2rem;
}

.b8a-footer-box {
  padding: 1.4rem;
  border-radius: 28px;
  border: 1px solid rgba(251, 191, 36, 0.18);
  background:
    radial-gradient(circle at top right, rgba(251, 191, 36, 0.12), transparent 18%),
    rgba(24, 8, 40, 0.94);
  box-shadow: var(--b8a-shadow);
}

.b8a-footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.b8a-footer-list {
  display: grid;
  gap: 0.5rem;
}

.b8a-footer-list a {
  color: var(--b8a-muted);
  text-decoration: none;
}

.b8a-footer-list a:hover,
.b8a-footer-list a:focus-visible {
  color: #fff1b8;
}

.b8a-footer-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(251, 191, 36, 0.14);
  color: var(--b8a-muted);
  text-align: center;
}

.b8a-legal-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  margin-top: 0.85rem;
  color: var(--b8a-muted);
}

.b8a-age-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  place-items: center;
  align-content: center;
  background: rgba(0, 0, 0, 0.85);
}

body.b8a-no-scroll .b8a-age-overlay[data-b8a-age-state="pending"] {
  display: grid;
}

.b8a-age-overlay[data-b8a-age-state="confirmed"],
.b8a-age-overlay[data-b8a-age-state="hidden"] {
  display: none;
}

.b8a-age-box {
  width: min(480px, calc(100% - 24px));
  padding: 1.6rem 1.35rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(39, 12, 67, 0.96), rgba(18, 7, 31, 0.98));
  border: 1px solid rgba(251, 191, 36, 0.18);
  box-shadow: 0 28px 52px rgba(0, 0, 0, 0.42);
  text-align: center;
}

.b8a-age-box h2 {
  margin: 0 0 0.8rem;
  font-family: "Playfair Display", serif;
  color: #fde68a;
  letter-spacing: 0.05em;
}

.b8a-age-box p {
  margin: 0;
  color: var(--b8a-muted);
  line-height: 1.7;
}

.b8a-age-actions {
  justify-content: center;
  margin-top: 1rem;
}

.b8a-cookie-banner {
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: min(760px, calc(100% - 24px));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(31, 16, 53, 0.96);
  border: 1px solid rgba(251, 191, 36, 0.18);
  box-shadow: 0 16px 36px rgba(4, 0, 12, 0.38);
}

.b8a-cookie-banner[data-b8a-cookie-state="hidden"] {
  display: none;
}

.b8a-cookie-banner p,
.b8a-cookie-banner a {
  margin: 0;
  color: var(--b8a-muted);
}

.b8a-cookie-banner a {
  text-decoration: underline;
  text-underline-offset: 0.16rem;
}

.b8a-back-top {
  position: fixed;
  right: 1rem;
  bottom: 5.2rem;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.b8a-back-top svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.b8a-back-progress-track,
.b8a-back-progress {
  fill: none;
  stroke-width: 4;
}

.b8a-back-progress-track {
  stroke: rgba(36, 15, 56, 0.28);
}

.b8a-back-progress {
  stroke: #2b1303;
  stroke-linecap: round;
}

.b8a-back-top span {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
}

.b8a-back-top.b8a-back-top-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.b8a-methodology-table,
table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

.b8a-methodology-table th,
.b8a-methodology-table td,
table th,
table td {
  word-break: break-word;
  overflow-wrap: anywhere;
}

@keyframes b8aShimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

@media (max-width: 1080px) {
  .b8a-carousel-slide,
  .b8a-rg-shell,
  .b8a-spotlight-grid,
  .b8a-methodology-grid,
  .b8a-team-grid,
  .b8a-contact-grid,
  .b8a-info-grid,
  .b8a-payment-grid,
  .b8a-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .b8a-carousel-slide {
    position: relative;
    inset: auto;
  }

  .b8a-carousel-track {
    min-height: auto;
  }

  .b8a-carousel-slide:not(.is-active) {
    display: none;
  }
}

@media (max-width: 900px) {
  .b8a-nav-toggle {
    display: inline-flex;
  }

  .b8a-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    padding: 14px;
    min-width: min(320px, 100%);
    border-radius: 22px;
    background: rgba(31, 16, 53, 0.98);
    border: 1px solid rgba(251, 191, 36, 0.18);
    box-shadow: 0 18px 34px rgba(2, 0, 8, 0.4);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .b8a-site-header.b8a-nav-open .b8a-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .b8a-nav a {
    display: block;
    padding: 0.35rem 0;
  }

  .b8a-hero,
  .b8a-page-hero {
    padding-top: 6.6rem;
  }

  .b8a-card-top,
  .b8a-rg-shell,
  .b8a-carousel-slide,
  .b8a-spotlight-grid,
  .b8a-methodology-grid,
  .b8a-team-grid,
  .b8a-contact-grid,
  .b8a-info-grid,
  .b8a-payment-grid,
  .b8a-footer-grid {
    grid-template-columns: 1fr;
  }

  .b8a-card-top {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .b8a-score {
    text-align: left;
  }
}

@media (max-width: 700px) {
  .b8a-page {
    width: min(1180px, calc(100% - 20px));
  }

  .b8a-section,
  .b8a-footer-box,
  .b8a-hero-carousel {
    border-radius: 22px;
  }
}

@media (max-width: 550px) {
  body { overflow-x: hidden; }
  .b8a-page { width: min(1180px, calc(100% - 12px)); }
  .b8a-header-inner { padding: 0.65rem 0.75rem; gap: 0.5rem; position: relative; }
  .b8a-logo { min-width: 0; align-items: center; }
  .b8a-logo-text { font-size: clamp(0.58rem, 2.9vw, 0.78rem); letter-spacing: 0.05em; line-height: 1.2; word-break: break-word; overflow-wrap: anywhere; }
  .b8a-logo-icon { width: 2.25rem; height: 2.25rem; flex-shrink: 0; }
  .b8a-nav { left: 8px; right: 8px; padding: 12px; }
  .b8a-nav a { font-size: 0.72rem; letter-spacing: 0.1em; padding-block: 0.2rem; }
  .b8a-hero, .b8a-page-hero { padding: 4.75rem 0.6rem 2.5rem; }
  .b8a-hero h1, .b8a-page-hero h1 { font-size: clamp(1.05rem, 5.8vw, 2rem); letter-spacing: 0.055em; word-break: break-word; overflow-wrap: anywhere; }
  .b8a-kicker { font-size: 0.65rem; letter-spacing: 0.12em; max-width: 100%; }
  .b8a-cta-row { gap: 0.65rem; margin-top: 1.35rem; }
  .b8a-button, .b8a-link-button, .b8a-form button, .b8a-age-actions button, .b8a-cookie-banner button, .b8a-back-top { padding: 0.72rem 1rem; font-size: 0.88rem; }
  .b8a-trustline { font-size: 0.82rem; padding-inline: 0.15rem; }
  .b8a-disclaimer-strip { padding: 0.7rem 0.75rem; font-size: 0.82rem; }
  .b8a-section { padding: 0.95rem 0.75rem; border-radius: 18px; margin-bottom: 1.25rem; }
  .b8a-section h2 { font-size: clamp(1.02rem, 4.8vw, 1.55rem); letter-spacing: 0.06em; word-break: break-word; overflow-wrap: anywhere; }
  .b8a-methodology-table, table { font-size: 0.78rem; table-layout: fixed; width: 100%; }
  .b8a-methodology-table th, .b8a-methodology-table td, table th, table td { padding: 0.5rem 0.4rem; word-break: break-word; overflow-wrap: anywhere; hyphens: auto; }
  .b8a-metric { padding: 1rem 0.75rem; }
  .b8a-metric-number { font-size: clamp(1.45rem, 7vw, 2.2rem); }
  .b8a-card { padding: 0.95rem 0.75rem; border-radius: 18px; }
  .b8a-card:hover, .b8a-card[data-hover="active"] { transform: none; }
  .b8a-card-top { flex-wrap: wrap; align-items: flex-start; gap: 0.55rem; }
  .b8a-score { text-align: left; flex: 1 1 auto; min-width: 0; }
  .b8a-badge { font-size: 0.65rem; padding: 0.32rem 0.55rem; max-width: 100%; white-space: normal; text-align: left; }
  .b8a-score strong { font-size: 1.35rem; }
  .b8a-logo-wrap { width: min(140px, 100%); max-width: 100%; height: auto; min-height: 4.25rem; }
  .b8a-brand-meta { min-width: 0; width: 100%; }
  .b8a-bonus { padding: 0.65rem 0.7rem; font-size: 0.88rem; }
  .b8a-game-card, .b8a-news-item, .b8a-link-panel, .b8a-legal-panel, .b8a-contact-panel { padding: 0.95rem 0.75rem; }
  .b8a-cookie-banner { padding: 10px; gap: 10px; font-size: 0.84rem; }
  .b8a-cookie-banner p { margin: 0; flex: 1 1 100%; text-align: center; }
  .b8a-footer-box { padding: 1.15rem 0.75rem; border-radius: 20px; }
  .b8a-footer-title { letter-spacing: 0.08em; font-size: clamp(0.95rem, 4vw, 1.2rem); word-break: break-word; }
  .b8a-back-top { right: 0.45rem; bottom: 5.25rem; width: 2.65rem; height: 2.65rem; font-size: 1.05rem; }
  .b8a-age-overlay { padding: 0.65rem; }
  .b8a-age-box { padding: 1.1rem 0.75rem; }
  .b8a-age-box h2 { font-size: clamp(1rem, 4.5vw, 1.35rem); letter-spacing: 0.06em; word-break: break-word; }
  .b8a-reg-badges { gap: 8px 10px; }
  .b8a-reg-badges img { width: 60px; height: 34px; }
  .b8a-rg-item { min-width: 0; word-break: break-word; overflow-wrap: anywhere; }
  .b8a-rg-checklist { gap: 0.55rem; padding-inline: 0; }
  .b8a-rg-checklist li, .b8a-rg-checklist p { word-break: break-word; overflow-wrap: anywhere; hyphens: auto; min-width: 0; }
  .b8a-reg-badge { white-space: normal; text-align: center; padding: 0.28rem 0.5rem; font-size: 0.72rem; max-width: 100%; flex-shrink: 1; }
  .b8a-form input, .b8a-form textarea { padding: 0.75rem 0.65rem; font-size: 0.88rem; }
}

@media (max-width: 380px) {
  .b8a-page { width: min(1180px, calc(100% - 8px)); }
  .b8a-logo-text { font-size: 0.52rem; letter-spacing: 0.02em; }
  .b8a-hero h1, .b8a-page-hero h1 { font-size: clamp(1rem, 5.2vw, 1.75rem); }
  .b8a-header-inner { padding: 0.55rem 0.55rem; }
  .b8a-section, .b8a-card, .b8a-footer-box { padding-inline: 0.65rem; }
  .b8a-methodology-table th, .b8a-methodology-table td, table th, table td { padding: 0.42rem 0.32rem; font-size: 0.72rem; }
}

@media (max-width: 900px) {
  .b8a-header-inner { position: relative; }
}
