:root {
  --bwall-bg: #f4eef5;
  --bwall-bg-alt: #ede4f0;
  --bwall-card: #fdf8fe;
  --bwall-border: #d8c8de;
  --bwall-border-strong: #a487b8;
  --bwall-primary: #8c6da3;
  --bwall-primary-deep: #a487b8;
  --bwall-sage: #a8b29e;
  --bwall-sage-deep: #8a9684;
  --bwall-ink: #3a2e44;
  --bwall-ink-deep: #2a2030;
  --bwall-muted: #7a6a82;
  --bwall-butter: #f7ecd0;
  --bwall-shadow: 0 10px 24px rgba(140, 109, 163, 0.10), 0 2px 5px rgba(140, 109, 163, 0.06);
  --bwall-radius: 14px;
  --bwall-wrap: 1180px;
}

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

html,
body {
  margin: 0;
  padding: 0;
  min-width: 0;
  overflow-x: clip;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--bwall-ink);
  background: linear-gradient(180deg, var(--bwall-bg) 0%, var(--bwall-bg-alt) 100%);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.bwall-page {
  position: relative;
  min-width: 0;
}

.bwall-wrap {
  width: min(calc(100% - 2rem), var(--bwall-wrap));
  margin: 0 auto;
}

.bwall-flow + .bwall-flow {
  border-top: 1px solid rgba(140, 109, 163, 0.25);
}

.bwall-top-agebar {
  background: rgba(140, 109, 163, 0.12);
  color: var(--bwall-ink);
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bwall-cookie-banner {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 250;
  display: flex;
  justify-content: center;
  background: rgba(58, 46, 68, 0.95);
  color: #fdf8fe;
  padding: 0.85rem 1rem;
  pointer-events: none;
}

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

.bwall-cookie-inner {
  width: min(calc(100% - 0.5rem), var(--bwall-wrap));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  pointer-events: auto;
}

.bwall-cookie-copy {
  margin: 0;
  font-size: 0.95rem;
  max-width: 56rem;
}

.bwall-cookie-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.bwall-cookie-link {
  color: #fdf8fe;
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.bwall-cookie-banner[data-bwall-cookie-state="visible"] ~ .bwall-page .bwall-header {
  top: 66px;
}

.bwall-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(244, 238, 245, 0.94);
}

.bwall-header-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 1rem;
  position: relative;
  overflow: visible;
  padding: 0.9rem 0;
}

.bwall-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.bwall-brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--bwall-primary);
  display: grid;
  place-items: center;
  color: #fdf8fe;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 1rem;
}

.bwall-brand-meta {
  min-width: 0;
}

.bwall-brand-eyebrow {
  display: block;
  font-size: 11px;
  font-style: italic;
  color: var(--bwall-muted);
  letter-spacing: 0.04em;
}

.bwall-brand-name {
  display: block;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  color: var(--bwall-ink);
}

.bwall-nav {
  display: flex;
  flex: 1;
  min-width: 0;
  justify-content: flex-end;
}

.bwall-nav ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bwall-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.8rem;
  font-size: 14px;
  font-weight: 500;
  color: var(--bwall-ink);
  text-decoration-color: transparent;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.bwall-nav a:hover,
.bwall-nav a:focus-visible {
  color: var(--bwall-primary);
  text-decoration-color: var(--bwall-primary);
}

.bwall-nav a[aria-current="page"]::before {
  content: "❀";
  color: var(--bwall-sage-deep);
  font-size: 0.85rem;
}

.bwall-burger {
  display: none;
  margin-left: auto;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(58, 46, 68, 0.12);
  border-radius: 12px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.bwall-burger span {
  width: 20px;
  height: 2px;
  background: var(--bwall-ink);
  border-radius: 2px;
}

.bwall-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 199;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.bwall-hero {
  padding: 5.9rem 0 4rem;
}

.bwall-kicker {
  margin: 0 0 1rem;
  color: var(--bwall-sage-deep);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 12px;
  font-weight: 600;
}

.bwall-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 2rem;
  align-items: start;
  min-width: 0;
}

.bwall-hero-copy,
.bwall-hero-search {
  min-width: 0;
}

.bwall-hero h1 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(44px, 8vw, 100px);
  line-height: 1;
  letter-spacing: -1px;
  font-weight: 700;
  color: var(--bwall-ink);
}

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

.bwall-bar {
  width: 64px;
  height: 3px;
  border-radius: 2px;
  background: var(--bwall-primary);
  margin: 1.3rem 0 1.4rem;
}

.bwall-subline {
  margin: 0;
  max-width: 540px;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 500;
  color: var(--bwall-muted);
}

.bwall-search-panel {
  background: var(--bwall-card);
  border: 1px solid var(--bwall-border);
  border-radius: var(--bwall-radius);
  box-shadow: var(--bwall-shadow);
  padding: 1.25rem;
}

.bwall-search-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bwall-ink);
  margin-bottom: 0.6rem;
}

.bwall-search-row {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.bwall-search-input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--bwall-border);
  border-radius: 12px;
  padding: 0.95rem 1rem;
  background: #fff;
  color: var(--bwall-ink);
}

.bwall-search-note {
  margin: 0.75rem 0 0;
  color: var(--bwall-muted);
  font-size: 0.93rem;
}

.bwall-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.bwall-jump {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(168, 178, 158, 0.2);
  color: var(--bwall-ink);
  font-size: 0.82rem;
  font-weight: 500;
}

.bwall-hero-topline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.25rem;
  min-width: 0;
}

.bwall-mini {
  background: var(--bwall-card);
  border: 1px solid var(--bwall-border);
  border-radius: var(--bwall-radius);
  box-shadow: var(--bwall-shadow);
  padding: 1rem;
  min-width: 0;
}

.bwall-mini strong {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.bwall-mini p {
  margin: 0;
  color: var(--bwall-muted);
  font-size: 0.95rem;
}

.bwall-section {
  padding: 4rem 0;
}

.bwall-section-head {
  margin-bottom: 1.6rem;
  max-width: 48rem;
}

.bwall-section-head h2 {
  margin: 0 0 0.75rem;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  color: var(--bwall-ink-deep);
}

.bwall-section-head p {
  margin: 0;
  color: var(--bwall-muted);
  font-size: 1rem;
}

.bwall-table-wrap {
  overflow-x: auto;
  width: 100%;
  max-width: 100%;
}

.bwall-scoreboard {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: var(--bwall-card);
  border: 1px solid var(--bwall-border);
  border-radius: var(--bwall-radius);
  overflow: hidden;
  box-shadow: var(--bwall-shadow);
}

.bwall-scoreboard thead th {
  text-align: left;
  white-space: nowrap;
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  background: rgba(140, 109, 163, 0.08);
}

.bwall-scoreboard th,
.bwall-scoreboard td {
  padding: 1rem;
  border-bottom: 1px solid rgba(140, 109, 163, 0.14);
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: none;
}

.bwall-scoreboard tbody tr:last-child td {
  border-bottom: 0;
}

.bwall-scoreboard tbody tr[data-bwall-hidden="true"] {
  display: none;
}

.bwall-score-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(140, 109, 163, 0.12);
  font-weight: 600;
  color: var(--bwall-ink);
}

.bwall-casino-list {
  display: grid;
  gap: 1.4rem;
  min-width: 0;
}

.bwall-card {
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr) minmax(220px, 220px);
  gap: 1rem;
  align-items: stretch;
  background: var(--bwall-card);
  border: 1px solid var(--bwall-border);
  border-radius: var(--bwall-radius);
  box-shadow: var(--bwall-shadow);
  padding: 1.2rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
  min-width: 0;
}

.bwall-card:hover,
.bwall-card.bwall-hovered {
  transform: translateY(-2px);
  border-color: var(--bwall-border-strong);
}

.bwall-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(140px, 100%);
  height: auto;
  min-height: 4.25rem;
  max-width: 100%;
  background: #fff;
  border-radius: 8px;
  padding: 8px 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.bwall-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.bwall-card-main,
.bwall-card-side,
.bwall-card-brand,
.bwall-card-top {
  min-width: 0;
}

.bwall-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.bwall-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: rgba(140, 109, 163, 0.16);
  color: var(--bwall-ink);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bwall-brandline {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
  color: var(--bwall-ink-deep);
}

.bwall-score {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
  min-width: 0;
  flex-shrink: 1;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.bwall-score strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.4rem;
}

.bwall-petals {
  display: flex;
  gap: 0.3rem;
}

.bwall-petal,
.bwall-petal-empty {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.bwall-petal {
  background: var(--bwall-primary);
}

.bwall-petal-empty {
  border: 1.5px solid rgba(140, 109, 163, 0.45);
}

.bwall-bonus-text {
  margin: 0.8rem 0 0.65rem;
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--bwall-ink);
  text-decoration: underline;
  text-decoration-color: var(--bwall-sage);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.bwall-review {
  margin: 0;
  color: var(--bwall-muted);
}

.bwall-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.85rem;
}

.bwall-pill {
  background: rgba(168, 178, 158, 0.2);
  color: var(--bwall-ink);
  border-radius: 999px;
  padding: 4px 12px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.3px;
}

.bwall-card-disclaimer {
  margin: 0.9rem 0 0;
  font-size: 0.8rem;
  color: var(--bwall-muted);
}

.bwall-card-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 0.8rem;
  padding-left: 0.5rem;
}

.bwall-cta-btn,
.bwall-button,
.bwall-cookie-accept,
.bwall-cookie-decline,
.bwall-age-confirm,
.bwall-age-leave {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.2rem;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.bwall-cta-btn,
.bwall-button,
.bwall-cookie-accept,
.bwall-age-confirm {
  background: var(--bwall-primary);
  color: #fdf8fe;
  box-shadow: 0 6px 16px rgba(140, 109, 163, 0.26);
}

.bwall-cta-btn:hover,
.bwall-button:hover,
.bwall-cookie-accept:hover,
.bwall-age-confirm:hover {
  background: var(--bwall-ink-deep);
  color: #fdf8fe;
}

.bwall-card-side .bwall-button-alt,
.bwall-cookie-decline,
.bwall-age-leave {
  border: 1.5px solid var(--bwall-ink-deep);
  background: #fdf8fe;
  color: var(--bwall-ink-deep);
}

.bwall-card-side .bwall-button-alt:hover,
.bwall-cookie-decline:hover,
.bwall-age-leave:hover {
  background: var(--bwall-ink-deep);
  color: #fdf8fe;
}

.bwall-side-note {
  font-size: 0.84rem;
  color: var(--bwall-muted);
  text-align: center;
}

.bwall-calculator {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.8fr);
  gap: 1.25rem;
  min-width: 0;
}

.bwall-calculator-card,
.bwall-method-grid article,
.bwall-rg-panel,
.bwall-about-grid > *,
.bwall-faq-shell {
  background: var(--bwall-card);
  border: 1px solid var(--bwall-border);
  border-radius: var(--bwall-radius);
  box-shadow: var(--bwall-shadow);
}

.bwall-calculator-card {
  padding: 1.25rem;
}

.bwall-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
  min-width: 0;
}

.bwall-field label {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 600;
}

.bwall-field input,
.bwall-field select {
  width: 100%;
  border: 1px solid var(--bwall-border);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  background: #fff;
}

.bwall-calc-output {
  display: grid;
  gap: 0.85rem;
}

.bwall-output-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: rgba(140, 109, 163, 0.08);
}

.bwall-output-row strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.15rem;
}

.bwall-method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  min-width: 0;
}

.bwall-method-grid article {
  padding: 1.1rem;
  min-width: 0;
}

.bwall-method-grid h3,
.bwall-about-panel h3,
.bwall-faq-title {
  margin: 0 0 0.55rem;
  font-family: "Manrope", sans-serif;
  font-size: 1.15rem;
}

.bwall-method-intro,
.bwall-about-copy p,
.bwall-rg-panel p {
  margin: 0 0 1rem;
  color: var(--bwall-muted);
}

.bwall-rg-panel {
  padding: 1.35rem;
}

.bwall-rg-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.bwall-rg-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(168, 178, 158, 0.22);
  font-weight: 600;
}

.bwall-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 1rem;
  min-width: 0;
}

.bwall-about-panel,
.bwall-faq-shell {
  padding: 1.25rem;
}

.bwall-faq-list {
  display: grid;
  gap: 0.75rem;
}

.bwall-query {
  border: 1px solid rgba(140, 109, 163, 0.18);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.bwall-query-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--bwall-ink);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  padding: 1rem;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  cursor: pointer;
}

.bwall-query-toggle span:last-child {
  color: var(--bwall-primary);
  font-size: 1.25rem;
  line-height: 1;
}

.bwall-query-panel {
  padding: 0 1rem 1rem;
  color: var(--bwall-muted);
  display: none;
}

.bwall-query.bwall-open .bwall-query-panel {
  display: block;
}

.bwall-query.bwall-open .bwall-query-toggle span:last-child {
  transform: rotate(45deg);
}

.bwall-footer {
  padding: 1.2rem 0 1.8rem;
  border-top: 1px solid rgba(140, 109, 163, 0.25);
}

.bwall-footer-strip {
  display: grid;
  gap: 0.7rem;
  font-size: 0.92rem;
  color: var(--bwall-muted);
}

.bwall-footer a {
  color: var(--bwall-ink);
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.bwall-footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
}

.bwall-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
}

.bwall-age-overlay {
  position: fixed !important;
  inset: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 100dvh !important;
  min-height: 100vh !important;
  z-index: 2147483646 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  padding: max(env(safe-area-inset-top), 16px) 0.65rem max(env(safe-area-inset-bottom), 16px) !important;
  background: rgba(0, 0, 0, 0.85) !important;
  margin: 0 !important;
  overflow-y: auto !important;
  overscroll-behavior: contain !important;
}

.bwall-age-box {
  margin-block: auto;
  flex-shrink: 0;
  max-width: 100%;
  width: min(420px, calc(100% - 12px));
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.bwall-age-box h2 {
  margin: 0 0 0.75rem;
  font-family: "Manrope", sans-serif;
  color: var(--bwall-ink-deep);
}

.bwall-age-box p {
  margin: 0 0 1rem;
  color: var(--bwall-muted);
}

.bwall-age-actions {
  display: grid;
  gap: 0.75rem;
}

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

.bwall-up {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 0;
  background: var(--bwall-primary);
  color: #fdf8fe;
  box-shadow: 0 6px 16px rgba(140, 109, 163, 0.26);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.bwall-up.bwall-visible {
  opacity: 1;
  pointer-events: auto;
}

.bwall-legal-hero {
  padding: 4.5rem 0 2rem;
}

.bwall-legal-hero h1 {
  margin: 0 0 0.75rem;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1.04;
}

.bwall-legal-lead,
.bwall-legal-body p,
.bwall-legal-body li {
  color: var(--bwall-muted);
}

.bwall-legal-body {
  display: grid;
  gap: 1.2rem;
}

.bwall-legal-block {
  background: var(--bwall-card);
  border: 1px solid var(--bwall-border);
  border-radius: var(--bwall-radius);
  box-shadow: var(--bwall-shadow);
  padding: 1.3rem;
}

.bwall-legal-block h2 {
  margin: 0 0 0.75rem;
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
}

.bwall-legal-block ul {
  margin: 0;
  padding-left: 1.15rem;
}

.bwall-legal-block p:last-child,
.bwall-legal-block ul:last-child {
  margin-bottom: 0;
}

@media (max-width: 1100px) {
  .bwall-burger {
    display: flex;
  }

  .bwall-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100dvh;
    z-index: 201;
    background: #ffffff;
    transform: translateX(calc(100% + 16px));
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0s linear 0.3s;
    overflow-y: auto;
    padding: 1.5rem 1rem;
    max-width: min(320px, 85vw) !important;
    justify-content: flex-start;
  }

  .bwall-nav ul {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }

  body.bwall-nav-open .bwall-nav {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0s linear 0s;
  }

  body.bwall-nav-open .bwall-nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  body.bwall-nav-open {
    overflow: hidden;
  }

  .bwall-hero-grid,
  .bwall-calculator,
  .bwall-about-grid,
  .bwall-method-grid {
    grid-template-columns: 1fr;
  }

  .bwall-card {
    grid-template-columns: 145px minmax(0, 1fr);
  }

  .bwall-card-side {
    grid-column: 1 / -1;
    padding-left: 0;
    border-top: 1px solid rgba(140, 109, 163, 0.12);
    padding-top: 1rem;
  }

  .bwall-cookie-banner[data-bwall-cookie-state="visible"] ~ .bwall-page .bwall-header {
    top: 74px;
  }
}

@media (max-width: 550px) {
  html,
  body {
    overflow-x: hidden;
    max-width: 100%;
  }

  html,
  body {
    overflow-x: clip;
  }

  .bwall-page * {
    max-width: 100%;
  }

  .bwall-casino-list,
  .bwall-grid {
    grid-template-columns: 1fr !important;
    min-width: 0;
  }

  .bwall-casino-list > *,
  .bwall-grid > * {
    min-width: 0;
  }

  .bwall-card {
    grid-template-columns: 1fr !important;
    min-width: 0;
  }

  .bwall-card * {
    min-width: 0;
    max-width: 100%;
  }

  .bwall-card-top {
    flex-wrap: wrap;
    gap: 8px;
  }

  .bwall-logo-wrap {
    width: min(160px, 100%);
    max-width: 100%;
    min-height: 3.75rem;
    height: auto;
  }

  .bwall-cta-btn,
  .bwall-button,
  .bwall-cookie-accept,
  .bwall-cookie-decline,
  .bwall-age-confirm,
  .bwall-age-leave {
    width: 100% !important;
    max-width: 100%;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  h1,
  h2 {
    font-size: clamp(1.25rem, 6vw, 2rem) !important;
  }

  .bwall-card:hover {
    transform: none !important;
  }

  .bwall-header-inner {
    position: relative;
  }

  table {
    table-layout: auto;
    width: max-content;
    min-width: 0;
  }

  .bwall-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: 100%;
  }

  .bwall-table-wrap table {
    min-width: 100%;
    width: max-content;
  }

  :not(.bwall-table-wrap) > table {
    width: 100%;
  }

  thead th {
    white-space: nowrap;
  }

  td {
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
  }

  .bwall-wrap {
    width: min(calc(100% - 1rem), var(--bwall-wrap));
  }

  .bwall-hero {
    padding-top: 4rem;
  }

  .bwall-hero-topline,
  .bwall-field-grid,
  .bwall-cookie-inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .bwall-search-row,
  .bwall-output-row,
  .bwall-footer-row {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: clamp(1.1rem, 7vw, 1.5rem) !important;
  }

  .bwall-logo-wrap {
    width: min(140px, 100%);
    min-height: 3.25rem;
    height: auto;
  }

  .bwall-bonus-text {
    font-size: 0.85rem;
  }
}
