:root {
  --ink: #10211d;
  --muted: #60716c;
  --paper: #f7faf8;
  --soft: #edf4f0;
  --line: #dbe5df;
  --green: #0f6f58;
  --green-dark: #0a3f35;
  --gold: #dba842;
  --coral: #de6b57;
  --navy: #243b6b;
  --teal: #0c8c82;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(16, 33, 29, 0.12);
  --shadow-strong: 0 28px 80px rgba(16, 33, 29, 0.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, var(--paper) 460px),
    var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--green); }

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
}

.skip-link:focus { top: 14px; }

.notice-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 36px;
  padding: 7px 6vw;
  color: #d9e8e2;
  background: var(--green-dark);
  font-size: 0.82rem;
}

.notice-bar span {
  padding: 3px 8px;
  color: var(--green-dark);
  background: var(--gold);
  border-radius: 999px;
  font-weight: 900;
}

.notice-bar p { margin: 0; color: inherit; }

.language-choice-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 6vw;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.language-choice-label {
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.language-choice-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  justify-content: center;
}

.language-choice {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 68px;
  min-height: 34px;
  padding: 5px 8px;
  color: var(--ink);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  background: var(--paper);
  border: 1px solid rgba(15, 111, 88, 0.14);
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
}

.language-choice img {
  width: 26px;
  height: 20px;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(14, 29, 38, 0.08);
}

.language-choice-code::before {
  content: attr(data-code);
}

.language-choice:hover,
.language-choice.active {
  color: var(--green-dark);
  background: #e7f3ee;
  border-color: rgba(15, 111, 88, 0.34);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 6vw;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand,
.main-nav,
.hero-actions,
.casino-main,
.tags,
.section-heading,
.footer-bottom {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  flex: 0 0 auto;
  font-weight: 800;
  font-size: 1.12rem;
}

.brand-logo {
  display: block;
  width: 208px;
  max-width: 42vw;
  height: auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 8px;
  font-size: 0.78rem;
}

.main-nav {
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.88rem;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 11px;
  color: var(--muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  white-space: nowrap;
}

.main-nav a:hover {
  color: var(--green-dark);
  background: #e7f3ee;
  border-color: rgba(15, 111, 88, 0.16);
}

.header-cta,
.primary-button,
.secondary-button,
.review-button,
.search-box button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-cta,
.primary-button,
.search-box button {
  color: var(--white);
  background: var(--green);
}

.header-cta:hover,
.primary-button:hover,
.search-box button:hover,
.review-button:hover {
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(15, 111, 88, 0.22);
}

.hero {
  position: relative;
  min-height: clamp(600px, 82vh, 780px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image { object-fit: cover; }

.hero-overlay {
  background: linear-gradient(90deg, rgba(247, 250, 248, 0.98) 0%, rgba(247, 250, 248, 0.93) 42%, rgba(247, 250, 248, 0.2) 82%);
}

.hero-content {
  position: relative;
  width: min(720px, 88vw);
  margin-left: 6vw;
  padding: 52px 0 112px;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 700px;
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 7vw, 5.9rem);
  line-height: 0.93;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 { margin-bottom: 7px; font-size: 1.08rem; }

.hero-copy {
  max-width: 590px;
  margin-bottom: 26px;
  color: #30453f;
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.hero-primary-cta {
  min-width: 210px;
  background: var(--green-dark);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 22px;
}

.hero-badges span {
  padding: 8px 11px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(10, 63, 53, 0.12);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
}

.floating-casino-cta {
  position: fixed;
  right: 18px;
  bottom: 16px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  color: var(--green-dark);
  background: var(--gold);
  border: 1px solid rgba(10, 63, 53, 0.16);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  font-size: 0.86rem;
  font-weight: 900;
}

.floating-casino-cta:hover {
  color: var(--green-dark);
  transform: translateY(-2px);
}

.search-box {
  max-width: 620px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
}

.hero-panel {
  position: absolute;
  right: 6vw;
  bottom: 78px;
  z-index: 1;
  width: min(340px, 32vw);
  padding: 24px;
  color: var(--white);
  background: rgba(9, 31, 26, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(12px);
}

.hero-panel h2 {
  margin: 6px 0 10px;
  color: var(--white);
  font-size: 1.7rem;
}

.hero-panel p {
  color: #d4e4de;
}

.hero-panel a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--gold);
  font-weight: 900;
}

.panel-label {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.panel-score {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.panel-score strong {
  color: var(--gold);
  font-size: 2.4rem;
  line-height: 1;
}

.panel-score span {
  color: #d4e4de;
  font-size: 0.86rem;
  font-weight: 800;
}

.search-box label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.search-box div { display: flex; gap: 10px; }

.search-box input {
  min-width: 0;
  flex: 1;
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(1120px, 88vw);
  margin: -54px auto 72px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
}

.trust-strip div { padding: 24px; background: var(--white); }
.trust-strip strong { display: block; font-size: 1.85rem; }

.trust-notice {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 20px;
  width: min(1120px, 88vw);
  margin: 0 auto 32px;
  padding: 24px;
  background: #f7fbf8;
  border: 1px solid #cfe3d8;
  border-left: 6px solid var(--green-dark);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.trust-notice h2 { margin: 4px 0 0; font-size: clamp(1.4rem, 2vw, 2rem); }
.trust-notice p { margin: 0; color: var(--muted); }
.trust-notice .secondary-button { align-self: end; justify-self: start; }

.trust-strip span,
.bonus span,
.rating span,
.casino-card p,
.guide-grid p,
.news-grid p,
.site-footer p,
.intro-grid p,
.article-page p,
.article-page li,
.review-summary p {
  color: var(--muted);
}

.section-block,
.news-section,
.article-page {
  width: min(1120px, 88vw);
  margin: 0 auto 80px;
}

.section-block {
  scroll-margin-top: 110px;
}

.intelligence-suite {
  padding: 36px;
  background:
    linear-gradient(135deg, rgba(15, 111, 88, 0.09), rgba(219, 168, 66, 0.1)),
    var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.suite-header {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) 1.05fr;
  gap: 30px;
  align-items: end;
  margin-bottom: 24px;
}

.suite-header p:last-child {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 1.02rem;
}

.decision-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.85fr 1fr;
  gap: 16px;
}

.decision-card {
  min-height: 280px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(219, 229, 223, 0.92);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(16, 33, 29, 0.07);
}

.decision-card h3 {
  margin-bottom: 22px;
  font-size: 1.34rem;
}

.card-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.score-row {
  display: grid;
  grid-template-columns: 150px minmax(110px, 1fr) 38px;
  gap: 12px;
  align-items: center;
  margin-bottom: 15px;
}

.score-row span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.score-row strong {
  color: var(--green-dark);
  text-align: right;
}

.meter {
  height: 10px;
  overflow: hidden;
  background: #dce9e4;
  border-radius: 999px;
}

.meter i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--gold));
  border-radius: inherit;
}

.fit-list {
  display: grid;
  gap: 10px;
}

.fit-list div {
  padding: 15px;
  background: var(--soft);
  border-radius: 8px;
}

.fit-list strong,
.fit-list span {
  display: block;
}

.fit-list span {
  color: var(--muted);
  font-size: 0.92rem;
}

.evidence-card {
  color: var(--white);
  background: linear-gradient(145deg, var(--green-dark), #143f52);
  border-color: rgba(255, 255, 255, 0.1);
}

.evidence-card h3,
.evidence-card .card-kicker {
  color: var(--white);
}

.evidence-card .card-kicker {
  color: var(--gold);
}

.evidence-card ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 21px;
}

.evidence-card li {
  color: #d5e6df;
}

.section-heading {
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.market-context-note {
  max-width: 720px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.text-link {
  color: var(--green-dark);
  font-weight: 800;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) 1.1fr;
  gap: 36px;
  align-items: start;
}

.editorial-card {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(16, 33, 29, 0.06);
}

.editorial-card p { margin-bottom: 18px; }

.byline {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.avatar {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: var(--green-dark);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 900;
}

.byline strong,
.byline span {
  display: block;
}

.byline span {
  color: var(--muted);
  font-size: 0.9rem;
}

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

.casino-card {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr 210px 110px 144px;
  gap: 18px;
  align-items: center;
  padding: 18px;
  background: var(--white);
  border: 1px solid rgba(219, 229, 223, 0.92);
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(16, 33, 29, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.casino-card:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 111, 88, 0.28);
  box-shadow: var(--shadow);
}

.featured-card {
  border-color: rgba(15, 111, 88, 0.34);
  box-shadow: var(--shadow);
}

.card-ribbon {
  position: absolute;
  top: -13px;
  left: 18px;
  padding: 6px 10px;
  color: var(--green-dark);
  background: var(--gold);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.rank {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--green-dark);
  background: #e5f2ee;
  border-radius: 8px;
  font-weight: 900;
}

.casino-main { gap: 14px; }

.logo-tile {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 72px;
  height: 58px;
  color: var(--white);
  border-radius: 8px;
  font-weight: 900;
  font-size: 0.86rem;
}

.logo-tile.casino-logo {
  padding: 8px;
  color: var(--green-dark);
  background: #fff;
  border: 1px solid rgba(15, 111, 88, 0.14);
  box-shadow: 0 12px 26px rgba(14, 29, 38, 0.08);
  overflow: hidden;
}

.casino-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.casino-logo span {
  display: none;
}

span.notranslate:not(.logo-tile):not(.flag-frame):not(.guide-flag):not(.market-flag) {
  display: inline-block;
  margin-right: 0.18em;
  white-space: nowrap;
}

.emerald { background: var(--green); }
.coral { background: var(--coral); }
.navy { background: var(--navy); }
.gold { background: #b98220; }
.slate { background: #334155; }

.casino-card p { margin-bottom: 0; }

.tags {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.tags span {
  padding: 6px 9px;
  color: var(--green-dark);
  background: #eaf4f0;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.bonus strong,
.rating strong { display: block; font-size: 1.12rem; }

.review-button {
  color: var(--white);
  background: var(--ink);
}

.card-actions {
  display: grid;
  gap: 8px;
}

.small-link {
  color: var(--green-dark);
  font-size: 0.85rem;
  font-weight: 900;
  text-align: center;
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: -34px;
}

.geo-finder {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) 1.15fr;
  gap: 24px;
  align-items: start;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.geo-copy p:not(.eyebrow) {
  color: var(--muted);
}

.language-control {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

.language-control label {
  color: var(--green-dark);
  font-size: 0.86rem;
  font-weight: 900;
}

.language-control select {
  width: min(280px, 100%);
  height: 44px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
}

.flag-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.flag-option {
  display: block;
  min-height: 132px;
  padding: 16px;
  text-align: left;
  color: inherit;
  text-decoration: none;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.flag-option:hover,
.flag-option.active {
  transform: translateY(-2px);
  border-color: rgba(15, 111, 88, 0.36);
  box-shadow: var(--shadow);
}

.flag-option span,
.flag-option strong,
.flag-option small {
  display: block;
}

.flag-option span {
  margin-bottom: 12px;
  font-size: 2rem;
}

.flag-frame,
.guide-flag,
.directory-flag {
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(14, 29, 38, 0.08);
}

.flag-frame {
  width: 58px;
  height: 58px;
}

.flag-frame img,
.guide-flag img,
.directory-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.flag-option strong {
  margin-bottom: 3px;
  color: var(--green-dark);
  font-size: 0.98rem;
  line-height: 1.18;
}

.flag-option small {
  color: var(--muted);
  font-weight: 800;
}

.market-result {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-dark), #143f52);
  border-radius: 8px;
}

.market-result h3 {
  color: var(--white);
  font-size: 1.45rem;
}

.market-result p:not(.eyebrow) {
  max-width: 820px;
  margin-bottom: 0;
  color: #d7e7e1;
}

.market-result .detected-note {
  display: inline-flex;
  width: fit-content;
  margin-top: 14px;
  padding: 6px 10px;
  color: var(--green-dark);
  background: var(--gold);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
}

.geo-auto-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  width: min(1120px, calc(100% - 48px));
  margin: 28px auto;
  padding: 22px;
  background: linear-gradient(135deg, #0a3f35, #143f52);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.geo-auto-banner h2 {
  margin: 0 0 4px;
  color: var(--white);
  font-size: 1.45rem;
}

.geo-auto-banner p:not(.eyebrow) {
  margin: 0;
  color: #d7e7e1;
}

.geo-auto-banner .eyebrow {
  color: var(--gold);
}

.geo-auto-banner .market-flag {
  float: none;
  margin: 0;
}

.market-result .eyebrow {
  color: var(--gold);
}

.market-flag {
  float: left;
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  overflow: hidden;
  margin: 0 14px 20px 0;
  background: var(--white);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.market-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.country-directory,
.country-directory-preview {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.directory-intro {
  max-width: 820px;
  margin: -12px 0 24px;
  color: var(--muted);
}

.local-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 24px;
}

.local-guide-card {
  display: grid;
  grid-template-columns: 96px 1fr 24px;
  align-items: center;
  min-height: 82px;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(14, 29, 38, 0.04);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.local-guide-card:hover {
  color: var(--ink);
  transform: translateY(-2px);
  border-color: rgba(15, 111, 88, 0.28);
  box-shadow: 0 18px 36px rgba(14, 29, 38, 0.1);
}

.local-guide-card .guide-flag {
  display: grid;
  place-items: center;
  align-self: stretch;
  width: 64px;
  height: 64px;
  margin: auto;
  background: var(--white);
  font-size: 0;
}

.local-guide-card strong {
  padding: 0 12px;
  color: #061018;
  font-size: 1.08rem;
  line-height: 1.18;
  word-break: normal;
  overflow-wrap: normal;
}

.local-guide-card i {
  padding-right: 14px;
  color: #061018;
  font-size: 2.2rem;
  font-style: normal;
  line-height: 1;
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.country-grid.compact {
  grid-template-columns: repeat(6, 1fr);
}

.country-grid a {
  display: grid;
  gap: 7px;
  min-height: 110px;
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.country-grid a:hover {
  color: var(--ink);
  transform: translateY(-2px);
  border-color: rgba(15, 111, 88, 0.34);
  box-shadow: var(--shadow);
}

.country-grid .directory-flag {
  width: 54px;
  height: 54px;
}

.country-grid strong {
  color: var(--green-dark);
  line-height: 1.2;
}

.country-grid small {
  color: var(--muted);
  font-weight: 800;
}

.seo-intro,
.seo-conclusion {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) 1.15fr;
  gap: 34px;
  align-items: start;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.seo-lead p,
.seo-panel p,
.seo-conclusion p,
.evaluation-grid p {
  color: var(--muted);
}

.seo-content {
  display: grid;
  gap: 18px;
}

.seo-panel {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(16, 33, 29, 0.06);
}

.seo-panel.wide {
  background:
    linear-gradient(135deg, rgba(15, 111, 88, 0.08), rgba(219, 168, 66, 0.08)),
    var(--white);
}

.seo-panel-grid,
.evaluation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.evaluation-grid {
  grid-template-columns: repeat(3, 1fr);
}

.evaluation-grid article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(16, 33, 29, 0.06);
}

.evaluation-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  color: var(--green-dark);
  background: #f0dfb7;
  border-radius: 8px;
  font-weight: 900;
}

.evaluation-grid h3 {
  font-size: 1.12rem;
}

.games-guide {
  display: grid;
  gap: 20px;
}

.game-category-grid,
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.game-category-grid article,
.bonus-grid article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(16, 33, 29, 0.06);
}

.game-category-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  color: var(--green-dark);
  background: #f0dfb7;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.game-category-grid ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.bonus-guide {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) 1.2fr;
  gap: 24px;
  align-items: start;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(15, 111, 88, 0.08), rgba(36, 59, 107, 0.08)),
    var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.bonus-copy p,
.bonus-grid p,
.terms-panel p,
.game-category-grid p {
  color: var(--muted);
}

.bonus-grid {
  grid-template-columns: repeat(2, 1fr);
}

.terms-panel {
  grid-column: 1 / -1;
  padding: 24px;
  background: var(--green-dark);
  border-radius: 8px;
  color: var(--white);
}

.terms-panel h3 {
  color: var(--white);
}

.terms-panel p {
  color: #d7e7e1;
}

.terms-panel .text-link {
  color: var(--gold);
}

.rtp-guide {
  display: grid;
  gap: 20px;
}

.rtp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.rtp-grid article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(16, 33, 29, 0.06);
}

.rtp-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  color: var(--green-dark);
  background: #f0dfb7;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.rtp-grid p {
  color: var(--muted);
}

.banking-guide,
.trust-guide {
  display: grid;
  gap: 20px;
}

.payment-method-grid,
.trust-guide-grid,
.mobile-security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.payment-method-grid article,
.trust-guide-grid article,
.mobile-security-grid article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(16, 33, 29, 0.06);
}

.payment-method-grid span,
.trust-guide-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  color: var(--green-dark);
  background: #f0dfb7;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.payment-method-grid ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.payment-method-grid p,
.trust-guide-grid p,
.mobile-security-grid p,
.mobile-security-copy p {
  color: var(--muted);
}

.mobile-security-guide {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) 1.15fr;
  gap: 24px;
  align-items: start;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(36, 59, 107, 0.09), rgba(15, 111, 88, 0.08)),
    var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mobile-security-grid {
  grid-template-columns: repeat(2, 1fr);
}

.live-casino-guide,
.live-faq {
  display: grid;
  gap: 20px;
}

.live-grid,
.software-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.live-grid article,
.software-grid article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(16, 33, 29, 0.06);
}

.live-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  color: var(--green-dark);
  background: #f0dfb7;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.software-future-guide {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) 1.15fr;
  gap: 24px;
  align-items: start;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(36, 59, 107, 0.09), rgba(219, 168, 66, 0.08)),
    var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.software-grid {
  grid-template-columns: repeat(2, 1fr);
}

.live-grid p,
.software-grid p,
.software-copy p {
  color: var(--muted);
}

.responsible-guide,
.mistakes-guide,
.global-faq {
  display: grid;
  gap: 20px;
}

.responsible-grid,
.choosing-grid,
.mistake-list,
.future-grid,
.faq-columns {
  display: grid;
  gap: 18px;
}

.responsible-grid,
.choosing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.responsible-grid article,
.choosing-grid article,
.mistake-list article,
.global-faq details {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(16, 33, 29, 0.06);
}

.responsible-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  color: var(--green-dark);
  background: #f0dfb7;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.choosing-guide,
.future-guide,
.final-thoughts {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) 1.15fr;
  gap: 24px;
  align-items: start;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.choosing-guide {
  background:
    linear-gradient(135deg, rgba(15, 111, 88, 0.08), rgba(219, 168, 66, 0.08)),
    var(--white);
}

.mistake-list {
  grid-template-columns: repeat(2, 1fr);
}

.mistake-list strong,
.future-grid strong,
.future-grid span {
  display: block;
}

.future-grid {
  grid-template-columns: repeat(2, 1fr);
}

.future-grid div {
  padding: 20px;
  background: var(--soft);
  border-radius: 8px;
}

.future-grid strong {
  margin-bottom: 6px;
  color: var(--green-dark);
}

.faq-columns {
  grid-template-columns: repeat(2, 1fr);
}

.final-thoughts {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-dark), #123f52);
}

.final-thoughts h2 {
  color: var(--white);
}

.final-thoughts .eyebrow {
  color: var(--gold);
}

.final-thoughts p,
.future-grid span,
.responsible-grid p,
.choosing-grid p,
.choosing-copy p,
.mistake-list p {
  color: var(--muted);
}

.final-thoughts p {
  color: #d7e7e1;
}

.final-thoughts .primary-button {
  width: max-content;
  background: var(--gold);
  color: var(--green-dark);
}

.floating-language {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  gap: 6px;
  width: 190px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.floating-language label {
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-language select {
  width: 100%;
  height: 38px;
  padding: 0 9px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
}

.translate-live-panel {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 320px;
  gap: 24px;
  align-items: center;
  margin-top: 36px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.translate-live-panel h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.translate-live-panel p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
}

.translate-widget {
  justify-self: end;
  min-width: 260px;
  padding: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.auto-translate-status {
  width: fit-content;
  margin: 0 0 10px auto;
  padding: 8px 12px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #e7f3ee;
  border: 1px solid rgba(15, 111, 88, 0.18);
  border-radius: 999px;
}

.translate-widget-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

#google_translate_element,
#google_translate_element .goog-te-gadget,
body > div.skiptranslate,
.goog-te-banner-frame.skiptranslate,
iframe.goog-te-banner-frame,
#goog-gt-tt {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  min-height: 0 !important;
  overflow: hidden !important;
}

html.translated-ltr body,
html.translated-rtl body,
body {
  top: 0 !important;
}

.notice-bar,
.site-header {
  display: flex !important;
  visibility: visible !important;
}

.privacy-banner {
  position: fixed;
  right: 18px;
  bottom: 72px;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(720px, calc(100% - 36px));
  padding: 18px;
  background: var(--white);
  border: 1px solid rgba(15, 111, 88, 0.18);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(14, 29, 38, 0.22);
}

@media (max-width: 640px) {
  .privacy-banner {
    right: 10px;
    bottom: 58px;
    left: 10px;
    grid-template-columns: 1fr;
    gap: 12px;
    width: auto;
    max-height: min(48vh, 360px);
    padding: 14px;
    overflow: auto;
    overscroll-behavior: contain;
  }

  .privacy-banner strong {
    margin-bottom: 2px;
    font-size: 0.96rem;
  }

  .privacy-banner p {
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .privacy-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .privacy-actions .secondary-button:first-child {
    grid-column: 1 / -1;
  }

  .privacy-actions .review-button,
  .privacy-actions .secondary-button {
    min-height: 40px;
    padding: 0 10px;
    font-size: 0.82rem;
  }

  .privacy-settings-button {
    left: 10px;
    bottom: 10px;
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.78rem;
  }
}

.privacy-banner strong {
  display: block;
  margin-bottom: 4px;
  color: var(--green-dark);
  font-size: 1rem;
}

.privacy-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.privacy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.privacy-actions .review-button,
.privacy-actions .secondary-button {
  width: auto;
  min-height: 42px;
  padding: 0 14px;
  white-space: nowrap;
}

.privacy-banner-hidden {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.privacy-settings-button {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 79;
  min-height: 38px;
  padding: 0 14px;
  color: var(--green-dark);
  font-weight: 900;
  background: var(--gold);
  border: 1px solid rgba(15, 111, 88, 0.22);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.privacy-settings-button:hover {
  color: var(--white);
  background: var(--green-dark);
}

.audit-board {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) 1.25fr;
  gap: 32px;
  align-items: start;
  padding: 34px;
  background: #101d22;
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
}

.audit-board h2 {
  color: var(--white);
}

.audit-board .eyebrow {
  color: var(--gold);
}

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

.audit-timeline div {
  min-height: 150px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.audit-timeline span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  color: var(--green-dark);
  background: var(--gold);
  border-radius: 8px;
  font-weight: 900;
}

.audit-timeline strong {
  display: block;
  margin-bottom: 7px;
  color: var(--white);
  font-size: 1.08rem;
}

.audit-timeline p {
  margin: 0;
  color: #c6d9d2;
}

.category-strip a {
  display: block;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(16, 33, 29, 0.06);
}

.category-strip strong,
.category-strip span {
  display: block;
}

.category-strip strong {
  margin-bottom: 5px;
  color: var(--green-dark);
}

.category-strip span {
  color: var(--muted);
  font-size: 0.9rem;
}

.table-wrap {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.table-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th, td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  color: var(--green-dark);
  background: var(--soft);
  font-size: 0.86rem;
}

td a { color: var(--green); font-weight: 800; }

.info-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  padding: 72px 6vw;
  margin-bottom: 80px;
  color: var(--white);
  background: var(--green-dark);
}

.info-band .eyebrow,
.check { color: var(--gold); }

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

.check-grid div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-weight: 800;
}

.check { margin-right: 8px; }

.guide-grid,
.news-grid {
  display: grid;
  gap: 18px;
}

.guide-grid { grid-template-columns: repeat(3, 1fr); }
.news-grid { grid-template-columns: repeat(2, 1fr); }

.guide-grid article,
.news-grid article,
.review-summary,
.article-card,
.faq-section details {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-card[id],
.section-block[id],
.player-shortcuts[id] {
  scroll-margin-top: 104px;
}

.guide-grid article,
.news-grid article {
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.guide-grid article:hover,
.news-grid article:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.guide-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  color: var(--green-dark);
  background: #f0dfb7;
  border-radius: 8px;
  font-weight: 900;
}

.faq-section {
  display: grid;
  gap: 14px;
}

.newsletter-band {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 28px;
  align-items: center;
  padding: 34px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-dark), #123f52);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.newsletter-band h2 {
  color: var(--white);
}

.newsletter-band .eyebrow {
  color: var(--gold);
}

.newsletter-band form {
  display: flex;
  gap: 10px;
}

.newsletter-band input {
  min-width: 0;
  flex: 1;
  height: 46px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  font: inherit;
}

.newsletter-band button {
  min-height: 46px;
  padding: 0 16px;
  color: var(--green-dark);
  background: var(--gold);
  border: 0;
  border-radius: 8px;
  font-weight: 900;
}

summary {
  color: var(--green-dark);
  font-weight: 900;
  cursor: pointer;
}

details p { margin: 12px 0 0; }

.article-hero {
  width: min(1120px, 88vw);
  margin: 54px auto 40px;
  padding: 42px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.breadcrumb {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.article-hero h1 {
  max-width: 860px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 32px;
}

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

.article-card h2 { margin-bottom: 14px; }

.article-card ul,
.article-card ol {
  padding-left: 22px;
}

.sidebar {
  display: grid;
  align-content: start;
  gap: 16px;
}

.sidebar-card {
  padding: 20px;
  background: var(--green-dark);
  color: var(--white);
  border-radius: 8px;
}

.sidebar-card a {
  display: block;
  margin-top: 10px;
  color: var(--gold);
  font-weight: 800;
}

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

.score-grid div {
  padding: 14px;
  background: var(--soft);
  border-radius: 8px;
}

.score-grid strong { display: block; font-size: 1.4rem; }

.site-footer {
  padding: 54px 6vw 28px;
  color: var(--white);
  background: #091f1a;
}

.footer-important {
  display: grid;
  grid-template-columns: 0.95fr 1.75fr;
  gap: 28px;
  align-items: center;
  width: min(1120px, 100%);
  margin: 0 auto 34px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.footer-important h2 {
  margin: 0;
  max-width: 440px;
  color: var(--white);
  font-size: 1.65rem;
  line-height: 1.12;
  text-transform: none;
}

.footer-important .eyebrow {
  color: var(--gold);
}

.footer-button-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.site-footer .footer-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin: 0;
  padding: 10px 12px;
  color: var(--white);
  text-align: center;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.site-footer .footer-button:hover {
  color: #091f1a;
  transform: translateY(-2px);
  background: var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 0.8fr) 1.2fr;
  gap: 30px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.footer-disclaimer {
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

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

.site-footer h2 {
  margin-bottom: 14px;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin-bottom: 10px;
  color: #c8dbd4;
}

.site-footer a:hover { color: var(--gold); }

.footer-bottom {
  justify-content: space-between;
  gap: 20px;
  width: min(1120px, 100%);
  margin: 32px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-bottom p { margin: 0; color: #aec5bc; }

.ai-hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.ai-lab,
.free-game-suite {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.ai-image-band {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 0.9fr;
  gap: 16px;
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.ai-photo-card {
  position: relative;
  min-height: 300px;
  margin: 0;
  overflow: hidden;
}

.ai-photo-card.large {
  min-height: 360px;
}

.ai-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ai-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 16, 24, 0.05), rgba(6, 16, 24, 0.68));
}

.ai-photo-card figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  color: var(--white);
}

.ai-photo-card figcaption strong,
.ai-photo-card figcaption span {
  display: block;
}

.ai-photo-card figcaption strong {
  margin-bottom: 5px;
  font-size: 1.15rem;
}

.ai-photo-card figcaption span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  line-height: 1.35;
}

.geo-visual-band {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 0;
  width: min(1120px, calc(100% - 48px));
  margin: -36px auto 42px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.player-shortcuts {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto 32px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.shortcut-intro {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 18px;
}

.shortcut-intro h2 {
  max-width: 680px;
  margin-bottom: 0;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.shortcut-intro p {
  max-width: 360px;
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 750;
}

.shortcut-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.shortcut-card {
  position: relative;
  min-height: 112px;
  padding: 18px 44px 18px 18px;
  color: var(--green-dark);
  background: #f8fbf9;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 950;
}

.shortcut-card::after {
  content: ">";
  position: absolute;
  right: 18px;
  top: 18px;
  color: var(--green);
  font-size: 1.35rem;
}

.shortcut-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.35;
}

.shortcut-card:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 111, 88, 0.26);
  box-shadow: var(--soft-shadow);
}

.geo-visual-photo {
  min-height: 330px;
  margin: 0;
  background: var(--soft);
}

.geo-visual-photo img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  display: block;
}

.geo-visual-copy {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 30px;
}

.geo-visual-copy .directory-flag {
  width: 58px;
  height: 58px;
}

.geo-visual-copy h2 {
  margin: 0;
  font-size: 1.8rem;
}

.geo-visual-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.review-visual-band {
  margin-top: -18px;
}

.review-visual-band .logo-tile {
  width: 58px;
  height: 58px;
  font-size: 1.1rem;
}

.review-visual-band .casino-logo {
  width: 96px;
}

.ai-console {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 22px;
}

.ai-settings {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 20px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.ai-settings label {
  color: var(--green-dark);
  font-weight: 900;
}

.ai-settings select,
.ai-prompt input {
  min-height: 46px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.ai-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.ai-chat-panel {
  display: grid;
  grid-template-rows: minmax(280px, 420px) auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.ai-chat {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 18px;
  overflow: auto;
  background: linear-gradient(180deg, #f8fbf9, #ffffff);
}

.ai-message {
  max-width: 84%;
  padding: 14px 16px;
  border-radius: 8px;
}

.ai-message p:last-child {
  margin-bottom: 0;
}

.ai-message.assistant {
  justify-self: start;
  background: #eaf3ef;
  border: 1px solid rgba(15, 111, 88, 0.16);
}

.ai-message.user {
  justify-self: end;
  color: var(--white);
  background: var(--green-dark);
}

.ai-prompt {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 12px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.ai-prompt button {
  min-height: 46px;
  padding: 0 18px;
  color: var(--white);
  background: var(--green-dark);
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.ai-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.ai-result-card,
.demo-game-card {
  position: relative;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.licensed-operator-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.licensed-operator-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 12px;
  min-height: 310px;
  overflow: hidden;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 248, 0.98)),
    var(--paper);
  border: 1px solid rgba(15, 111, 88, 0.16);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(14, 29, 38, 0.08);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.licensed-operator-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--green), var(--gold));
}

.licensed-operator-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 111, 88, 0.34);
  box-shadow: 0 24px 56px rgba(14, 29, 38, 0.14);
}

.licensed-operator-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 2px 0 4px;
  color: #061018;
  font-size: 1.55rem;
  line-height: 1.05;
}

.licensed-operator-card h3::before {
  content: "LC";
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(15, 111, 88, 0.96), rgba(10, 63, 53, 0.96)),
    var(--green-dark);
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  font-size: 0.72rem;
  font-weight: 900;
}

.licensed-operator-card p {
  margin: 0;
  color: var(--muted);
}

.licensed-operator-card p strong {
  display: block;
  margin-bottom: 2px;
  color: var(--green-dark);
  font-size: 0.77rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.licence-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 4px 10px;
  color: var(--green-dark);
  background: #eaf3ef;
  border: 1px solid rgba(15, 111, 88, 0.18);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.licence-tag.pending {
  color: #75510b;
  background: #fff6df;
  border-color: rgba(219, 168, 66, 0.34);
}

.pending-card::before {
  background: linear-gradient(90deg, var(--gold), var(--coral));
}

.pending-card h3::before {
  content: "RV";
  background:
    linear-gradient(135deg, rgba(219, 168, 66, 0.98), rgba(222, 107, 87, 0.95)),
    var(--gold);
}

.operator-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-self: end;
  padding-top: 6px;
  border-top: 1px solid var(--line);
}

.operator-actions .review-button,
.operator-actions .secondary-button {
  flex: 1 1 140px;
  width: auto;
  min-height: 42px;
  padding: 0 14px;
  text-align: center;
  font-size: 0.92rem;
}

.operator-actions .secondary-button {
  color: var(--green-dark);
  background: var(--white);
  border: 1px solid rgba(15, 111, 88, 0.22);
}

.operator-actions .secondary-button:hover {
  color: var(--green-dark);
  transform: translateY(-1px);
  border-color: rgba(15, 111, 88, 0.42);
  box-shadow: 0 12px 28px rgba(14, 29, 38, 0.1);
}

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

.ai-rank {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  color: var(--white);
  background: var(--green-dark);
  border-radius: 50%;
  font-weight: 900;
}

.demo-games {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.game-bank {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  margin: 12px 0;
  padding: 10px 12px;
  color: var(--green-dark);
  background: #eaf3ef;
  border: 1px solid rgba(15, 111, 88, 0.18);
  border-radius: 8px;
  font-weight: 900;
}

.game-bank span {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.game-control {
  display: grid;
  gap: 6px;
  margin: 12px 0;
  color: var(--green-dark);
  font-weight: 900;
}

.game-control select {
  min-height: 42px;
  padding: 0 10px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.slot-reels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 16px 0;
}

.slot-reels span,
.roulette-wheel {
  display: grid;
  place-items: center;
  min-height: 76px;
  color: var(--green-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 1.65rem;
  font-weight: 900;
}

.slot-reels span.spinning {
  animation: reelPulse 420ms ease;
}

@keyframes reelPulse {
  0% { transform: translateY(-8px); opacity: 0.4; }
  50% { transform: translateY(6px); opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}

.mini-paytable {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  margin: 10px 0 14px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.roulette-wheel {
  width: 116px;
  height: 116px;
  margin: 14px auto;
  color: var(--white);
  background: radial-gradient(circle, #165a47 0%, #0b241f 72%);
  border: 8px solid var(--gold);
  border-radius: 50%;
}

.blackjack-table {
  display: grid;
  gap: 8px;
  margin: 14px 0;
  padding: 14px;
  color: var(--white);
  background: #0f3f35;
  border-radius: 8px;
}

.licensed-operator-card .casino-logo + h3::before {
  display: none;
}

.licensed-operator-card .casino-logo {
  width: 104px;
  height: 62px;
  margin-top: 2px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 64px;
}

.playing-card {
  display: grid;
  place-items: center;
  width: 44px;
  height: 62px;
  color: #061018;
  background: var(--white);
  border-radius: 7px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  font-weight: 900;
}

.playing-card small {
  display: block;
  font-size: 0.75rem;
  line-height: 1;
}

.playing-card.red {
  color: #b4232f;
}

.playing-card.back {
  color: var(--white);
  background: repeating-linear-gradient(45deg, #0f6f58, #0f6f58 6px, #0b4036 6px, #0b4036 12px);
}

.blackjack-table p,
.game-status {
  margin: 0;
}

.game-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.game-actions .review-button,
.game-actions .secondary-button {
  width: auto;
  min-height: 42px;
  padding: 0 14px;
}

@media (max-width: 980px) {
  .main-nav { display: none; }
  .hero-overlay { background: linear-gradient(180deg, rgba(247, 250, 248, 0.98) 0%, rgba(247, 250, 248, 0.88) 50%, rgba(247, 250, 248, 0.28) 100%); }
  .hero-content { margin: 0 auto; }
  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(88vw, 720px);
    margin: -80px auto 72px;
  }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-notice { grid-template-columns: 1fr; }
  .intro-grid,
  .info-band,
  .guide-grid,
  .news-grid,
  .suite-header,
  .decision-grid,
  .audit-board,
  .geo-finder,
  .seo-intro,
  .seo-conclusion,
  .seo-panel-grid,
  .evaluation-grid,
  .game-category-grid,
  .bonus-guide,
  .bonus-grid,
  .rtp-grid,
  .payment-method-grid,
  .mobile-security-guide,
  .mobile-security-grid,
  .trust-guide-grid,
  .live-grid,
  .software-future-guide,
  .software-grid,
  .responsible-grid,
  .choosing-guide,
  .choosing-grid,
  .mistake-list,
  .future-guide,
  .future-grid,
  .faq-columns,
  .final-thoughts,
  .local-guide-grid,
  .footer-important,
  .geo-auto-banner,
  .ai-image-band,
  .geo-visual-band,
  .ai-console,
  .ai-results,
  .demo-games,
  .shortcut-grid,
  .article-layout,
  .category-strip,
  .newsletter-band,
  .footer-grid { grid-template-columns: 1fr; }
  .casino-card { grid-template-columns: 42px 1fr; }
  .bonus, .rating, .card-actions { grid-column: 2; }
}

@media (max-width: 620px) {
  .site-header { min-height: 64px; padding: 0 18px; }
  .brand-logo { width: 166px; max-width: 62vw; }
  .header-cta { display: none; }
  .floating-casino-cta {
    right: 10px;
    bottom: 10px;
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.78rem;
  }
  .hero { min-height: 720px; }
  .hero-content,
  .section-block,
  .geo-auto-banner,
  .news-section,
  .article-page,
  .article-hero,
  .player-shortcuts,
  .geo-visual-band,
  .trust-strip { width: calc(100% - 36px); }
  h1 { font-size: 2.85rem; }
  .hero-copy { font-size: 1rem; }
  .search-box div,
  .newsletter-band form,
  .section-heading,
  .casino-main,
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .shortcut-intro { align-items: flex-start; flex-direction: column; }
  .search-box button,
  .newsletter-band button,
  .review-button { width: 100%; }
  .trust-strip,
  .casino-card,
  .check-grid,
  .audit-timeline,
  .flag-picker,
  .market-result,
  .local-guide-grid,
  .footer-button-grid,
  .ai-prompt,
  .ai-results,
  .demo-games,
  .licensed-operator-grid,
  .country-grid,
  .country-grid.compact,
  .score-grid { grid-template-columns: 1fr; }
  .intelligence-suite,
  .audit-board,
  .newsletter-band { padding: 24px; }
  .score-row { grid-template-columns: 1fr; }
  .score-row strong { text-align: left; }
  .local-guide-card { grid-template-columns: 88px 1fr 24px; }
  .local-guide-card strong { font-size: 1.05rem; }
  .local-guide-card .guide-flag,
  .country-grid .directory-flag {
    width: 48px;
    height: 48px;
  }
  .hero-panel { margin-top: -50px; }
  .bonus, .rating, .card-actions { grid-column: auto; }
  .article-hero { padding: 28px; }
  .notice-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
  .language-choice-bar {
    align-items: flex-start;
    flex-direction: column;
    padding: 10px 18px;
  }
  .language-choice-list {
    justify-content: flex-start;
  }
  .language-choice {
    font-size: 0.78rem;
  }
  .floating-language {
    right: 12px;
    bottom: 12px;
    width: 156px;
  }
  .translate-live-panel {
    grid-template-columns: 1fr;
  }
  .translate-widget {
    justify-self: stretch;
    min-width: 0;
  }
  .geo-visual-band {
    margin-top: -24px;
  }
  .geo-visual-photo,
  .geo-visual-photo img {
    min-height: 240px;
  }
  .ai-message {
    max-width: 100%;
  }
}
