:root {
  --black: #0a0a0a;
  --white: #f5f0e8;
  --red: #e8003d;
  --yellow: #ffe600;
  --blue: #0057ff;
  --gray: #1a1a1a;
  --mid: #2a2a2a;
  --max: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Space Mono', monospace;
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.age-locked {
  overflow: hidden;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9000;
  opacity: 0.35;
}

a {
  color: var(--white);
  text-decoration: none;
}

a:hover {
  color: var(--yellow);
}

.container {
  width: min(100% - 3rem, var(--max));
  margin-inline: auto;
}

.age-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(10, 10, 10, 0.92);
}

.age-overlay[hidden] {
  display: none;
}

.age-modal {
  width: min(100%, 440px);
  background: var(--gray);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem 2rem;
  text-align: center;
}

.age-modal h2 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.age-modal p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.age-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--red);
  color: var(--white);
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  border-color: var(--white);
  text-decoration: none;
}

.site-header {
  padding: 1.75rem 0;
  position: relative;
  z-index: 10;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  flex-wrap: wrap;
}

.site-header-brand {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.site-header-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.adsight-notice {
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.4;
}

.adsight-notice strong {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 700;
}

.adsight-notice--compact {
  margin-top: 1rem;
  text-align: center;
}

.adsight-notice--inline {
  display: block;
  margin-top: 0.75rem;
}

.hero-note .adsight-notice--inline {
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 0.75rem;
}

.disclaimer-box .adsight-notice--inline {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.adsight-notice-inline {
  font-size: inherit;
  letter-spacing: inherit;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.logo {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: clamp(15px, 3.2vw, 20px);
  letter-spacing: -0.5px;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
}

.logo span {
  color: var(--red);
}

.nav-badge {
  font-size: 0.6875rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.hero {
  position: relative;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero .container {
  position: relative;
  z-index: 5;
  padding: 2rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.hero-col-title .hero-title {
  margin-bottom: 0;
  max-width: none;
}

.hero-col-body .hero-lead,
.hero-col-body .hero-lead-secondary,
.hero-col-body .hero-note,
.hero-col-body .aggregator-notice {
  max-width: none;
}

.platform-logo {
  width: 200px;
}

.hero-eyebrow,
.section-label {
  font-size: 0.6875rem;
  letter-spacing: 0.25em;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  max-width: 80px;
}

.hero-title,
.section h2 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  line-height: 1.05;
}

.hero-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(3rem, 10vw, 7.5rem);
  text-transform: uppercase;
  letter-spacing: -0.04em;
  margin-bottom: 2rem;
  max-width: 14ch;
}

.hero-title .line {
  display: block;
}

.hero-title .line:nth-child(2) {
  color: var(--red);
}

.hero-title .line:nth-child(3) {
  -webkit-text-stroke: 1px var(--white);
  color: transparent;
}

.hero-lead {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.65);
  max-width: 58ch;
  margin-bottom: 1rem;
}

.hero-lead-secondary {
  max-width: 62ch;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8125rem;
}

.hero-lead strong {
  color: var(--white);
}

.hero-note {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 58ch;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.aggregator-notice {
  margin: 1.5rem 0 0;
  padding: 1rem 1.25rem;
  max-width: 52ch;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.aggregator-notice p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.aggregator-notice strong {
  color: var(--white);
}

.hero-bg-number {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Anton', sans-serif;
  font-size: clamp(12rem, 35vw, 28rem);
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  z-index: 1;
}

.license-strip {
  background: var(--gray);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.125rem max(1.5rem, calc((100vw - var(--max)) / 2 + 1.5rem));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.5rem;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  margin-top: auto;
}

.license-dot {
  width: 8px;
  height: 8px;
  background: #00e676;
  border-radius: 50%;
  flex-shrink: 0;
}

.license-sep {
  color: rgba(255, 255, 255, 0.15);
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--gray);
}

.section h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
  max-width: 20ch;
}

.section h2 em {
  font-style: normal;
  color: var(--red);
}

.section-intro {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  margin-bottom: 3rem;
  max-width: 55ch;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2px;
}

@media (min-width: 901px) {
  .platform-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .platform-card:nth-child(1) {
    grid-column: 1 / 3;
  }

  .platform-card:nth-child(2) {
    grid-column: 3 / 5;
  }

  .platform-card:nth-child(3) {
    grid-column: 5 / 7;
  }

  .platform-card:nth-child(4) {
    grid-column: 2 / 4;
  }

  .platform-card:nth-child(5) {
    grid-column: 4 / 6;
  }
}

.platform-card {
  background: var(--mid);
  padding: 2.5rem 2rem 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease;
}

.platform-card:hover {
  transform: translateY(-6px);
  z-index: 2;
}

.platform-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}

.platform-card:hover::before {
  opacity: 1;
}

.platform-card.pmu::before {
  background: linear-gradient(135deg, rgba(0, 230, 118, 0.12) 0%, transparent 70%);
}

.platform-card.pokerstars::before {
  background: linear-gradient(135deg, rgba(232, 0, 61, 0.15) 0%, transparent 70%);
}

.platform-card.feeling::before {
  background: linear-gradient(135deg, rgba(255, 230, 0, 0.1) 0%, transparent 70%);
}

.platform-card.betclic::before {
  background: linear-gradient(135deg, rgba(0, 87, 255, 0.15) 0%, transparent 70%);
}

.platform-card.olybet::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
}

.card-num {
  font-family: 'Anton', sans-serif;
  font-size: 7rem;
  line-height: 0.85;
  color: rgba(255, 255, 255, 0.04);
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  user-select: none;
}

.platform-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.platform-name {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: 1.75rem;
  letter-spacing: -0.03em;
}

.pmu .platform-name {
  color: #00e676;
}

.pokerstars .platform-name {
  color: var(--red);
}

.feeling .platform-name {
  color: var(--yellow);
}

.betclic .platform-name {
  color: #4d9fff;
}

.olybet .platform-name {
  color: var(--white);
}

.platform-tag {
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.35rem 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}

.platform-desc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.platform-features {
  list-style: none;
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 1;
  flex: 1;
}

.platform-features li {
  font-size: 0.75rem;
  padding: 0.625rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.platform-features li::before {
  content: '→';
  color: var(--yellow);
  flex-shrink: 0;
}

.card-actions {
  position: relative;
  z-index: 1;
  margin-top: auto;
  display: flex;
  flex-direction: column;
}

.card-actions .btn {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 1.25rem;
}

.btn-review {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

.btn-external {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
}

.pmu .btn-review:hover {
  background: rgba(0, 230, 118, 0.2);
  color: #00e676;
  text-decoration: none;
}

.pmu .btn-external:hover {
  background: #00e676;
  color: var(--black);
  text-decoration: none;
}

.pokerstars .btn-review:hover {
  background: rgba(232, 0, 61, 0.2);
  color: var(--red);
  text-decoration: none;
}

.pokerstars .btn-external:hover {
  background: var(--red);
  color: var(--white);
  text-decoration: none;
}

.feeling .btn-review:hover {
  background: rgba(255, 230, 0, 0.15);
  color: var(--yellow);
  text-decoration: none;
}

.feeling .btn-external:hover {
  background: var(--yellow);
  color: var(--black);
  text-decoration: none;
}

.betclic .btn-review:hover {
  background: rgba(0, 87, 255, 0.2);
  color: #4d9fff;
  text-decoration: none;
}

.betclic .btn-external:hover {
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
}

.olybet .btn-review:hover {
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.olybet .btn-external:hover {
  background: var(--white);
  color: var(--black);
  text-decoration: none;
}

.section-comparison {
  background: var(--gray);
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
}

.compare-table th {
  text-align: left;
  padding: 1.125rem 1.25rem;
  font-family: 'Unbounded', sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
  background: var(--black);
}

.compare-table th:nth-child(2) {
  color: #00e676;
}

.compare-table th:nth-child(3) {
  color: var(--red);
}

.compare-table th:nth-child(4) {
  color: var(--yellow);
}

.compare-table th:nth-child(5) {
  color: #4d9fff;
}

.compare-table th:nth-child(6) {
  color: var(--white);
}

.compare-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
}

.compare-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.compare-table td:first-child {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.check {
  color: #00e676;
}

.info-strip {
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--gray);
}

.info-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.info-strip-item {
  padding: 2rem 1.5rem;
  text-align: center;
  background: var(--mid);
}

.info-strip-num {
  display: block;
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
  color: var(--yellow);
  margin-bottom: 0.5rem;
}

.info-strip-label {
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.editorial-col p {
  font-size: 0.875rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 1rem;
}

.editorial-col p:last-child {
  margin-bottom: 0;
}

.editorial-note {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--gray);
  border-left: 3px solid var(--red);
  font-size: 0.8125rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.5);
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.topic-card {
  background: var(--mid);
  padding: 2rem 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.topic-card h3 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.topic-card p {
  font-size: 0.8125rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.75rem;
}

.topic-operators {
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-bottom: 0;
}

.step-item {
  background: var(--gray);
  padding: 2rem 1.75rem;
  position: relative;
}

.step-num {
  font-family: 'Anton', sans-serif;
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.06);
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.step-item h3 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 0.625rem;
}

.step-item p {
  font-size: 0.8125rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.faq-list {
  margin: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
}

.faq-item:first-child {
  padding-top: 0;
}

.faq-item dt {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 0.625rem;
  color: var(--white);
}

.faq-item dd {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
}

.faq-item dd a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.why-item {
  background: var(--gray);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.why-item h3 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 0.625rem;
  letter-spacing: -0.02em;
}

.why-item p {
  font-size: 0.8125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

.regulators-section {
  background: var(--gray);
  border-block: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 4rem;
}

.regulators-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 1.5rem;
}

.regulator-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.25rem;
  background: var(--mid);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.2s ease, background 0.2s ease;
  min-height: 72px;
}

.regulator-link:hover {
  border-color: rgba(255, 230, 0, 0.35);
  background: rgba(255, 255, 255, 0.04);
}

.regulator-link img {
  display: block;
  width: auto;
  max-width: 200px;
  max-height: 48px;
  height: auto;
  object-fit: contain;
  filter: brightness(0.95) grayscale(0.15);
  transition: filter 0.2s ease;
}

.regulator-link:hover img {
  filter: brightness(1) grayscale(0);
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: none;
}

.disclaimer {
  padding: 0;
  background: #111;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.disclaimer-box {
  padding: 3rem 0;
  font-size: 0.6875rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.35);
}

.disclaimer-box strong {
  color: rgba(255, 255, 255, 0.6);
}

.disclaimer-box a {
  color: rgba(255, 255, 255, 0.5);
}

.disclaimer-box a:hover {
  color: var(--yellow);
}

.disclaimer-box p + p {
  margin-top: 1rem;
}

.site-footer {
  background: var(--black);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.6875rem;
}

.footer-legal {
  text-align: center;
  line-height: 1.9;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-transform: uppercase;
}

.footer-legal strong {
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-nav a {
  display: block;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
  line-height: 1.6;
}

.footer-nav a:hover,
.footer-nav a[aria-current="page"] {
  color: var(--yellow);
}

.footer-grid h4 {
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.75rem;
}

.footer-grid p,
.footer-grid a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
  line-height: 1.8;
}

.footer-copy {
  text-align: center;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.08em;
}

.legal-hero {
  padding: 2.5rem 0 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--gray);
}

.legal-hero h1 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.15;
  max-width: 22ch;
  margin-bottom: 0.75rem;
}

.legal-hero h1 em {
  font-style: normal;
  color: var(--red);
}

.legal-meta {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.06em;
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
  align-items: start;
  padding: 3rem 0 4rem;
}

.legal-toc {
  position: sticky;
  top: 1.5rem;
  background: var(--gray);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem;
}

.legal-toc h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}

.legal-toc ol {
  list-style: none;
  counter-reset: toc;
}

.legal-toc li {
  counter-increment: toc;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-toc li:last-child {
  border-bottom: none;
}

.legal-toc a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.6875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
}

.legal-toc a::before {
  content: counter(toc, decimal-leading-zero) '. ';
  color: var(--yellow);
}

.legal-toc a:hover {
  color: var(--white);
}

.legal-content h2 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  margin: 2.5rem 0 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  scroll-margin-top: 1.5rem;
}

.legal-content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content h3 {
  font-size: 0.875rem;
  font-weight: 700;
  margin: 1.5rem 0 0.75rem;
  color: var(--white);
}

.legal-content p {
  font-size: 0.8125rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
  margin: 0 0 1.25rem 1.25rem;
  font-size: 0.8125rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.58);
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover {
  color: var(--yellow);
}

.legal-highlight {
  background: var(--gray);
  border-left: 3px solid var(--yellow);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .legal-toc {
    position: static;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-nav {
    align-items: center;
  }
}

.review-header .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  flex-wrap: wrap;
}

.review-header .site-header-brand {
  flex: 1;
  min-width: 200px;
}

.review-header .back-link {
  align-self: center;
}

.back-link {
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.back-link:hover {
  color: var(--yellow);
}

.review-hero {
  padding: 2rem 0 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.review-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.review-hero.pmu::before {
  background: linear-gradient(135deg, rgba(0, 230, 118, 0.08) 0%, transparent 55%);
}

.review-hero.pokerstars::before {
  background: linear-gradient(135deg, rgba(232, 0, 61, 0.1) 0%, transparent 55%);
}

.review-hero.feeling::before {
  background: linear-gradient(135deg, rgba(255, 230, 0, 0.08) 0%, transparent 55%);
}

.review-hero.betclic::before {
  background: linear-gradient(135deg, rgba(0, 87, 255, 0.1) 0%, transparent 55%);
}

.review-hero.olybet::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 55%);
}

.breadcrumb {
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.25rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.45);
}

.breadcrumb a:hover {
  color: var(--yellow);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.25);
  margin: 0 0.5rem;
}

.review-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(3rem, 10vw, 5.5rem);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin-bottom: 0.75rem;
  position: relative;
}

.review-hero.pmu .review-title {
  color: #00e676;
}

.review-hero.pokerstars .review-title {
  color: var(--red);
}

.review-hero.feeling .review-title {
  color: var(--yellow);
}

.review-hero.betclic .review-title {
  color: #4d9fff;
}

.review-tagline {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 50ch;
  margin-bottom: 1.5rem;
  position: relative;
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  position: relative;
}

.review-meta span {
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.4rem 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.review-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
  padding: 3rem 0 4rem;
}

.review-main h2 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  margin: 2.5rem 0 1rem;
  letter-spacing: -0.02em;
}

.review-main h2:first-child {
  margin-top: 0;
}

.review-main p {
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

.review-list {
  list-style: none;
  margin: 1rem 0 1.5rem;
}

.review-list li {
  font-size: 0.8125rem;
  padding: 0.5rem 0 0.5rem 1.25rem;
  position: relative;
  color: rgba(255, 255, 255, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.review-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--yellow);
}

.review-verdict {
  background: var(--gray);
  border-left: 3px solid var(--yellow);
  padding: 1.25rem 1.5rem;
  margin-top: 2rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
}

.review-sidebar {
  position: sticky;
  top: 1.5rem;
}

.sidebar-box {
  background: var(--gray);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.sidebar-box h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}

.fact-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.75rem;
}

.fact-row:last-child {
  border-bottom: none;
}

.fact-row dt {
  color: rgba(255, 255, 255, 0.4);
}

.fact-row dd {
  color: var(--white);
  text-align: right;
}

.sidebar-cta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-cta .btn {
  width: 100%;
}

.other-links {
  list-style: none;
}

.other-links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.other-links a {
  display: block;
  padding: 0.625rem 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}

.other-links a:hover {
  color: var(--yellow);
}

@media (max-width: 900px) {
  .review-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .review-sidebar {
    position: static;
  }

  .container {
    width: min(100% - 2rem, var(--max));
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    text-align: left;
  }

  .license-strip {
    padding: 1rem;
    font-size: 0.625rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero-bg-number {
    display: none;
  }

  .info-strip-grid {
    grid-template-columns: 1fr 1fr;
  }

  .editorial-grid,
  .topic-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .age-actions {
    flex-direction: column;
  }

  .age-actions .btn {
    width: 100%;
  }

  .platform-grid {
    grid-template-columns: 1fr;
  }

  .info-strip-grid {
    grid-template-columns: 1fr;
  }
}
