:root {
  --brand: #d6a84a;
  --accent: #7e9b62;
  --bg: #1d2119;
  --text: #e0e0e0;
  --muted: #a7aa9d;
  --nav-bg: linear-gradient(105deg, #252b1d 0%, #343a26 52%, #202519 100%);
  --card-bg: #2a3021;
  --section-bg: #23291c;
  --border: #596044;
  --footer-bg: #141810;
  --footer-text: #e7e4d6;
  --footer-link: #d6a84a;
  --login-c: #d6a84a;
  --register-c: #7e9b62;
  --cta-bg: #d6a84a;
  --cta-text: #1b1d16;
  --font-body: "Arial", sans-serif;
  --font-heading: "Georgia", serif;
  --radius: 30px 5px 30px 5px;
  --radius-soft: 18px 4px 18px 4px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background:
    repeating-radial-gradient(circle at 18% 12%, rgba(214, 168, 74, 0.045) 0 1px, transparent 1px 16px),
    linear-gradient(135deg, #1b2018 0%, #20261b 48%, #171b14 100%);
}

body {
  min-width: 320px;
  margin: 0;
  padding-top: 60px;
  color: var(--text);
  background:
    repeating-radial-gradient(circle at 82% 25%, rgba(126, 155, 98, 0.055) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(125deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 11px),
    linear-gradient(135deg, var(--bg) 0%, #252b1e 50%, #1a1f17 100%);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

main[data-nav-element] {
  display: block;
  min-height: 60vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.65em;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
}

h4 {
  font-size: 1.2rem;
}

h5 {
  font-size: 1.05rem;
}

h6 {
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

p {
  margin: 0 0 1.2rem;
  color: var(--text);
}

a {
  color: var(--brand);
  text-decoration-color: rgba(214, 168, 74, 0.45);
  text-underline-offset: 0.16em;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

a:hover {
  color: #f3d481;
  text-decoration-color: currentColor;
}

strong,
b {
  color: #fff;
  font-weight: 700;
}

em {
  color: #e4c979;
}

.x-setvalue,
#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: 60px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 5%;
  color: var(--text);
  background: var(--nav-bg);
  border-bottom: 1px solid rgba(214, 168, 74, 0.22);
  font-size: 14px;
  will-change: transform;
  contain: layout style;
}

.x-setvalue::after,
#mainNav::after {
  position: absolute;
  right: 5%;
  bottom: -1px;
  width: min(25vw, 250px);
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--brand), var(--accent));
  pointer-events: none;
}

.emoji-sm {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  color: #fff;
  text-decoration: none;
}

.emoji-sm img {
  width: auto;
  height: 34px;
  max-height: 34px;
  object-fit: contain;
  display: block;
}

.js-menu-links {
  display: flex;
  gap: 20px;
  margin-left: auto;
}

.js-menu-links a {
  color: var(--muted);
  text-decoration: none;
}

.js-menu-links a:hover {
  color: var(--brand);
}

.is-nav-buttons,
#navBtns {
  display: flex;
  align-items: center;
  gap: 10px;
}

.auth-link { display:inline-block; border:2px solid var(--login-c); color:var(--login-c); background:transparent; border-radius:var(--radius); text-decoration:none; cursor:pointer; }

.btn-start { display:inline-block; background:var(--register-c); color:#fff; border:none; border-radius:var(--radius); text-decoration:none; font-weight:700; cursor:pointer; }

.ui-invisible { display:inline-block; background:var(--cta-bg); color:var(--cta-text); border:none; border-radius:var(--radius); text-decoration:none; font-weight:bold; cursor:pointer; }

.auth-link,
.btn-start {
  padding: 7px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.15;
  white-space: nowrap;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.auth-link:hover {
  color: #1b1d16;
  background-color: var(--login-c);
  transform: translateY(-1px);
}

.btn-start:hover {
  color: #fff;
  background-color: #90ad70;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
}

.off-canvas {
  display: none;
}

.off-canvas.is-expanded {
  display: none;
}

.gay,
#closeMenu {
  display: none;
}

.ui-mobile-buttons,
#mobileBtns {
  display: none;
}

.waves-purple {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 300px;
  padding: 60px 5%;
  isolation: isolate;
  overflow: hidden;
  contain: layout;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 12%, rgba(230, 192, 101, 0.24) 0%, transparent 28%),
    radial-gradient(circle at 87% 82%, rgba(126, 155, 98, 0.32) 0%, transparent 34%),
    linear-gradient(120deg, #303a24 0%, #465033 42%, #252b1d 100%);
  background-position: center;
  background-size: cover;
}

.waves-purple::before {
  position: absolute;
  top: -125px;
  right: -80px;
  width: 390px;
  height: 390px;
  z-index: -1;
  content: "";
  opacity: 0.72;
  transform: rotate(24deg);
  border: 1px solid rgba(235, 211, 135, 0.28);
  border-radius: 58% 42% 64% 36% / 42% 60% 40% 58%;
  background:
    repeating-radial-gradient(circle at 35% 35%, rgba(255,255,255,0.12) 0 1px, transparent 1px 15px),
    linear-gradient(145deg, rgba(214, 168, 74, 0.28), rgba(126, 155, 98, 0.08));
  pointer-events: none;
}

.waves-purple::after {
  position: absolute;
  bottom: -58px;
  left: -5%;
  width: 112%;
  height: 115px;
  z-index: -1;
  content: "";
  transform: rotate(-2deg);
  border-radius: 50% 50% 0 0 / 40% 40% 0 0;
  background:
    repeating-linear-gradient(110deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 15px),
    linear-gradient(90deg, rgba(20, 24, 16, 0.82), rgba(51, 61, 38, 0.75));
  pointer-events: none;
}

.waves-purple:not([data-layout="split"]) {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.waves-purple:not([data-layout="split"]) .abs-lg {
  margin: 0 auto;
  text-align: center;
}

.waves-purple:not([data-layout="split"]) .ui-subtitle {
  margin: 12px auto 24px;
  text-align: center;
}

.waves-purple[data-layout="split"] {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.waves-purple .is-hero-text {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
}

.waves-purple .js-hero-image,
.waves-purple .pie-md {
  position: relative;
  z-index: 1;
  flex: 0 0 45%;
  width: 100%;
  max-width: 45%;
  height: auto;
  overflow: hidden;
  border: 1px solid rgba(238, 213, 139, 0.34);
  border-radius: 38px 7px 38px 7px;
  background: linear-gradient(145deg, rgba(214, 168, 74, 0.18), rgba(126, 155, 98, 0.16));
}

.waves-purple .js-hero-image img,
.waves-purple .pie-md img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.abs-lg {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.08;
  text-shadow: 0 2px 0 rgba(20, 24, 16, 0.3);
}

.abs-lg::after {
  display: block;
  width: 92px;
  height: 4px;
  margin-top: 16px;
  content: "";
  border-radius: 10px 2px 10px 2px;
  background: linear-gradient(90deg, var(--brand), #f1d17b, transparent);
}

.waves-purple:not([data-layout="split"]) .abs-lg::after {
  margin-right: auto;
  margin-left: auto;
}

.ui-subtitle {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 12px 0 24px;
  color: #e4e0d3;
  font-size: 17px;
  line-height: 1.65;
}

.purple-dial,
#heroCta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
}

.waves-purple:not([data-layout="split"]) .purple-dial,
.waves-purple:not([data-layout="split"]) #heroCta {
  justify-content: center;
}

.ui-invisible {
  padding: 14px 36px;
  font-size: 16px;
  line-height: 1.15;
  box-shadow: inset 0 -3px 0 rgba(63, 47, 16, 0.22);
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.ui-invisible:hover {
  color: var(--cta-text);
  background-color: #edc966;
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-block;
  padding: 11px 24px;
  color: #fff;
  border: 1px solid rgba(239, 219, 157, 0.7);
  border-radius: var(--radius-soft);
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(126,155,98,0.12));
  font-size: 14px;
  font-weight: 700;
  line-height: 1.15;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-ghost:hover {
  color: #1c2118;
  border-color: var(--brand);
  background-color: var(--brand);
  transform: translateY(-2px);
}

**Exploring styling options**

I'm considering using max height with hover/focus-within effects. It seems like I might need various section classes, and I could style them all with the :is selector, which is allowed. But am I right in thinking that elements without a custom class are okay? That could simplify things! I want to ensure that any exact required rule outputs character-for-character. I can add this later, and conflicts could arise, but I think I can manage those. No root needed.[data-section],
.article-wrap,
.js-toc,
.btn-close,
.fab-ripple,
.has-bonuses,
.ui-card-img,
.ui-rtp,
.news,
.has-pros-cons,
.x-shape,
.js-analysis,
.card-img,
.abs,
.is-disclosure,
.pie,
.el-kyc,
.gay-sm,
.el-user-experience,
.update-lg,
.ui-live-casino,
.ignored,
.js-responsible-gambling,
.future,
.el-money-realism,
.observe-sm,
.el-categories {
  position: relative;
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 38px 5%;
  contain: layout style;
}

[data-section]::before,
.article-wrap::before,
.js-analysis::before,
.el-user-experience::before {
  position: absolute;
  top: 0;
  left: 5%;
  width: min(280px, 42%);
  height: 3px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--brand), var(--accent), transparent);
  clip-path: polygon(0 50%, 8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%);
  opacity: 0.9;
}

[data-section]::after,
.js-analysis::after,
.el-user-experience::after {
  position: absolute;
  right: 5%;
  bottom: 8px;
  width: 70px;
  height: 70px;
  content: "";
  background:
    repeating-radial-gradient(circle at center, rgba(214, 168, 74, 0.35) 0 1px, transparent 2px 10px),
    conic-gradient(from 45deg, transparent, rgba(126, 155, 98, 0.16), transparent 55%);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  opacity: 0.5;
  pointer-events: none;
}

.article-wrap {
  max-width: 1000px;
  padding-top: 46px;
  padding-bottom: 56px;
  overflow: hidden;
}

.article-wrap > * {
  position: relative;
  z-index: 1;
}

.article-wrap::after {
  position: absolute;
  top: 50px;
  right: -72px;
  width: 180px;
  height: 180px;
  content: "";
  border: 1px solid rgba(214, 168, 74, 0.16);
  background:
    repeating-conic-gradient(from 15deg, rgba(126, 155, 98, 0.12) 0deg 8deg, transparent 8deg 18deg),
    radial-gradient(circle, rgba(214, 168, 74, 0.11), transparent 68%);
  transform: rotate(18deg);
  clip-path: polygon(50% 0, 100% 22%, 86% 78%, 50% 100%, 14% 78%, 0 22%);
  pointer-events: none;
}

.article-wrap:last-of-type,
main.article-wrap {
  padding-bottom: 60px;
}

.article-wrap h1,
.article-wrap h2,
.article-wrap h3,
.ui-heading {
  position: relative;
  width: fit-content;
  max-width: 100%;
  background: linear-gradient(110deg, #fff 12%, var(--brand) 48%, #c7dcaa 88%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.article-wrap h1 {
  font-size: clamp(1.9rem, 4vw, 2.35rem);
  margin-bottom: 0.75em;
}

.article-wrap h2,
.ui-heading {
  margin-top: 1.7em;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  padding-bottom: 12px;
}

.article-wrap h2::after,
.ui-heading::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: min(155px, 70%);
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--brand), var(--accent), transparent);
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}

.article-wrap h3 {
  margin-top: 1.5em;
  font-size: clamp(1.08rem, 2.4vw, 1.38rem);
}

.article-wrap h4,
.article-wrap h5,
.article-wrap h6 {
  color: #f5f2e5;
}

.article-wrap p {
  color: var(--text);
  line-height: 1.8;
}

.article-wrap a,
.btn-light,
.el-geo-links a {
  color: var(--brand);
  text-decoration-color: rgba(214, 168, 74, 0.38);
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.article-wrap a:hover,
.btn-light:hover,
.el-geo-links a:hover {
  color: #f4d17b;
  text-decoration-color: currentColor;
}

.article-wrap strong,
.article-wrap b {
  color: #fff;
  font-weight: 700;
}

.article-wrap ul,
.article-wrap ol {
  margin: 1.3rem 0 1.5rem;
  padding: 0;
  list-style: none;
}

.article-wrap ul li,
.article-wrap ol li {
  position: relative;
  margin: 0.65rem 0;
  padding: 0.35rem 0 0.35rem 2rem;
}

.article-wrap ul li::before {
  position: absolute;
  top: 0.86rem;
  left: 0.15rem;
  width: 10px;
  height: 10px;
  content: "";
  background: linear-gradient(135deg, var(--brand), var(--accent));
  transform: rotate(45deg);
  box-shadow: 0 0 0 4px rgba(214, 168, 74, 0.09);
}

.article-wrap ol {
  counter-reset: article-list;
}

.article-wrap ol li {
  counter-increment: article-list;
}

.article-wrap ol li::before {
  position: absolute;
  top: 0.28rem;
  left: 0;
  display: grid;
  width: 1.5rem;
  height: 1.5rem;
  place-items: center;
  content: counter(article-list);
  color: #1b1d16;
  background: linear-gradient(135deg, var(--brand), #efe0a5);
  border-radius: 50% 50% 50% 5%;
  font-size: 0.75rem;
  font-weight: 800;
}

.article-wrap blockquote {
  position: relative;
  margin: 2rem 0;
  padding: 1.7rem 2rem 1.5rem 4.5rem;
  overflow: hidden;
  color: #f4f0de;
  background:
    linear-gradient(118deg, rgba(214, 168, 74, 0.16), rgba(126, 155, 98, 0.09) 58%, rgba(31, 38, 25, 0.82)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 10px);
  border: 1px solid rgba(214, 168, 74, 0.38);
  border-left: 5px solid var(--brand);
  border-radius: var(--radius);
  contain: layout style;
  font-family: var(--font-heading);
  font-size: 1.12rem;
  line-height: 1.65;
}

.article-wrap blockquote::before {
  position: absolute;
  top: -18px;
  left: 14px;
  content: "“";
  color: var(--brand);
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 1;
  opacity: 0.42;
}

.article-wrap blockquote::after {
  position: absolute;
  right: -35px;
  bottom: -52px;
  width: 135px;
  height: 135px;
  content: "";
  background: conic-gradient(from 35deg, transparent, rgba(126, 155, 98, 0.3), transparent 60%);
  border-radius: 50%;
}

.article-wrap hr {
  height: 12px;
  margin: 2.4rem 0;
  border: 0;
  background:
    radial-gradient(circle, var(--brand) 0 2px, transparent 2.5px) center / 14px 8px repeat-x,
    linear-gradient(90deg, transparent, rgba(214, 168, 74, 0.55), rgba(126, 155, 98, 0.55), transparent) center / 100% 1px no-repeat;
}

.article-wrap figure {
  margin: 1.6rem 0;
}

.article-wrap figcaption,
.el-section-caption {
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

.article-wrap img,
.ui-section-img,
.js-hero-image,
.pie-md {
  max-width: 100%;
  height: auto;
  display: block;
}

.js-toc {
  margin-top: 26px;
  margin-bottom: 18px;
  padding: 22px 5%;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgba(214, 168, 74, 0.18), transparent 36%),
    linear-gradient(135deg, rgba(48, 58, 38, 0.95), rgba(35, 41, 28, 0.96));
  border: 1px solid rgba(89, 96, 68, 0.9);
  border-radius: var(--radius);
  contain: layout style;
}

.js-toc::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 110px;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--brand), var(--accent), transparent);
}

.js-toc::after {
  position: absolute;
  top: -34px;
  right: -20px;
  width: 105px;
  height: 105px;
  content: "";
  border: 1px solid rgba(214, 168, 74, 0.3);
  transform: rotate(45deg);
}

.js-toc-title {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.has-toc-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.has-toc-list li {
  margin: 0;
  padding: 0;
}

.has-toc-list a {
  display: block;
  padding: 8px 12px;
  color: var(--text);
  background: linear-gradient(90deg, rgba(214, 168, 74, 0.08), transparent 75%);
  border-left: 2px solid rgba(126, 155, 98, 0.65);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease, border-color 0.2s ease;
}

.has-toc-list a:hover {
  padding-left: 18px;
  color: var(--brand);
  border-left-color: var(--brand);
}

.article-wrap table,
.mjs,
.js-rtp-table,
.versus-table {
  width: 100%;
  margin: 1.5rem 0;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
  color: var(--text);
  background:
    linear-gradient(140deg, rgba(44, 52, 35, 0.96), rgba(33, 39, 27, 0.98)),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 9px);
  border: 1px solid var(--border);
  border-radius: var(--radius-soft);
}

.article-wrap th,
.mjs th,
.js-rtp-table th,
.versus-table th {
  padding: 13px 15px;
  color: #1b1d16;
  background: linear-gradient(100deg, var(--brand), #d8c36a 54%, #b9c478);
  font-family: var(--font-heading);
  font-size: 0.93rem;
  letter-spacing: 0.02em;
  text-align: left;
}

.article-wrap td,
.mjs td,
.js-rtp-table td,
.versus-table td {
  padding: 12px 15px;
  border-bottom: 1px solid rgba(89, 96, 68, 0.62);
}

.article-wrap tbody tr:nth-child(even),
.mjs tbody tr:nth-child(even),
.js-rtp-table tbody tr:nth-child(even),
.versus-table tbody tr:nth-child(even) {
  background: linear-gradient(90deg, rgba(126, 155, 98, 0.09), rgba(214, 168, 74, 0.035));
}

.article-wrap tbody tr,
.mjs tbody tr,
.js-rtp-table tbody tr,
.versus-table tbody tr {
  transition: background-color 0.2s ease, color 0.2s ease;
}

.article-wrap tbody tr:hover,
.mjs tbody tr:hover,
.js-rtp-table tbody tr:hover,
.versus-table tbody tr:hover {
  color: #fff;
  background: linear-gradient(90deg, rgba(214, 168, 74, 0.18), rgba(126, 155, 98, 0.14));
}

.article-wrap tbody tr:last-child td,
.mjs tbody tr:last-child td,
.js-rtp-table tbody tr:last-child td,
.versus-table tbody tr:last-child td {
  border-bottom: 0;
}

.js-image-hotel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 1.5rem 0;
  overflow: hidden;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-soft);
}

.js-image-hotel dt,
.js-image-hotel dd {
  min-width: 0;
  margin: 0;
  padding: 13px 16px;
}

.js-image-hotel dt {
  position: relative;
  color: #f3dda0;
  background:
    linear-gradient(115deg, rgba(214, 168, 74, 0.16), rgba(45, 53, 35, 0.98)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 8px);
  font-weight: 700;
}

.js-image-hotel dt::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  content: "";
  background: var(--brand);
  transform: rotate(45deg);
}

.js-image-hotel dd {
  background: linear-gradient(120deg, #293020, #20261a);
}

.cards-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 150px));
  justify-content: center;
  gap: 12px;
  margin: 1.5rem 0;
}

.is-grid { display: grid !important; grid-template-columns: repeat(4, 1fr) !important; gap: 14px; }
.is-grid > * { min-width: 0; max-width: 100%; overflow: hidden; }
@media (max-width: 768px) { .is-grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 480px) { .is-grid { grid-template-columns: repeat(2, 1fr) !important; } }

.card-game {
  display: block;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  background:
    linear-gradient(145deg, rgba(54, 63, 42, 0.98), rgba(32, 38, 26, 0.98)),
    repeating-radial-gradient(circle at 15% 10%, rgba(214, 168, 74, 0.08) 0 1px, transparent 1px 8px);
  border: 1px solid var(--border);
  border-radius: var(--radius-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  will-change: transform;
}

.article-wrap .card-game {
  max-width: 150px;
  text-align: center;
}

.card-game:hover {
  border-color: var(--brand);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transform: translateY(-4px);
}

.card-game a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.card-game img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}

.article-wrap .card-game img {
  max-height: 190px;
}

.card-game figcaption {
  overflow: hidden;
  padding: 8px 12px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.article-wrap .card-game figcaption {
  padding: 8px;
  color: #fff;
  font-size: 12px;
}

.abs-grid {
  margin-top: 22px;
  text-align: center;
}

.has-pros-cons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.is-pros,
.ui-cons {
  margin: 0;
  padding: 24px;
  overflow: hidden;
  border-radius: var(--radius);
  contain: layout style;
}

.is-pros {
  background:
    radial-gradient(circle at 90% 12%, rgba(126, 155, 98, 0.34), transparent 33%),
    linear-gradient(135deg, rgba(50, 75, 47, 0.88), rgba(35, 47, 31, 0.98));
  border: 1px solid rgba(126, 155, 98, 0.7);
}

.ui-cons {
  background:
    radial-gradient(circle at 90% 12%, rgba(214, 125, 74, 0.22), transparent 33%),
    linear-gradient(135deg, rgba(79, 48, 35, 0.75), rgba(49, 34, 27, 0.98));
  border: 1px solid rgba(185, 109, 73, 0.6);
}

.is-pros::before,
.ui-cons::before {
  position: absolute;
  top: -36px;
  right: -20px;
  width: 100px;
  height: 100px;
  content: "";
  border: 16px solid rgba(255,255,255,0.055);
  border-radius: 50%;
}

.is-pros h2,
.is-pros h3 {
  color: #d6edbb;
}

.ui-cons h2,
.ui-cons h3 {
  color: #ffc3a0;
}

.is-pros ul,
.ui-cons ul {
  margin-bottom: 0;
}

.is-pros li,
.ui-cons li {
  padding-left: 2rem;
}

.is-pros li::before,
.ui-cons li::before {
  position: absolute;
  top: 0.42rem;
  left: 0;
  display: grid;
  width: 1.3rem;
  height: 1.3rem;
  place-items: center;
  color: #1b1d16;
  font-size: 0.83rem;
  font-weight: 900;
}

.is-pros li::before {
  content: "✓";
  background: #acd187;
  border-radius: 50%;
  transform: none;
  box-shadow: none;
}

.ui-cons li::before {
  content: "×";
  color: #fff;
  background: #bd7355;
  border-radius: 50%;
  transform: none;
  box-shadow: none;
}

.card-img {
  padding-top: 38px;
  padding-bottom: 38px;
}

.qa-item {
  position: relative;
  margin: 12px 0;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(48, 57, 38, 0.98), rgba(34, 40, 27, 0.98)),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-soft);
  contain: layout style;
}

.qa-item::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  content: "";
  background: linear-gradient(var(--brand), var(--accent));
}

.faq-q {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 16px 54px 16px 21px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(214, 168, 74, 0.1), transparent 62%),
    var(--card-bg);
  cursor: pointer;
  font-size: 1.05rem;
}

.faq-q::after {
  position: absolute;
  top: 50%;
  right: 20px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  content: "+";
  color: #1d2119;
  background: linear-gradient(135deg, var(--brand), #ead591);
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 1.15rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 0.25s ease, background 0.25s ease;
}

.container-lg-answer {
  max-height: 0;
  padding: 0 22px;
  overflow: hidden;
  color: var(--text);
  opacity: 0;
  transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.25s ease;
}

.qa-item:hover .container-lg-answer,
.qa-item:focus-within .container-lg-answer {
  max-height: 700px;
  padding-top: 16px;
  padding-bottom: 18px;
  opacity: 1;
}

.qa-item:hover .faq-q::after,
.qa-item:focus-within .faq-q::after {
  content: "−";
  background: linear-gradient(135deg, var(--accent), #c4d991);
  transform: translateY(-50%) rotate(180deg);
}

.ui-author-block {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  margin: 28px 0;
  padding: 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgba(214, 168, 74, 0.2), transparent 38%),
    linear-gradient(135deg, #303824, #22281b);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  contain: layout style;
}

.ui-author-block::after {
  position: absolute;
  right: -24px;
  bottom: -35px;
  width: 105px;
  height: 105px;
  content: "";
  background: repeating-conic-gradient(rgba(214,168,74,0.17) 0deg 12deg, transparent 12deg 28deg);
  border-radius: 50%;
}

.el-author-photo,
.ui-team-avatar,
.ui-team-avatar-fallback {
  position: relative;
  z-index: 1;
  width: 76px;
  height: 76px;
  border: 3px solid var(--brand);
  border-radius: 50%;
}

.el-author-photo,
.ui-team-avatar {
  object-fit: cover;
}

.ui-team-avatar-fallback {
  display: grid;
  place-items: center;
  color: #1d2119;
  background: linear-gradient(135deg, var(--brand), #f0d68a);
  font-weight: 800;
}

.rounded-lg-md {
  position: relative;
  z-index: 1;
}

.has-author-name {
  display: block;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 800;
}

.has-author-role {
  display: block;
  color: var(--brand);
  font-size: 0.88rem;
}

.star-stat,
.author-bio {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.el-team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.lemon-queen-lg {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 9px;
  padding: 21px 14px;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(49, 58, 38, 0.98), rgba(33, 39, 27, 0.98)),
    repeating-radial-gradient(circle at 20% 20%, rgba(214,168,74,0.08) 0 1px, transparent 1px 9px);
  border: 1px solid var(--border);
  border-radius: var(--radius-soft);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.lemon-queen-lg:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
}

.ui-team-avatar-fallback[data-color-idx="0"] { background: linear-gradient(135deg, #d6a84a, #f2dd94); }
.ui-team-avatar-fallback[data-color-idx="1"] { background: linear-gradient(135deg, #7e9b62, #c2d890); }
.ui-team-avatar-fallback[data-color-idx="2"] { background: linear-gradient(135deg, #b96e58, #edb092); }
.ui-team-avatar-fallback[data-color-idx="3"] { background: linear-gradient(135deg, #728e99, #b4d9df); }
.ui-team-avatar-fallback[data-color-idx="4"] { background: linear-gradient(135deg, #98738f, #dbb4d1); }
.ui-team-avatar-fallback[data-color-idx="5"] { background: linear-gradient(135deg, #a1804e, #e6c788); }
.ui-team-avatar-fallback[data-color-idx="6"] { background: linear-gradient(135deg, #628b78, #a8d4af); }

.digest,
.is-rtp-chart,
.bar-chart {
  margin: 1.5rem 0;
  padding: 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgba(126, 155, 98, 0.19), transparent 35%),
    linear-gradient(135deg, rgba(44, 53, 34, 0.96), rgba(30, 36, 24, 0.98));
  border: 1px solid var(--border);
  border-radius: var(--radius-soft);
  contain: layout style;
}

.digest::before,
.is-rtp-chart::before,
.bar-chart::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 42%;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--accent), var(--brand), transparent);
}

.el-speed-row,
.mjs-sm,
.metric-row {
  display: grid;
  grid-template-columns: minmax(100px, 0.9fr) minmax(100px, 2fr) 48px;
  gap: 12px;
  align-items: center;
  margin: 12px 0;
}

.shape,
.is-rtp-label,
.eval-label {
  color: #e7e4d6;
  font-size: 0.86rem;
  font-weight: 700;
}

.el-speed-bar,
.is-rtp-bar,
.news-sm {
  position: relative;
  display: block;
  height: 12px;
  overflow: hidden;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.09) 0 1px, transparent 1px 20%),
    #171c13;
  border: 1px solid rgba(126, 155, 98, 0.32);
  border-radius: 999px;
}

.el-speed-bar::before,
.is-rtp-bar::before,
.news-sm::before,
.news-sm span {
  display: block;
  width: calc(var(--v, 0) * 1%);
  height: 100%;
  content: "";
  background: linear-gradient(90deg, #af6655 0%, #d6a84a 46%, #92b76c 76%, #c8e79d 100%);
  border-radius: inherit;
  box-shadow: inset -2px 0 rgba(255,255,255,0.28);
  animation: bar-reveal 0.8s ease both;
}

.news-sm span {
  position: relative;
}

.el-speed-value,
.ui-btn-light,
.bar-value {
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: right;
}

.bar-chart {
  display: grid;
  gap: 9px;
}

.bar-chart dl,
.bar-chart dt,
.bar-chart dd {
  margin: 0;
}

.bar-chart > .eval-label,
.bar-chart > dt {
  margin-top: 8px;
}

.bar-chart > .news-sm,
.bar-chart > dd.news-sm {
  margin-bottom: 6px;
}

.bar-chart progress.news-sm {
  width: 100%;
  appearance: none;
}

.bar-chart progress.news-sm::-webkit-progress-bar {
  background: #171c13;
  border-radius: 999px;
}

.bar-chart progress.news-sm::-webkit-progress-value {
  background: linear-gradient(90deg, #af6655, var(--brand), #9fc777);
  border-radius: 999px;
}

.bar-chart progress.news-sm::-moz-progress-bar {
  background: linear-gradient(90deg, #af6655, var(--brand), #9fc777);
  border-radius: 999px;
}

.bar-chart table {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
}

.bar-chart td {
  padding: 8px 0;
  border: 0;
}

.bar-chart .news-sm {
  min-width: 120px;
}

@keyframes bar-reveal {
  from { transform: scaleX(0); transform-origin: left; }
  to { transform: scaleX(1); transform-origin: left; }
}

.btn-close,
.fab-ripple,
.has-bonuses,
.ui-card-img,
.ui-rtp,
.news,
.x-shape,
.pie,
.el-kyc,
.gay-sm,
.update-lg,
.ui-live-casino,
.ignored,
.js-responsible-gambling,
.future,
.el-money-realism,
.observe-sm,
.el-categories {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 0, rgba(214, 168, 74, 0.1), transparent 25%),
    linear-gradient(145deg, rgba(40, 47, 31, 0.7), rgba(28, 33, 24, 0.38));
  border-radius: var(--radius-soft);
}

.ignored {
  border-left: 4px solid #bd7355;
}

.js-responsible-gambling {
  border-left: 4px solid var(--accent);
}

.is-disclosure {
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 18px 5%;
  color: var(--muted);
  background:
    repeating-linear-gradient(135deg, rgba(214,168,74,0.06) 0 1px, transparent 1px 9px),
    linear-gradient(110deg, rgba(53, 47, 31, 0.8), rgba(34, 39, 26, 0.9));
  border: 1px dashed rgba(214, 168, 74, 0.45);
  border-radius: var(--radius-soft);
  font-size: 0.89rem;
}

.event-cjk-footer {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 64px 5% 28px;
  overflow: hidden;
  color: var(--footer-text);
  background:
    repeating-radial-gradient(circle at 10% 10%, rgba(214, 168, 74, 0.09) 0 1px, transparent 1px 13px),
    conic-gradient(from 225deg at 82% 15%, rgba(126, 155, 98, 0.22), transparent 28%, rgba(214, 168, 74, 0.11), transparent 60%),
    linear-gradient(135deg, var(--footer-bg), #202719 50%, #11150e);
  border-top: 1px solid rgba(214, 168, 74, 0.35);
  contain: layout style;
}

.event-cjk-footer::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 15px;
  content: "";
  background: linear-gradient(90deg, var(--accent), var(--brand), #ecdb90, var(--accent));
  clip-path: polygon(0 0, 100% 0, 100% 28%, 92% 100%, 84% 28%, 76% 100%, 68% 28%, 60% 100%, 52% 28%, 44% 100%, 36% 28%, 28% 100%, 20% 28%, 12% 100%, 0 28%);
  opacity: 0.}
@media(max-width:768px){.js-menu-links{display:none!important}.emoji-sm img{height:32px!important;max-height:32px!important}.is-nav-buttons{margin-left:auto!important}}
.cards-wrap{display:grid!important;grid-template-columns:repeat(auto-fill,minmax(110px,150px))!important;justify-content:center;gap:14px;margin:20px 0}.cards-wrap>*{max-width:150px!important;margin:0!important;text-align:center;overflow:hidden;border-radius:8px}.cards-wrap>* img{width:100%!important;height:auto!important;max-width:150px!important;max-height:200px!important;object-fit:cover;display:block}
.games-grid,.game-list,.games-list,.games-row,.arena-grid{display:grid!important;grid-template-columns:repeat(auto-fill,minmax(110px,150px))!important;justify-content:center;gap:14px;margin:20px 0}.games-grid>*,.game-list>*,.games-list>*,.games-row>*,.arena-grid>*,.game-card,.slot-card,.card.h-100,.review-card--active{max-width:150px!important;margin:0!important;text-align:center;overflow:hidden;border-radius:8px}
.toc{margin:20px 0;padding:16px 20px;border:1px solid #1e2530;border-radius:8px}.toc a{color:#8b5cf6;text-decoration:none}.toc a:hover{text-decoration:underline}
.img-float-left{float:left;margin:0 1em 1em 0}
.img-float-right{float:right;margin:0 0 1em 1em}
.img-center{display:block;margin-left:auto;margin-right:auto}