:root {
  --b9p-bg: #13111c;
  --b9p-bg-deep: #1a1625;
  --b9p-surface: #201d2e;
  --b9p-surface-strong: #2a2440;
  --b9p-border: rgba(168, 85, 247, 0.34);
  --b9p-border-cyan: rgba(34, 211, 238, 0.4);
  --b9p-text: #ede9fe;
  --b9p-text-soft: #c4b5fd;
  --b9p-text-muted: #b3a7d9;
  --b9p-accent: #a855f7;
  --b9p-accent-strong: #8b5cf6;
  --b9p-cyan: #22d3ee;
  --b9p-success: #6ee7b7;
  --b9p-shadow: 0 18px 55px rgba(7, 5, 16, 0.45);
  --b9p-radius: 26px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", Arial, sans-serif;
  color: var(--b9p-text);
  background:
    radial-gradient(circle at top left, rgba(168, 85, 247, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.14), transparent 28%),
    linear-gradient(160deg, #13111c 0%, #1a1625 100%);
  min-height: 100vh;
}

img {
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.b9p-header {
  position: sticky;
  top: 0;
  z-index: 90;
  backdrop-filter: blur(18px);
  background: rgba(19, 17, 28, 0.88);
  border-bottom: 1px solid rgba(168, 85, 247, 0.12);
}

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

.b9p-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.b9p-logo-icon {
  width: 2.9rem;
  height: 2.9rem;
  flex-shrink: 0;
}

.b9p-logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  min-width: 0;
}

.b9p-logo-text strong {
  font-size: 1rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--b9p-text);
}

.b9p-logo-text span {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--b9p-cyan);
}

.b9p-nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(168, 85, 247, 0.34);
  border-radius: 999px;
  background: rgba(32, 29, 46, 0.95);
  cursor: pointer;
  padding: 0.75rem 0.65rem;
  align-items: center;
  justify-content: center;
  gap: 0.24rem;
  flex-direction: column;
}

.b9p-nav-toggle span {
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--b9p-text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.b9p-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.b9p-nav a {
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--b9p-text-muted);
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.b9p-nav a:hover,
.b9p-nav a:focus-visible {
  color: var(--b9p-text);
  text-shadow: 0 0 14px rgba(168, 85, 247, 0.62);
}

.b9p-nav-open .b9p-nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

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

.b9p-nav-open .b9p-nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.b9p-hero,
.b9p-page-hero {
  padding: 5.8rem 0 3rem;
}

.b9p-hero-panel,
.b9p-page-hero-panel {
  position: relative;
  overflow: hidden;
  padding: 2.2rem;
  border: 1px solid rgba(168, 85, 247, 0.18);
  border-radius: 32px;
  background:
    radial-gradient(circle at 15% 20%, rgba(168, 85, 247, 0.38), transparent 26%),
    radial-gradient(circle at 88% 25%, rgba(34, 211, 238, 0.28), transparent 24%),
    linear-gradient(135deg, rgba(32, 29, 46, 0.9), rgba(26, 22, 37, 0.96));
  box-shadow: var(--b9p-shadow);
}

.b9p-kicker {
  display: inline-flex;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.28);
  color: var(--b9p-cyan);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.b9p-hero h1,
.b9p-page-hero h1 {
  margin: 1rem 0 0.9rem;
  font-size: clamp(1.2rem, 4.6vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  max-width: 11ch;
}

.b9p-hero p,
.b9p-page-hero p {
  max-width: 58rem;
  margin: 0;
  color: var(--b9p-text-soft);
  font-size: 1.02rem;
  line-height: 1.75;
}

.b9p-trustline {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  color: var(--b9p-text);
  font-size: 0.94rem;
}

.b9p-trustline span {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(32, 29, 46, 0.72);
  border: 1px solid rgba(168, 85, 247, 0.22);
}

.b9p-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.b9p-button,
.b9p-link-button,
.b9p-form button,
.b9p-age-actions button,
.b9p-cookie-banner button,
.b9p-back-top {
  border: none;
  border-radius: 999px;
  padding: 0.95rem 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.b9p-button,
.b9p-link-button,
.b9p-form button,
.b9p-age-actions .b9p-button-solid,
.b9p-cookie-banner .b9p-button-solid {
  background: linear-gradient(135deg, var(--b9p-accent), var(--b9p-accent-strong));
  color: #fff;
  box-shadow: 0 16px 30px rgba(139, 92, 246, 0.3);
}

.b9p-button:hover,
.b9p-link-button:hover,
.b9p-form button:hover,
.b9p-age-actions .b9p-button-solid:hover,
.b9p-cookie-banner .b9p-button-solid:hover {
  background: linear-gradient(135deg, var(--b9p-cyan), var(--b9p-accent));
  transform: translateY(-2px);
}

.b9p-button-ghost,
.b9p-age-actions .b9p-button-ghost,
.b9p-cookie-banner .b9p-button-ghost {
  background: transparent;
  color: var(--b9p-text);
  border: 1px solid rgba(237, 233, 254, 0.22);
}

.b9p-disclaimer-strip {
  margin-top: 1.4rem;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  background: rgba(32, 29, 46, 0.9);
  border: 1px solid rgba(168, 85, 247, 0.18);
  color: var(--b9p-text-muted);
  font-size: 0.92rem;
}

.b9p-main {
  padding-bottom: 3rem;
}

.b9p-section {
  padding: 1.6rem;
  margin-bottom: 1.5rem;
  border-radius: var(--b9p-radius);
  background: linear-gradient(180deg, rgba(32, 29, 46, 0.97), rgba(25, 21, 37, 0.98));
  border: 1px solid rgba(168, 85, 247, 0.14);
  border-bottom: 4px solid rgba(168, 85, 247, 0.54);
  box-shadow: var(--b9p-shadow);
}

.b9p-section h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.25rem, 2.8vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.b9p-section p,
.b9p-section li {
  color: var(--b9p-text-soft);
  line-height: 1.78;
}

.b9p-section-intro {
  max-width: 60rem;
  margin-bottom: 1.1rem;
}

.b9p-dual {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.9fr);
  gap: 1.2rem;
}

.b9p-panel-stack {
  display: grid;
  gap: 1rem;
}

.b9p-metric {
  padding: 1.2rem 1.1rem;
  border-radius: 20px;
  background: rgba(16, 14, 27, 0.82);
  border: 1px solid rgba(34, 211, 238, 0.16);
}

.b9p-metric-number {
  display: block;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--b9p-cyan);
}

.b9p-metric-label {
  display: block;
  margin-top: 0.35rem;
  color: var(--b9p-text);
}

.b9p-methodology-table,
table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(16, 14, 27, 0.72);
}

.b9p-methodology-table th,
.b9p-methodology-table td,
table th,
table td {
  padding: 0.9rem 0.8rem;
  text-align: left;
  border-bottom: 1px solid rgba(168, 85, 247, 0.12);
  word-break: break-word;
  overflow-wrap: anywhere;
}

.b9p-methodology-table th,
table th {
  color: var(--b9p-text);
  background: rgba(139, 92, 246, 0.12);
}

.b9p-methodology-note {
  margin-top: 1.2rem;
}

.b9p-form {
  display: grid;
  gap: 1rem;
}

.b9p-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.b9p-form label {
  display: grid;
  gap: 0.45rem;
  min-width: 0;
}

.b9p-form input,
.b9p-form select,
.b9p-form textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(168, 85, 247, 0.24);
  background: rgba(16, 14, 27, 0.82);
  color: var(--b9p-text);
  padding: 0.92rem 0.9rem;
}

.b9p-form textarea {
  min-height: 180px;
  resize: vertical;
}

.b9p-calc-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 1rem;
  align-items: start;
}

.b9p-calc-output {
  display: grid;
  gap: 0.8rem;
}

.b9p-calc-card {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(16, 14, 27, 0.85);
  border: 1px solid rgba(34, 211, 238, 0.18);
}

.b9p-calc-card span {
  display: block;
  font-size: 0.84rem;
  color: var(--b9p-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.b9p-calc-card strong {
  display: block;
  margin-top: 0.4rem;
  font-size: 1.8rem;
  color: var(--b9p-text);
}

.b9p-calc-footnote {
  margin-top: 0.4rem;
  font-size: 0.86rem;
  color: var(--b9p-text-muted);
}

.b9p-card-grid {
  display: grid;
  gap: 1rem;
}

.b9p-card {
  padding: 1.2rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(32, 29, 46, 0.96), rgba(23, 20, 34, 0.98));
  border: 1px solid rgba(168, 85, 247, 0.18);
  border-bottom: 4px solid rgba(168, 85, 247, 0.62);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.b9p-card:hover,
.b9p-card[data-hover="active"] {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(4, 3, 10, 0.48);
  border-color: rgba(34, 211, 238, 0.22);
}

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

.b9p-brand-block {
  display: flex;
  gap: 1rem;
  min-width: 0;
}

.b9p-logo-wrap {
  padding: 6px;
  width: 140px;
  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;
}

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

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

.b9p-brand-meta h3 {
  margin: 0 0 0.25rem;
  font-size: 1.35rem;
}

.b9p-brand-meta h3 a:hover {
  color: var(--b9p-cyan);
}

.b9p-brand-meta p {
  margin: 0;
  color: var(--b9p-text-muted);
}

.b9p-badge {
  display: inline-flex;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(168, 85, 247, 0.18);
  border: 1px solid rgba(168, 85, 247, 0.28);
  color: var(--b9p-text);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.b9p-score {
  min-width: 150px;
  text-align: right;
}

.b9p-score strong {
  display: block;
  font-size: 1.75rem;
  color: var(--b9p-cyan);
}

.b9p-score span {
  color: var(--b9p-text-muted);
}

.b9p-bonus {
  margin: 1rem 0 0.8rem;
  padding: 0.8rem 0.9rem;
  border-radius: 16px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.28);
  font-size: 0.97rem;
  color: var(--b9p-text);
}

.b9p-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.9rem 0 1rem;
}

.b9p-pill {
  display: inline-flex;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.24);
  color: var(--b9p-text);
  font-size: 0.8rem;
}

.b9p-card-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.b9p-card-cta p {
  margin: 0;
  color: var(--b9p-text-muted);
  font-size: 0.88rem;
  max-width: 40rem;
}

.b9p-glossary-grid,
.b9p-rg-grid,
.b9p-link-grid,
.b9p-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.b9p-game-card,
.b9p-news-item,
.b9p-link-panel,
.b9p-legal-panel,
.b9p-contact-panel {
  padding: 1.1rem;
  border-radius: 18px;
  background: rgba(16, 14, 27, 0.76);
  border: 1px solid rgba(168, 85, 247, 0.16);
}

.b9p-game-card h3,
.b9p-news-item h3,
.b9p-link-panel h3,
.b9p-legal-panel h3,
.b9p-contact-panel h3 {
  margin: 0 0 0.55rem;
  font-size: 1rem;
  color: var(--b9p-text);
}

.b9p-rg-heading {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.b9p-reg-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin: 1rem 0 1.3rem;
}

.b9p-reg-badge {
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.24);
  color: #fecaca;
  font-size: 0.82rem;
}

.b9p-rg-item {
  min-width: 0;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(16, 14, 27, 0.8);
  border: 1px solid rgba(34, 211, 238, 0.16);
}

.b9p-rg-checklist {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding-left: 1.1rem;
}

.b9p-rg-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.b9p-rg-links a {
  color: var(--b9p-cyan);
}

.b9p-rg-links a:hover,
.b9p-footer-links a:hover,
.b9p-footer-meta a:hover,
.b9p-inline-link:hover {
  color: #a5f3fc;
}

.b9p-footer {
  padding: 1rem 0 3rem;
}

.b9p-footer-box {
  padding: 1.35rem 1.4rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(32, 29, 46, 0.96), rgba(18, 16, 26, 0.98));
  border: 1px solid rgba(168, 85, 247, 0.18);
  box-shadow: var(--b9p-shadow);
}

.b9p-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.b9p-footer-title {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.b9p-footer-links,
.b9p-footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  color: var(--b9p-text-muted);
}

.b9p-footer-small {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(168, 85, 247, 0.14);
  color: var(--b9p-text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.b9p-footer-small a {
  color: var(--b9p-cyan);
}

.b9p-cookie-banner {
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  width: min(1080px, calc(100% - 24px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 14px 18px;
  border-radius: 20px;
  background: rgba(18, 16, 26, 0.97);
  border: 1px solid rgba(168, 85, 247, 0.25);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

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

.b9p-cookie-banner p {
  margin: 0;
  color: var(--b9p-text-soft);
}

.b9p-cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.b9p-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.b9p-modal-lock { overflow: hidden; }
body.b9p-modal-lock .b9p-age-overlay[data-b9p-age-state="pending"] { display: grid; }

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

.b9p-age-box {
  width: min(560px, calc(100% - 24px));
  padding: 1.75rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(168, 85, 247, 0.28), transparent 28%),
    linear-gradient(180deg, rgba(32, 29, 46, 0.98), rgba(18, 16, 26, 0.98));
  border: 1px solid rgba(168, 85, 247, 0.22);
  box-shadow: var(--b9p-shadow);
  text-align: center;
}

.b9p-age-box h2 {
  margin-top: 0.2rem;
  margin-bottom: 0.8rem;
  font-size: clamp(1.15rem, 2.5vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.b9p-age-box p {
  color: var(--b9p-text-soft);
  line-height: 1.75;
}

.b9p-age-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.b9p-back-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--b9p-accent), var(--b9p-cyan));
  color: #fff;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
}

.b9p-back-top[data-b9p-back-state="visible"] {
  opacity: 1;
  pointer-events: auto;
}

.b9p-link-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.b9p-link-list a,
.b9p-inline-link {
  color: var(--b9p-cyan);
}

.b9p-inline-note {
  color: var(--b9p-text-muted);
  font-size: 0.92rem;
}

.b9p-contact-note {
  margin-top: 1rem;
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .b9p-dual,
  .b9p-calc-shell,
  .b9p-glossary-grid,
  .b9p-rg-grid,
  .b9p-link-grid,
  .b9p-contact-grid {
    grid-template-columns: 1fr;
  }
}

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

  .b9p-nav-toggle {
    display: inline-flex;
  }

  .b9p-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    padding: 16px;
    border-radius: 22px;
    background: rgba(18, 16, 26, 0.98);
    border: 1px solid rgba(168, 85, 247, 0.2);
    box-shadow: var(--b9p-shadow);
    display: grid;
    gap: 0.7rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

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

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

  .b9p-card-top,
  .b9p-card-cta,
  .b9p-footer-row,
  .b9p-cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .b9p-brand-block {
    flex-direction: column;
  }

  .b9p-form-grid {
    grid-template-columns: 1fr;
  }
}

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

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

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