:root {
  --domendomen-cream: #fffaf0;
  --domendomen-white: #ffffff;
  --domendomen-tangerine: #ff8a3d;
  --domendomen-tangerine-deep: #f57420;
  --domendomen-lime: #7cc04a;
  --domendomen-lime-deep: #5fa130;
  --domendomen-lemon: #fbcf3b;
  --domendomen-lemon-deep: #f0bd1f;
  --domendomen-cocoa: #3a2a18;
  --domendomen-clay: #7a6448;
  --domendomen-shadow: 0 22px 48px rgba(122, 100, 72, 0.14);
  --domendomen-shadow-soft: 0 12px 26px rgba(122, 100, 72, 0.1);
  --domendomen-radius: 22px;
  --domendomen-shell: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito", sans-serif;
  background: var(--domendomen-cream);
  color: var(--domendomen-cocoa);
  line-height: 1.65;
}

img {
  display: block;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.domendomen-page {
  position: relative;
  min-height: 100vh;
  overflow-x: clip;
}

.domendomen-page::before,
.domendomen-page::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: 0;
}

.domendomen-page::before {
  top: -76px;
  left: -76px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 138, 61, 0.18);
}

.domendomen-page::after {
  right: -40px;
  bottom: -40px;
  width: 260px;
  height: 130px;
  background: rgba(124, 192, 74, 0.16);
  border-radius: 130px 130px 0 0;
}

.domendomen-shell {
  position: relative;
  z-index: 1;
  width: min(var(--domendomen-shell), calc(100% - 32px));
  margin: 0 auto;
}

.domendomen-eyebrow {
  margin: 0 0 12px;
  font: 700 0.82rem/1 "Quicksand", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--domendomen-tangerine-deep);
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  font-family: "Quicksand", sans-serif;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.35rem, 5vw, 4.7rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 16px;
  color: var(--domendomen-clay);
}

.domendomen-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 18px 0;
  transition: padding 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.domendomen-header.domendomen-is-scrolled {
  background: rgba(255, 250, 240, 0.94);
  box-shadow: 0 10px 24px rgba(58, 42, 24, 0.08);
  padding: 10px 0;
}

.domendomen-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.domendomen-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  color: var(--domendomen-cocoa);
}

.domendomen-brand-mark-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--domendomen-white);
  border: 2px solid var(--domendomen-tangerine);
  box-shadow: var(--domendomen-shadow-soft);
}

.domendomen-brand-text {
  font-size: 1.2rem;
}

.domendomen-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.domendomen-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.domendomen-nav a:hover,
.domendomen-nav a:focus-visible {
  background: var(--domendomen-tangerine);
  color: var(--domendomen-white);
}

.domendomen-burger {
  display: none;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: var(--domendomen-cocoa);
  padding: 10px 0 10px 12px;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  cursor: pointer;
}

.domendomen-burger span:not(.domendomen-burger-label) {
  display: block;
  width: 20px;
  height: 2px;
  margin-bottom: 4px;
  border-radius: 999px;
  background: currentColor;
}

.domendomen-burger span:last-child {
  margin-bottom: 0;
}

.domendomen-hero,
.domendomen-inner-hero {
  position: relative;
  padding: 42px 0 48px;
}

.domendomen-hero::before,
.domendomen-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.domendomen-hero::before {
  top: 32px;
  right: 18%;
  width: 82px;
  height: 82px;
  background: rgba(251, 207, 59, 0.34);
}

.domendomen-hero::after {
  left: 6%;
  bottom: 22px;
  width: 64px;
  height: 64px;
  background: rgba(124, 192, 74, 0.24);
}

.domendomen-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(290px, 0.95fr);
  gap: 28px;
  align-items: end;
}

.domendomen-hero-copy {
  background: rgba(255, 255, 255, 0.7);
  padding: 28px;
  border-radius: 28px;
  box-shadow: var(--domendomen-shadow-soft);
}

.domendomen-hero-lead {
  font-size: 1.08rem;
  max-width: 62ch;
}

.domendomen-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.domendomen-button,
.domendomen-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.domendomen-button {
  background: var(--domendomen-tangerine);
  color: var(--domendomen-white);
}

.domendomen-button:hover,
.domendomen-button:focus-visible {
  background: var(--domendomen-lime);
  color: var(--domendomen-cocoa);
}

.domendomen-link-button {
  background: transparent;
  border-color: var(--domendomen-lime);
  color: var(--domendomen-cocoa);
}

.domendomen-link-button:hover,
.domendomen-link-button:focus-visible {
  background: var(--domendomen-lemon);
}

.domendomen-button-small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.83rem;
}

.domendomen-button-ghost {
  background: transparent;
  color: var(--domendomen-cocoa);
  border-color: rgba(58, 42, 24, 0.2);
}

.domendomen-button-ghost:hover,
.domendomen-button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.75);
  color: var(--domendomen-cocoa);
}

.domendomen-hero-pills {
  display: grid;
  gap: 16px;
}

.domendomen-pill-card,
.domendomen-author-card,
.domendomen-card,
.domendomen-news-card,
.domendomen-legal-card,
.domendomen-rg-panel,
.domendomen-hero-copy {
  background: var(--domendomen-white);
  border: 2px solid var(--domendomen-tangerine);
  border-radius: var(--domendomen-radius);
  box-shadow: var(--domendomen-shadow);
}

.domendomen-pill-card {
  padding: 22px;
}

.domendomen-pill-card-tangerine {
  border-color: var(--domendomen-tangerine);
}

.domendomen-pill-card-lime {
  border-color: var(--domendomen-lime);
}

.domendomen-pill-card-lemon {
  border-color: var(--domendomen-lemon-deep);
}

.domendomen-pill-rank {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--domendomen-cream);
  color: var(--domendomen-cocoa);
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
}

.domendomen-section {
  padding: 42px 0;
}

.domendomen-section-tight {
  padding-top: 18px;
}

.domendomen-section-cream {
  background: rgba(255, 255, 255, 0.55);
}

.domendomen-section-lime {
  background: linear-gradient(180deg, rgba(124, 192, 74, 0.12), rgba(255, 250, 240, 0.8));
}

.domendomen-section-news {
  padding-bottom: 64px;
}

.domendomen-section-heading {
  margin-bottom: 24px;
  text-align: center;
}

.domendomen-section-heading-left {
  text-align: left;
}

.domendomen-author-grid,
.domendomen-grid,
.domendomen-news-feed,
.domendomen-legal-wrap,
.domendomen-footer-grid {
  display: grid;
  gap: 20px;
}

.domendomen-author-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 24px;
}

.domendomen-author-card,
.domendomen-news-card,
.domendomen-legal-card {
  padding: 24px;
}

.domendomen-author-role {
  margin-bottom: 10px;
  color: var(--domendomen-tangerine-deep);
  font-weight: 700;
}

.domendomen-prose,
.domendomen-prose-wide {
  max-width: 72ch;
}

.domendomen-prose-wide {
  max-width: 88ch;
}

.domendomen-casino-list {
  display: grid;
  gap: 18px;
}

.domendomen-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.domendomen-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 44px rgba(58, 42, 24, 0.12);
}

.domendomen-card-top,
.domendomen-card-actions,
.domendomen-score-wrap,
.domendomen-cookie-actions,
.domendomen-age-actions,
.domendomen-footer-links,
.domendomen-footer-legal {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.domendomen-card-top {
  justify-content: space-between;
}

.domendomen-rank-badge,
.domendomen-badge,
.domendomen-rating,
.domendomen-age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 7px 14px;
  border-radius: 999px;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
}

.domendomen-rank-badge {
  background: var(--domendomen-tangerine);
  color: var(--domendomen-white);
}

.domendomen-badge {
  background: rgba(251, 207, 59, 0.3);
  color: var(--domendomen-cocoa);
}

.domendomen-rating,
.domendomen-age-badge {
  background: rgba(124, 192, 74, 0.24);
  color: var(--domendomen-cocoa);
}

.domendomen-offer-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
  min-height: 44px;
  padding: 8px 16px;
  border-radius: 14px;
  border: 2px solid transparent;
  background: var(--domendomen-white);
  box-shadow: var(--domendomen-shadow-soft);
  font-family: "Quicksand", sans-serif;
  font-size: clamp(0.95rem, 2.4vw, 1.12rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  white-space: nowrap;
}

.domendomen-offer-brand-jackpotjoy {
  color: #ff6a00;
  border-color: rgba(255, 106, 0, 0.28);
  background: linear-gradient(180deg, #fff, #fff4e8);
}

.domendomen-offer-brand-jackpotjoy span {
  color: #f0b400;
}

.domendomen-offer-brand-888 {
  color: #007a3d;
  border-color: rgba(0, 122, 61, 0.24);
  background: linear-gradient(180deg, #fff, #f0faf4);
}

.domendomen-offer-brand-888 .domendomen-offer-brand-num {
  margin-right: 1px;
  color: #005c2e;
  font-size: 1.08em;
}

.domendomen-offer-brand-jackpotcity {
  color: #6d1ed4;
  border-color: rgba(109, 30, 212, 0.22);
  background: linear-gradient(180deg, #fff, #f7f0ff);
}

.domendomen-offer-brand-jackpotcity span {
  color: #d4a017;
}

.domendomen-offer-brand-betvictor {
  color: #1a2744;
  border-color: rgba(227, 24, 55, 0.22);
  background: linear-gradient(180deg, #fff, #fff5f6);
}

.domendomen-offer-brand-betvictor span {
  color: #e31837;
}

.domendomen-offer-brand-lottomart {
  color: #e91e8c;
  border-color: rgba(233, 30, 140, 0.24);
  background: linear-gradient(180deg, #fff, #fff0f8);
}

.domendomen-offer-brand-lottomart span {
  color: #7c3aed;
}

.domendomen-bonus-text {
  margin: 0;
  font-family: "Quicksand", sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--domendomen-cocoa);
}

.domendomen-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.domendomen-pill-row span {
  display: inline-flex;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 138, 61, 0.14);
  color: var(--domendomen-cocoa);
  font-size: 0.92rem;
  font-weight: 700;
}

.domendomen-disclaimer {
  margin: 0;
  font-size: 0.92rem;
}

.domendomen-grid-payments {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.95fr);
  align-items: start;
}

.domendomen-table-wrap {
  border-radius: var(--domendomen-radius);
  background: var(--domendomen-white);
  border: 2px solid var(--domendomen-tangerine);
  box-shadow: var(--domendomen-shadow);
}

.domendomen-payment-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

.domendomen-payment-table th,
.domendomen-payment-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(58, 42, 24, 0.1);
}

.domendomen-payment-table th {
  color: var(--domendomen-cocoa);
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  background: rgba(251, 207, 59, 0.22);
}

.domendomen-timeline {
  position: relative;
  display: grid;
  gap: 18px;
  padding-left: 24px;
}

.domendomen-timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 7px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--domendomen-tangerine), var(--domendomen-lime));
}

.domendomen-timeline-item {
  position: relative;
  padding: 20px 22px 20px 28px;
  border-radius: var(--domendomen-radius);
  background: var(--domendomen-white);
  border: 2px solid var(--domendomen-tangerine);
  box-shadow: var(--domendomen-shadow-soft);
}

.domendomen-timeline-item::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 28px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--domendomen-lemon);
  border: 4px solid var(--domendomen-white);
  box-shadow: 0 0 0 2px var(--domendomen-tangerine);
}

.domendomen-rg-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(250px, 0.8fr);
  gap: 22px;
  align-items: start;
}

.domendomen-rg-panel {
  padding: 24px;
}

.domendomen-rg-stat {
  display: grid;
  gap: 10px;
  justify-items: start;
  margin-bottom: 18px;
}

.domendomen-rg-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--domendomen-tangerine);
  color: var(--domendomen-white);
  font-family: "Quicksand", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
}

.domendomen-rg-links {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.domendomen-rg-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 250, 240, 0.9);
  border: 1px solid rgba(58, 42, 24, 0.1);
}

.domendomen-news-feed {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.domendomen-news-date {
  margin-bottom: 10px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--domendomen-tangerine-deep);
}

.domendomen-legal-wrap {
  grid-template-columns: 1fr;
}

.domendomen-legal-card h2 {
  font-size: 1.3rem;
}

.domendomen-footer {
  position: relative;
  z-index: 1;
  padding: 34px 0 48px;
  background: #fff2d8;
  border-top: 2px solid rgba(255, 138, 61, 0.34);
}

.domendomen-footer-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  align-items: start;
}

.domendomen-footer-authority,
.domendomen-footer-brand {
  padding: 24px;
  border-radius: var(--domendomen-radius);
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(255, 138, 61, 0.34);
}

.domendomen-footer-links a,
.domendomen-footer-legal a {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(124, 192, 74, 0.15);
}

.domendomen-brand-footer {
  margin-bottom: 16px;
}

.domendomen-cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 35;
  width: min(360px, calc(100% - 24px));
  padding: 18px;
  border-radius: 20px;
  background: var(--domendomen-white);
  border: 2px solid var(--domendomen-tangerine);
  box-shadow: var(--domendomen-shadow);
}

.domendomen-cookie-banner p {
  margin-bottom: 14px;
}

.domendomen-age-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 80px;
  padding: 18px 20px;
  border-radius: 20px;
  background: var(--domendomen-white);
  border: 2px solid var(--domendomen-tangerine);
  box-shadow: var(--domendomen-shadow);
}

.domendomen-age-box {
  width: min(100%, calc(100% - 12px)) !important;
  margin-block: 0 auto !important;
}

.domendomen-age-bar p:last-child {
  margin-bottom: 0;
}

.domendomen-top-button {
  position: fixed;
  right: 24px;
  bottom: 124px;
  z-index: 28;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: var(--domendomen-lime);
  color: var(--domendomen-cocoa);
  font-size: 1.35rem;
  font-weight: 700;
  box-shadow: var(--domendomen-shadow-soft);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, background-color 0.2s ease;
}

.domendomen-top-button.domendomen-is-visible {
  opacity: 1;
  pointer-events: auto;
}

.domendomen-top-button:hover,
.domendomen-top-button:focus-visible {
  background: var(--domendomen-lemon);
}

[data-domendomen-lazy] {
  opacity: 0;
  transition: opacity 0.3s ease;
}

[data-domendomen-lazy].domendomen-is-ready {
  opacity: 1;
}

@media (max-width: 980px) {
  .domendomen-hero-grid,
  .domendomen-grid-payments,
  .domendomen-rg-grid,
  .domendomen-footer-grid,
  .domendomen-author-grid,
  .domendomen-news-feed {
    grid-template-columns: 1fr;
  }

  .domendomen-header-inner {
    align-items: flex-start;
    position: relative;
  }

  .domendomen-burger {
    display: inline-flex;
    flex-direction: column;
  }

  .domendomen-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 60;
    padding: 14px;
    border-radius: 20px;
    background: rgba(255, 250, 240, 0.98);
    box-shadow: var(--domendomen-shadow);
  }

  .domendomen-nav.domendomen-is-open {
    display: grid;
    gap: 8px;
  }

  .domendomen-age-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .domendomen-hero,
  .domendomen-inner-hero,
  .domendomen-section {
    padding: 28px 0;
  }

  .domendomen-header {
    padding-top: 12px;
  }

  .domendomen-hero-copy,
  .domendomen-author-card,
  .domendomen-card,
  .domendomen-news-card,
  .domendomen-legal-card,
  .domendomen-rg-panel,
  .domendomen-footer-authority,
  .domendomen-footer-brand {
    padding: 18px;
  }

  .domendomen-brand-text {
    font-size: 1rem;
  }
}

@media (max-width: 550px) {
  html, body { overflow-x: hidden; max-width: 100%; }
  .domendomen-page * { max-width: 100%; }
  .domendomen-casino-list, .domendomen-grid { grid-template-columns: 1fr !important; }
  .domendomen-card { flex-direction: column !important; min-width: 0; }
  .domendomen-card * { min-width: 0; max-width: 100%; }
  .domendomen-card-top { flex-wrap: wrap; gap: 8px; }
  .domendomen-offer-brand {
    flex: 1 1 100%;
    justify-content: flex-start;
    white-space: normal;
    text-align: left;
  }
  .domendomen-cta-btn, .domendomen-button {
    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; }
  .domendomen-card:hover { transform: none !important; }
  .domendomen-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 60;
    width: 100%; min-width: 0; max-width: 100%; box-sizing: border-box;
  }
  .domendomen-header-inner { position: relative; }
  table { table-layout: auto; width: max-content; min-width: 100%; }
  .domendomen-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  thead th { white-space: nowrap; }
  td { word-break: normal; overflow-wrap: break-word; hyphens: none; }
}
@media (max-width: 380px) {
  h1 { font-size: clamp(1.1rem, 7vw, 1.5rem) !important; }
  .domendomen-offer-brand { font-size: 0.92rem; padding: 7px 12px; min-height: 38px; }
  .domendomen-bonus-text { font-size: 0.85rem; }
}
