:root {
  --ink: #1a1d22;
  --muted: #616873;
  --paper: #f4f7fd;
  --card: #ffffff;
  --gum: #ca1434;
  --gum-dark: #9e0f29;
  --wattle: #eda823;
  --eucalyptus: #2357dc;
  --line: #e5e8ed;
  --white: #fff;
  --shadow: 0 18px 50px rgba(26, 29, 34, 0.11);
  --radius: 22px;
  --max: 1160px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font:
    16px/1.65 Arial,
    Helvetica,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
button,
a {
  touch-action: manipulation;
}
.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--white);
  padding: 10px;
  z-index: 99;
}
.skip:focus {
  left: 8px;
}
.wrap {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(26, 29, 34, 0.97);
  color: #fff;
  backdrop-filter: blur(10px);
}
.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.08rem;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.brand img {
  width: 190px;
  height: 46px;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50% 50% 45% 55%;
  background: var(--wattle);
  color: var(--ink);
  font-size: 20px;
  transform: rotate(-5deg);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}
.nav-links a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.91rem;
}
.nav-links a:hover {
  color: var(--wattle);
}
.nav-dropdown {
  position: relative;
  padding-block: 24px;
  margin-block: -24px;
}
.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.nav-trigger i {
  color: var(--wattle);
  font-style: normal;
  font-size: 1rem;
  transition: transform 0.18s ease;
}
.nav-badge {
  display: inline-grid;
  place-items: center;
  min-width: 21px;
  height: 21px;
  padding-inline: 5px;
  border-radius: 99px;
  background: var(--gum);
  color: #fff;
  font-size: 0.68rem;
  line-height: 1;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  display: grid;
  min-width: 230px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: #24272c;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.32);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: 0.18s ease;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.nav-dropdown:hover .nav-trigger i,
.nav-dropdown:focus-within .nav-trigger i {
  transform: rotate(180deg);
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 7px 10px;
  border-radius: 10px;
  color: #fff;
}
.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: var(--wattle);
}
.casino-menu img {
  width: 72px;
  height: 28px;
  padding: 3px 5px;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
}
.payment-menu {
  min-width: 220px;
}
.dropdown-menu .dropdown-all {
  margin-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px 8px 0 0;
  color: var(--wattle);
}
.nav details {
  display: none;
  margin-left: auto;
}
.nav summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
}
.nav summary::-webkit-details-marker {
  display: none;
}
.mobile-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 72px;
  padding: 18px 20px 26px;
  background: var(--ink);
  display: grid;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.mobile-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 6px;
  color: var(--wattle);
  font-weight: 900;
}
.mobile-submenu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 2px 0 8px 12px;
}
.mobile-submenu a {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  font-size: 0.86rem;
  text-decoration: none;
}
.mobile-submenu img {
  width: 54px;
  height: 24px;
  padding: 2px 4px;
  object-fit: contain;
  border-radius: 5px;
  background: #fff;
}
.payment-mobile a {
  padding-left: 0;
}
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background-color: #111214;
  background-image:
    linear-gradient(
      90deg,
      rgba(17, 18, 20, 0.99) 0%,
      rgba(17, 18, 20, 0.95) 38%,
      rgba(17, 18, 20, 0.72) 66%,
      rgba(17, 18, 20, 0.42) 100%
    ),
    linear-gradient(180deg, rgba(17, 18, 20, 0.12), rgba(17, 18, 20, 0.72)),
    url("/assets/hero-casino.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 0 72px;
}
.hero:before {
  display: none;
}
.hero:after {
  display: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 52px;
  align-items: center;
}
.hero-home .hero-grid {
  grid-template-columns: minmax(0, 780px);
}
.hero-home {
  min-height: 500px;
  display: flex;
  align-items: center;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--wattle);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.77rem;
}
.hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(2.55rem, 6vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}
.hero p {
  max-width: 690px;
  margin: 24px 0 0;
  color: #d9dce1;
  font-size: 1.1rem;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: var(--gum);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(202, 20, 52, 0.24);
}
.btn:hover {
  background: var(--gum-dark);
  transform: translateY(-1px);
}
.btn:visited,
.content a.btn,
.content a.btn:visited,
.content a.btn:hover,
.content a.btn:focus-visible {
  color: #fff;
}
.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: none;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}
.hero-note {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}
.hero-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}
.hero-note p {
  font-size: 0.93rem;
  margin: 0;
  color: #d9e5e0;
}
.hero-note .stamp {
  display: inline-block;
  margin-top: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(244, 189, 74, 0.16);
  color: var(--wattle);
  font-weight: 800;
  font-size: 0.76rem;
}
.trust-strip {
  background: var(--gum);
  color: #fff;
}
.trust-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 14px 0;
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
}
.trust-items span + span {
  border-left: 1px solid rgba(19, 45, 41, 0.25);
}
main {
  display: block;
}
.section {
  padding: 76px 0;
}
.section-tight {
  padding: 46px 0;
}
.section-white {
  background: var(--card);
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}
.section-head h2,
.content h2 {
  font-size: clamp(1.75rem, 4vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -0.045em;
  margin: 0;
}
.section-head p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}
.casino-list {
  display: grid;
  gap: 16px;
}
.casino-card {
  position: relative;
  display: grid;
  grid-template-columns: 56px 180px 120px 1fr 160px;
  gap: 20px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 5px 0 rgba(19, 45, 41, 0.04);
}
.casino-card:hover {
  border-color: #bdb5a4;
  box-shadow: var(--shadow);
}
.rank {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: var(--ink);
  color: #fff;
  border-radius: 50%;
  font-weight: 900;
}
.casino-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 72px;
  padding: 10px 14px;
  overflow: hidden;
  border: 1px solid #dfe3eb;
  border-radius: 14px;
  background:
    radial-gradient(circle at 18% 15%, #ffffff 0 18%, transparent 46%), #edf0f5;
  box-shadow:
    inset 0 1px 0 #ffffff,
    0 4px 12px rgba(26, 29, 34, 0.06);
}
.casino-logo img {
  width: 152px;
  height: 50px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.32))
    drop-shadow(0 0 3px rgba(255, 255, 255, 0.9));
}
.casino-logo--slotsgem {
  padding: 8px 10px;
  background: #ffffff;
}
.casino-logo--slotsgem img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  transform: none;
  filter: none;
}
.casino-logo--spingranny img {
  filter: none;
}
.rating {
  font-weight: 900;
}
.rating b {
  display: block;
  font-size: 1.25rem;
}
.rating a {
  display: block;
  color: var(--eucalyptus);
  font-size: 0.75rem;
}
.stars {
  color: #b67800;
  letter-spacing: 0.05em;
}
.offer b {
  display: block;
  font-size: 1.1rem;
  line-height: 1.25;
}
.offer span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
}
.offer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 9px;
}
.offer-meta em {
  padding: 3px 7px;
  border-radius: 999px;
  background: #eef2fa;
  color: #444b57;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 800;
}
.facts {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 0.83rem;
}
.facts b {
  display: block;
  color: var(--ink);
  font-size: 0.92rem;
}
.card-actions {
  display: grid;
  gap: 6px;
  text-align: center;
}
.card-actions small {
  color: var(--muted);
  font-size: 0.68rem;
}
.text-link {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--eucalyptus);
}
.notice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 22px;
  border-left: 5px solid var(--gum);
  border-radius: 0 16px 16px 0;
  background: #fff3ed;
}
.notice-icon {
  font-size: 1.5rem;
}
.notice strong {
  display: block;
}
.notice p {
  margin: 4px 0 0;
  color: var(--muted);
}
.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 60px;
  align-items: start;
}
.content {
  min-width: 0;
}
.content h2 {
  scroll-margin-top: 100px;
  margin: 56px 0 16px;
}
.content h2:first-child {
  margin-top: 0;
}
.content h3 {
  margin: 34px 0 10px;
  font-size: 1.35rem;
}
.content p {
  color: #344944;
}
.content ul,
.content ol {
  padding-left: 22px;
}
.content li + li {
  margin-top: 8px;
}
.content a {
  color: var(--gum-dark);
  font-weight: 700;
}
.toc {
  position: sticky;
  top: 98px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card);
}
.toc strong {
  display: block;
  margin-bottom: 10px;
}
.toc ol {
  margin: 0;
  padding-left: 20px;
}
.toc li + li {
  margin-top: 8px;
}
.toc a {
  font-size: 0.88rem;
  text-decoration: none;
}
.toc a:hover {
  color: var(--gum-dark);
}
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  margin: 22px 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.compare-table th,
.compare-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.compare-table th {
  background: #e6eee9;
  font-size: 0.83rem;
}
.compare-table tr:last-child td {
  border: 0;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.step {
  padding: 22px;
  border-radius: 18px;
  background: #e9f0ec;
}
.step b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--eucalyptus);
  color: #fff;
}
.step h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}
.step p {
  margin: 0;
  font-size: 0.9rem;
}
.proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 24px 0;
}
.pros,
.cons {
  padding: 22px;
  border-radius: 18px;
}
.pros {
  background: #e5f1e7;
}
.cons {
  background: #fff0e9;
}
.pros h3,
.cons h3 {
  margin-top: 0;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary:after {
  content: "+";
  float: right;
  color: var(--gum);
  font-size: 1.4rem;
}
.faq details[open] summary:after {
  content: "−";
}
.faq p {
  margin-bottom: 0;
}
.author {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  margin-top: 56px;
  padding: 24px;
  border-radius: 20px;
  background: var(--ink);
  color: #fff;
}
.avatar {
  display: grid;
  place-items: center;
  overflow: hidden;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--wattle);
  color: var(--ink);
  font-weight: 950;
  font-size: 1.35rem;
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author p {
  margin: 4px 0;
  color: #d9e5e0;
}
.author a {
  color: var(--wattle);
}
.related {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.related a {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card);
  text-decoration: none;
}
.related a:hover {
  border-color: var(--gum);
}
.related small {
  display: block;
  color: var(--gum-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.related b {
  display: block;
  margin-top: 7px;
  font-size: 1.1rem;
}
.payment-grid,
.payment-casino-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 24px 0 34px;
}
.payment-tile,
.payment-casino-card {
  display: flex;
  flex-direction: column;
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 5px 0 rgba(19, 45, 41, 0.04);
}
.payment-tile:hover,
.payment-casino-card:hover {
  border-color: #c7bdad;
  box-shadow: var(--shadow);
}
.payment-symbol {
  display: grid;
  place-items: center;
  width: 58px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: -0.02em;
}
.payment-symbol--payid {
  background: #7c3aed;
}
.payment-symbol--visa {
  background: #1434cb;
}
.payment-symbol--paypal {
  background: #0877c9;
}
.payment-symbol--skrill {
  background: #862165;
}
.payment-symbol--poli {
  background: #52606d;
}
.payment-tile h2,
.payment-casino-card h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}
.payment-tile p,
.payment-casino-card p {
  margin: 0 0 18px;
  color: var(--muted);
}
.payment-tile a,
.payment-casino-card a {
  margin-top: auto;
  font-weight: 900;
}
.payment-casino-card .casino-logo {
  width: 100%;
  height: 82px;
  margin-bottom: 18px;
}
.method-status {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 5px 9px;
  border-radius: 99px;
  background: #e7f2e9;
  color: #245a32;
  font-size: 0.72rem;
  font-weight: 900;
}
.method-status--check {
  background: #fff1d6;
  color: #765000;
}
.method-status--ended {
  background: #f3e5e7;
  color: #8d1730;
}
.method-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: -30px auto 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}
.method-facts div {
  min-width: 0;
  padding: 22px;
}
.method-facts div + div {
  border-left: 1px solid var(--line);
}
.method-facts small,
.method-facts b {
  display: block;
}
.method-facts small {
  margin-bottom: 5px;
  color: var(--muted);
}
.review-hero h1,
.profile-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}
.review-logo,
.profile-logo {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  overflow: hidden;
  min-height: 230px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid #dfe3eb;
  background:
    radial-gradient(circle at 20% 15%, #ffffff 0 18%, transparent 48%), #edf0f5;
  color: var(--ink);
  font-size: clamp(2.1rem, 5vw, 4rem);
  font-weight: 950;
  letter-spacing: -0.07em;
  text-align: center;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
}
.review-logo img,
.profile-logo img {
  width: min(280px, 82%);
  height: 96px;
  object-fit: contain;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.32))
    drop-shadow(0 0 4px rgba(255, 255, 255, 0.95));
}
.review-logo--slotsgem,
.profile-logo--slotsgem {
  background: #ffffff;
}
.review-logo--slotsgem img,
.profile-logo--slotsgem img {
  width: min(360px, 92%);
  height: 120px;
  max-width: 92%;
  object-fit: contain;
  transform: none;
  filter: none;
}
.review-logo--spingranny img,
.profile-logo--spingranny img {
  filter: none;
}
.review-logo small,
.profile-logo small {
  font-size: 0.95rem;
  letter-spacing: 0;
  line-height: 1.3;
}
.review-facts,
.profile-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -30px;
  position: relative;
  z-index: 3;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}
.review-facts div,
.profile-facts div {
  padding: 22px;
}
.review-facts div + div,
.profile-facts div + div {
  border-left: 1px solid var(--line);
}
.review-facts small,
.profile-facts small {
  display: block;
  color: var(--muted);
}
.review-facts b,
.profile-facts b {
  font-size: 1.05rem;
}
.review-cta,
.profile-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  padding: 22px;
  border-radius: 18px;
  border-left: 5px solid var(--gum);
  background: #fdf0f3;
}
.review-cta div,
.profile-cta div {
  display: grid;
}
.review-cta small,
.profile-cta small {
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.review-cta strong,
.profile-cta strong {
  font-size: 1.35rem;
}
.review-cta span,
.profile-cta span {
  font-size: 0.8rem;
}
.review-cta.inline,
.profile-cta.inline {
  margin: 24px 0;
}
.hero-kicker {
  display: block;
  margin-bottom: 6px;
  color: var(--wattle);
  font-size: 0.73rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.intro-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.intro-copy p {
  max-width: 800px;
  margin: 0;
}
.updated-line {
  margin-top: 7px !important;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}
.intro-copy span {
  white-space: nowrap;
  color: var(--muted);
  font-size: 0.75rem;
}
.info-hero {
  padding-bottom: 88px;
}
.info-hero .hero-grid {
  grid-template-columns: 1fr;
}
.breadcrumbs {
  margin-bottom: 18px;
  color: #b9cbc5;
  font-size: 0.82rem;
}
.breadcrumbs a {
  color: inherit;
}
.meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 20px;
  color: #c5d4cf;
  font-size: 0.82rem;
}
.footer {
  padding: 55px 0 26px;
  background: #0d2420;
  color: #c5d4cf;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(2, 1fr);
  gap: 50px;
}
.footer h2,
.footer h3 {
  color: #fff;
  margin-top: 0;
}
.footer p {
  max-width: 520px;
}
.footer nav {
  display: grid;
  gap: 8px;
}
.footer a {
  color: #dfe9e5;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.78rem;
}
.age {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 2px solid var(--gum);
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
}
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .nav details {
    display: block;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-note {
    max-width: 600px;
  }
  .casino-card {
    grid-template-columns: 48px 1fr 120px;
  }
  .casino-card .facts,
  .casino-card .offer {
    grid-column: 2/4;
  }
  .card-actions {
    grid-column: 2/4;
  }
  .content-layout {
    grid-template-columns: 1fr;
  }
  .toc {
    position: static;
    grid-row: 1;
  }
  .review-facts {
    grid-template-columns: 1fr 1fr;
  }
  .review-facts div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .review-facts div:nth-child(4) {
    border-top: 1px solid var(--line);
  }
  .intro-copy {
    display: block;
  }
  .intro-copy span {
    display: block;
    margin-top: 10px;
  }
  .payment-grid,
  .payment-casino-grid {
    grid-template-columns: 1fr 1fr;
  }
  .method-facts {
    grid-template-columns: 1fr 1fr;
  }
  .method-facts div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .method-facts div:nth-child(4) {
    border-top: 1px solid var(--line);
  }
}
@media (max-width: 640px) {
  .wrap {
    width: min(calc(100% - 28px), var(--max));
  }
  .hero {
    padding: 58px 0 52px;
    background-image:
      linear-gradient(90deg, rgba(17, 18, 20, 0.96), rgba(17, 18, 20, 0.72)),
      linear-gradient(180deg, rgba(17, 18, 20, 0.18), rgba(17, 18, 20, 0.88)),
      url("/assets/hero-casino.webp");
    background-position: 62% center;
  }
  .brand img {
    width: 164px;
    height: auto;
  }
  .hero-grid {
    gap: 35px;
  }
  .hero h1 {
    font-size: clamp(2.4rem, 13vw, 3.65rem);
  }
  .trust-items {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .trust-items span + span {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 10px;
  }
  .hero-home {
    min-height: 480px;
  }
  .mobile-panel {
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
  .mobile-submenu,
  .payment-grid,
  .payment-casino-grid {
    grid-template-columns: 1fr;
  }
  .method-facts {
    margin-top: -18px;
  }
  .section {
    padding: 54px 0;
  }
  .section-head {
    display: block;
  }
  .section-head p {
    margin-top: 10px;
  }
  .casino-card {
    grid-template-columns: 42px 1fr;
    padding: 18px;
    gap: 12px;
  }
  .casino-card .rating,
  .casino-card .offer,
  .casino-card .facts,
  .card-actions {
    grid-column: 1/3;
  }
  .casino-card .rating {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .casino-card .rating b,
  .casino-card .rating a {
    display: inline;
  }
  .facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .card-actions {
    grid-template-columns: 1fr;
  }
  .steps,
  .proscons,
  .related {
    grid-template-columns: 1fr;
  }
  .toc {
    padding: 18px;
  }
  .compare-table {
    display: block;
    overflow-x: auto;
  }
  .author {
    grid-template-columns: 52px 1fr;
  }
  .avatar {
    width: 52px;
    height: 52px;
  }
  .review-facts,
  .profile-facts {
    grid-template-columns: 1fr 1fr;
  }
  .review-facts div,
  .profile-facts div {
    padding: 16px;
  }
  .review-cta,
  .profile-cta {
    display: grid;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    display: block;
  }
  .footer-bottom .age {
    margin-top: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
@media print {
  .site-header,
  .hero-actions,
  .footer,
  .trust-strip {
    display: none;
  }
  .hero {
    background: #fff;
    color: #000;
    padding: 20px 0;
  }
  .hero p {
    color: #333;
  }
  .content-layout {
    display: block;
  }
  .toc {
    position: static;
  }
  .casino-card {
    box-shadow: none;
  }
}
