:root {
  --domendomen-bg-1: #0a1f17;
  --domendomen-bg-2: #102a1e;
  --domendomen-bg-3: #0d2519;
  --domendomen-card: #142a1f;
  --domendomen-copper: #b8864b;
  --domendomen-copper-soft: #d4a574;
  --domendomen-emerald: #1ca572;
  --domendomen-emerald-soft: #34d399;
  --domendomen-plum: #7a3a5a;
  --domendomen-plum-soft: #a04a73;
  --domendomen-ivory: #f3ead4;
  --domendomen-muted: #9eb8a5;
  --domendomen-border: rgba(184, 134, 75, 0.35);
  --domendomen-shadow: 0 20px 60px rgba(3, 10, 7, 0.35);
  --domendomen-radius: 12px;
  --domendomen-shell: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--domendomen-ivory);
  background:
    radial-gradient(circle at top left, rgba(122, 58, 90, 0.16), transparent 32%),
    radial-gradient(circle at top right, rgba(28, 165, 114, 0.12), transparent 28%),
    linear-gradient(180deg, var(--domendomen-bg-1), var(--domendomen-bg-2) 38%, var(--domendomen-bg-3));
  font-family: "Nunito Sans", sans-serif;
  line-height: 1.6;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto auto 0 0;
  width: min(38vw, 420px);
  height: min(46vw, 520px);
  pointer-events: none;
  opacity: 0.08;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: contain;
}

body::before {
  left: -5vw;
  bottom: 8vh;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 320'%3E%3Cpath fill='%23d4a574' d='M144 9c23 31 31 60 24 88-24-5-44-20-58-46-11 23-19 49-27 81-25-7-38-24-42-52-7-52 39-86 103-71ZM82 124c26 6 46 26 63 59-40 3-70 17-96 44-9-38 2-72 33-103Zm109 32c17 27 21 56 13 89-32-22-63-30-95-25 18-31 45-52 82-64ZM132 177c26 31 35 67 27 106-27-18-55-27-84-28 8-37 28-63 57-78Zm-17 80c18 17 26 33 26 49H88c2-18 12-35 27-49Z'/%3E%3C/svg%3E");
}

body::after {
  left: auto;
  right: -4vw;
  top: 10vh;
  bottom: auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 260 320'%3E%3Cpath fill='%231ca572' d='M65 50c17-20 39-34 65-41 17 44 14 79-11 106-25 27-52 42-80 43-6-42 3-78 26-108Zm125 2c29 23 45 55 47 94-34 4-64-10-91-40-25-27-33-57-23-92 27 5 49 18 67 38Zm-61 64c23 11 39 31 48 58-28 0-52 11-73 33-13-32-11-62 6-91 6-1 12-1 19 0Zm-26 54c16 15 25 36 26 63-27-8-52-7-76 4 7-29 23-51 50-67Z'/%3E%3C/svg%3E");
}

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

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

.domendomen-page * {
  box-sizing: border-box;
}

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

.domendomen-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(10, 31, 23, 0.82);
  border-bottom: 1px solid rgba(184, 134, 75, 0.2);
}

.domendomen-header.domendomen-header-scrolled {
  background: rgba(10, 31, 23, 0.96);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.domendomen-header-inner,
.domendomen-footer-strip,
.domendomen-cookie-inner,
.domendomen-hero-actions,
.domendomen-card-top,
.domendomen-pill-row,
.domendomen-age-actions,
.domendomen-cookie-actions,
.domendomen-counter-strip,
.domendomen-footer-links,
.domendomen-footer-rg {
  display: flex;
  align-items: center;
  gap: 14px;
}

.domendomen-header-inner,
.domendomen-footer-strip {
  justify-content: space-between;
}

.domendomen-header-inner {
  min-height: 78px;
}

.domendomen-brand img {
  filter: drop-shadow(0 0 18px rgba(212, 165, 116, 0.18));
}

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

.domendomen-nav a {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--domendomen-muted);
  transition: color 0.25s ease;
}

.domendomen-nav a:hover,
.domendomen-nav a:focus-visible,
.domendomen-text-link:hover {
  color: var(--domendomen-copper-soft);
}

.domendomen-burger {
  display: none;
  border: 1px solid var(--domendomen-border);
  background: rgba(20, 42, 31, 0.92);
  border-radius: 999px;
  width: 48px;
  height: 48px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.domendomen-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--domendomen-ivory);
}

.domendomen-hero,
.domendomen-section,
.domendomen-legal-hero {
  position: relative;
  padding: 84px 0;
}

.domendomen-section::before,
.domendomen-hero::before,
.domendomen-legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 240'%3E%3Cpath fill='%23f3ead4' d='M62 216c4-42 12-76 24-101 11-25 34-49 69-73-8 31-26 60-52 85 24-4 44 3 61 22-34 6-62 22-82 49-4 6-8 12-13 18H62Zm35-170c14-17 33-27 58-30-1 30-11 54-31 72-14-14-23-28-27-42Z'/%3E%3C/svg%3E") no-repeat top right / 200px,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 220'%3E%3Cpath fill='%23d4a574' d='M67 191c12-31 30-58 55-79 16-13 37-23 62-31-13 28-35 51-66 69 22-1 39 8 52 28-34-1-62 8-84 27-7 6-13 12-19 19H67ZM95 63c8-20 24-34 48-41 4 22-1 42-17 59-14-5-24-11-31-18Z'/%3E%3C/svg%3E") no-repeat bottom left / 180px;
}

.domendomen-hero-grid,
.domendomen-rg-grid,
.domendomen-grid,
.domendomen-legal-layout {
  display: grid;
  gap: 24px;
}

.domendomen-hero-grid {
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  min-height: 72vh;
}

.domendomen-kicker {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(184, 134, 75, 0.32);
  background: rgba(122, 58, 90, 0.18);
  color: var(--domendomen-copper-soft);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  line-height: 1.05;
  font-family: "Cormorant Garamond", serif;
  color: var(--domendomen-ivory);
}

h1 {
  font-size: clamp(1.28rem, 5vw, 4.8rem);
  font-style: italic;
  letter-spacing: 0.03em;
  max-width: 12ch;
}

h1 em {
  color: var(--domendomen-copper-soft);
}

h2 {
  font-size: clamp(1.24rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.08rem, 2vw, 1.6rem);
}

p,
li {
  margin: 0;
  color: var(--domendomen-muted);
}

.domendomen-hero-copy p,
.domendomen-legal-hero p {
  max-width: 62ch;
  font-size: 1.02rem;
}

.domendomen-cta-btn,
.domendomen-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.45rem;
  border-radius: 999px;
  border: 1px solid rgba(243, 234, 212, 0.18);
  background: linear-gradient(135deg, #b8864b 0%, #1ca572 100%);
  color: var(--domendomen-ivory);
  font-weight: 800;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 10px 24px rgba(28, 165, 114, 0.2);
}

.domendomen-cta-btn:hover,
.domendomen-button:hover {
  transform: scale(1.02);
  background: linear-gradient(135deg, #1ca572 0%, #b8864b 100%);
  box-shadow: 0 14px 26px rgba(184, 134, 75, 0.24);
}

.domendomen-text-link,
.domendomen-link-list a,
.domendomen-legal-article a,
.domendomen-footer a {
  color: var(--domendomen-copper-soft);
}

.domendomen-counter-strip {
  flex-wrap: wrap;
  margin-top: 28px;
}

.domendomen-counter-card,
.domendomen-story-card,
.domendomen-content-block,
.domendomen-rg-panel,
.domendomen-age-panel,
.domendomen-quote-block,
.domendomen-legal-article,
.domendomen-cookie-inner {
  border: 1px solid var(--domendomen-border);
  border-radius: var(--domendomen-radius);
  background:
    linear-gradient(180deg, rgba(20, 42, 31, 0.95), rgba(15, 37, 28, 0.96)),
    var(--domendomen-card);
  box-shadow: inset 0 0 0 1px rgba(28, 165, 114, 0.05), var(--domendomen-shadow);
}

.domendomen-counter-card {
  min-width: 170px;
  padding: 18px;
}

.domendomen-counter-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 2rem;
  color: var(--domendomen-copper-soft);
}

.domendomen-marquee {
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid var(--domendomen-border);
  border-bottom: 1px solid var(--domendomen-border);
  background: rgba(20, 42, 31, 0.66);
  border-radius: 999px;
}

.domendomen-marquee-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: domendomen-marquee 24s linear infinite;
}

.domendomen-marquee-track span {
  color: var(--domendomen-ivory);
  white-space: nowrap;
}

.domendomen-section-intro {
  margin-bottom: 28px;
}

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

.domendomen-story-card,
.domendomen-content-block,
.domendomen-quote-block,
.domendomen-legal-article {
  padding: 24px;
}

.domendomen-story-role {
  margin-bottom: 10px;
  color: var(--domendomen-copper-soft);
}

.domendomen-editorial-panel {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}

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

.domendomen-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border-radius: var(--domendomen-radius);
  border: 1px solid var(--domendomen-border);
  background: linear-gradient(180deg, rgba(20, 42, 31, 0.96), rgba(14, 34, 26, 0.96));
  box-shadow: inset 0 0 0 1px rgba(28, 165, 114, 0.06), var(--domendomen-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.domendomen-card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(212, 165, 116, 0.7);
  box-shadow: 0 26px 50px rgba(2, 7, 5, 0.35), 0 0 0 1px rgba(212, 165, 116, 0.2);
}

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

.domendomen-card-rank,
.domendomen-rating,
.domendomen-card-badge,
.domendomen-footer-badge,
.domendomen-age-badge,
.domendomen-stat-box strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.domendomen-card-rank {
  min-width: 56px;
  min-height: 56px;
  border: 1px solid rgba(212, 165, 116, 0.45);
  background: rgba(122, 58, 90, 0.18);
  color: var(--domendomen-copper-soft);
  font-weight: 800;
}

.domendomen-logo-wrap {
  width: 132px;
  height: 52px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(7, 19, 13, 0.75);
  border: 1px solid rgba(184, 134, 75, 0.18);
}

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

.domendomen-card-main {
  flex: 1 1 auto;
  min-width: 0;
}

.domendomen-card-top {
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.domendomen-card-badge,
.domendomen-rating,
.domendomen-footer-badge,
.domendomen-age-badge {
  padding: 6px 12px;
  font-size: 0.82rem;
}

.domendomen-card-badge,
.domendomen-age-badge {
  background: rgba(122, 58, 90, 0.22);
  color: var(--domendomen-copper-soft);
}

.domendomen-rating,
.domendomen-footer-badge {
  background: rgba(28, 165, 114, 0.18);
  color: var(--domendomen-emerald-soft);
  font-weight: 700;
}

.domendomen-bonus-text {
  margin-bottom: 12px;
  color: var(--domendomen-ivory);
  font-weight: 800;
}

.domendomen-pill-row {
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.domendomen-pill-row span,
.domendomen-link-list a {
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(212, 165, 116, 0.18);
  background: rgba(255, 255, 255, 0.02);
}

.domendomen-card-side {
  width: 220px;
  display: grid;
  gap: 10px;
}

.domendomen-disclaimer {
  font-size: 0.86rem;
}

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

.domendomen-method-step {
  position: relative;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 20px;
  padding: 0 0 0 12px;
}

.domendomen-method-step::before {
  content: "";
  position: absolute;
  left: 48px;
  top: 60px;
  bottom: -18px;
  width: 1px;
  background: linear-gradient(180deg, rgba(212, 165, 116, 0.75), rgba(28, 165, 114, 0));
}

.domendomen-method-step:last-child::before {
  display: none;
}

.domendomen-method-step > span,
.domendomen-stat-box {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--domendomen-border);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  background: rgba(122, 58, 90, 0.16);
  color: var(--domendomen-copper-soft);
  font-weight: 800;
}

.domendomen-rg-grid {
  grid-template-columns: 1.25fr 0.75fr;
}

.domendomen-rg-copy {
  display: grid;
  gap: 16px;
}

.domendomen-rg-panel {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.domendomen-stat-box {
  width: 100%;
  height: auto;
  min-height: 92px;
  border-radius: var(--domendomen-radius);
  padding: 14px;
  justify-content: flex-start;
  gap: 12px;
  background: rgba(7, 19, 13, 0.45);
}

.domendomen-stat-box span {
  color: var(--domendomen-muted);
}

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

.domendomen-quote-block blockquote {
  margin: 0 0 18px;
  padding-left: 18px;
  border-left: 3px solid var(--domendomen-copper);
  color: var(--domendomen-ivory);
  font-size: 1.25rem;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
}

.domendomen-legal-main {
  min-height: 100vh;
}

.domendomen-legal-hero {
  padding-bottom: 28px;
}

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

.domendomen-legal-article {
  display: grid;
  gap: 20px;
}

.domendomen-legal-article h2 {
  margin-bottom: 6px;
  font-size: clamp(1.12rem, 2vw, 1.6rem);
}

.domendomen-footer {
  padding: 28px 0 40px;
  border-top: 1px solid rgba(184, 134, 75, 0.22);
  background: rgba(6, 16, 11, 0.72);
}

.domendomen-footer-strip {
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.domendomen-footer-strip > p {
  max-width: 100%;
}

.domendomen-cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2147483645;
  padding: 14px;
}

.domendomen-cookie-inner {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 20px;
  justify-content: space-between;
}

.domendomen-button-ghost {
  background: transparent;
  border-color: rgba(243, 234, 212, 0.2);
  box-shadow: none;
}

.domendomen-age-panel {
  padding: 24px;
  text-align: center;
}

.domendomen-age-panel p {
  margin-bottom: 18px;
}

.domendomen-table-wrap {
  overflow-x: auto;
}

@keyframes domendomen-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 980px) {
  .domendomen-hero-grid,
  .domendomen-rg-grid,
  .domendomen-grid-authors {
    grid-template-columns: 1fr;
  }

  .domendomen-card {
    flex-wrap: wrap;
  }

  .domendomen-card-side {
    width: 100%;
  }

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

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

  .domendomen-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 60;
    min-width: 250px;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid var(--domendomen-border);
    border-radius: var(--domendomen-radius);
    background: rgba(10, 31, 23, 0.97);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

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

  .domendomen-cookie-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@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-logo-wrap { max-width: 120px; height: 36px; }
  .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-logo-wrap { max-width: 90px; height: 30px; }
  .domendomen-bonus-text { font-size: 0.85rem; }
}
