/* Homepage redesign — scoped to .page-home so other pages stay untouched */

.page-home {
  --bg: #080a12;
  --bg-2: #10131d;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-2: rgba(255, 255, 255, 0.07);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #f4f1ea;
  --muted: #b7b3aa;
  --gold: #e8c36a;
  --gold-2: #f6d78c;
  --ruby: #e51a38;
  --ruby-2: #ff4d6d;
  --blue: #4f8cff;
  --green: #3dd68c;
  --radius: 1.8rem;
  --shadow: 0 2.4rem 6rem rgba(0, 0, 0, 0.35);
  --font: "Outfit", "Baloo 2", sans-serif;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font);
  color-scheme: dark;
  min-width: 32rem;
}

.page-home a {
  color: var(--gold);
}

.page-home .heading {
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.page-home .container {
  max-width: 118rem;
}

/* Header */
.page-home .header {
  height: 7.2rem;
  background: rgba(8, 10, 18, 0.72);
  border-bottom: 1px solid transparent;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: none;
}

.page-home .header.header--scrolled {
  background: rgba(8, 10, 18, 0.92);
  border-bottom-color: var(--line);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.25);
}

.page-home .wrapper {
  padding-top: 7.2rem;
}

.page-home .header .logo {
  width: auto;
  height: 5.6rem;
  align-items: center;
  gap: 1rem;
}

.page-home .logo__name {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
}

.page-home .header__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-right: auto;
  min-width: 0;
}

.page-home .header .logo {
  margin-right: 0;
}

.page-home .header__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.4rem;
  height: 3.2rem;
  padding: 0 0.9rem;
  border: 1px solid rgba(229, 26, 56, 0.45);
  border-radius: 999px;
  background: rgba(229, 26, 56, 0.16);
  color: #fff !important;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.page-home .header__badge:hover,
.page-home .header__badge:focus {
  background: rgba(229, 26, 56, 0.28);
}

.page-home .header__nav {
  display: block !important;
  position: static !important;
  min-width: 0;
  padding: 0 !important;
  background: none !important;
  box-shadow: none !important;
  border: none !important;
}

.page-home .header__menu-toggle {
  display: none !important;
  margin-left: 1.2rem;
  border-color: #f4f1ea;
}

.page-home .header__menu-toggle span {
  background: #f4f1ea;
}

html:has(.page-home) {
  scroll-behavior: smooth;
}

.page-home .header .logo__img {
  width: 5.6rem;
  height: 5.6rem;
  object-fit: contain;
  filter: drop-shadow(0 0 1.2rem rgba(79, 140, 255, 0.35));
}

.page-home .header__nav ul {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .header__nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  background: transparent;
  border: 1px solid transparent;
  color: #fff;
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.page-home .header__nav a:hover,
.page-home .header__nav a:focus,
.page-home .header__nav a[aria-current="page"] {
  transform: none;
  border-color: var(--gold);
  background: rgba(232, 195, 106, 0.12);
  color: var(--gold-2);
}

.page-home .skip-link {
  position: absolute;
  left: 1.2rem;
  top: -6rem;
  z-index: 100;
  padding: 0.8rem 1.2rem;
  border-radius: 0.8rem;
  background: var(--gold);
  color: #080a12;
  font-weight: 700;
  text-decoration: none;
}

.page-home .skip-link:focus {
  top: 1.2rem;
}

.page-home .search-toggle,
.page-home .gift {
  display: none;
}

/* Hero */
.page-home .intro-home {
  position: relative;
  overflow: hidden;
  padding: 7rem 0 5.5rem;
  text-align: left;
  color: var(--text);
  background:
    radial-gradient(1200px 480px at 85% 10%, rgba(229, 26, 56, 0.22), transparent 55%),
    radial-gradient(900px 420px at 10% 80%, rgba(79, 140, 255, 0.18), transparent 50%),
    linear-gradient(180deg, rgba(8, 10, 18, 0.55) 0%, rgba(8, 10, 18, 0.82) 55%, var(--bg) 100%),
    url("../img/intro-home_bg-xl.png") center / cover no-repeat,
    #10131d;
}

.page-home .intro-home::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8rem;
  background: linear-gradient(180deg, transparent, var(--bg));
  pointer-events: none;
}

.page-home .intro-home .container {
  position: relative;
  z-index: 1;
  max-width: 86rem;
  margin-left: auto;
  margin-right: auto;
}

.page-home .intro-home__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 2rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  background: rgba(232, 195, 106, 0.1);
  border: 1px solid rgba(232, 195, 106, 0.28);
  color: var(--gold-2);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-home .intro-home__badge::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0.4rem rgba(61, 214, 140, 0.2);
}

.page-home .intro-home__title {
  margin: 0 0 2rem;
  color: #fff;
  font-size: clamp(3.4rem, 5vw, 6.2rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.05;
  text-wrap: balance;
}

.page-home .intro-home__title span {
  background: linear-gradient(90deg, var(--gold-2), #fff 45%, var(--ruby-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-home .intro-home__text {
  margin: 0 0 2.4rem;
  max-width: 68rem;
  color: var(--muted);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.65;
}

.page-home .author-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem 1.8rem;
  max-width: 68rem;
  margin: 0 0 3.2rem;
  padding: 1.4rem 1.6rem;
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
}

.page-home .author-bar__avatar {
  display: block;
  width: 4.8rem;
  height: 4.8rem;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(232, 195, 106, 0.35);
}

.page-home .author-bar__meta {
  flex: 1 1 16rem;
  min-width: 0;
}

.page-home .author-bar__name,
.page-home .author-bar__role {
  margin: 0;
}

.page-home .author-bar__name {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
}

.page-home .author-bar__role {
  color: var(--muted);
  font-size: 1.3rem;
}

.page-home .author-bar__date {
  color: var(--gold-2);
  font-size: 1.3rem;
  font-weight: 600;
  white-space: nowrap;
}

.page-home .author-bar__name a {
  color: #fff;
  text-decoration: none;
}

.page-home .author-bar__name a:hover,
.page-home .author-bar__name a:focus {
  color: var(--gold-2);
}

.page-home .intro-home__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 3.6rem;
}

.page-home .intro-home__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-height: 5.2rem;
  padding: 0 2.2rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff5a73, var(--ruby));
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 1.2rem 3rem rgba(229, 26, 56, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-home .intro-home__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 1.6rem 3.6rem rgba(229, 26, 56, 0.45);
  color: #fff;
}

.page-home .intro-home__ghost {
  display: inline-flex;
  align-items: center;
  min-height: 5.2rem;
  padding: 0 2rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.page-home .intro-home__ghost:hover {
  border-color: var(--gold);
  background: rgba(232, 195, 106, 0.08);
  color: var(--gold-2);
}

.page-home .intro-home__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.page-home .intro-home__stat {
  padding: 1.6rem 1.4rem;
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.page-home .intro-home__stat strong {
  display: block;
  color: var(--gold-2);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.page-home .intro-home__stat span {
  display: block;
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 1.3rem;
}

/* Content shell */
.page-home .cols {
  display: none;
}

.page-home .content {
  padding: 1rem 0 8rem;
  color: var(--muted);
}

.page-home .content .container > p,
.page-home .content .container > .lead {
  max-width: 86rem;
  margin: 0 auto 3.2rem;
  font-size: 1.8rem;
  line-height: 1.7;
}

.page-home .content .container > .heading {
  max-width: 86rem;
  margin: 6.4rem auto 1.6rem;
  font-size: clamp(2.6rem, 3.2vw, 3.6rem);
}

.page-home .content .container > .heading::after {
  content: "";
  display: block;
  width: 4.8rem;
  height: 0.3rem;
  margin-top: 1.2rem;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold), var(--ruby));
}

.page-home .widget-shell {
  max-width: 118rem;
  margin: 0 auto 2rem;
  padding: 1.2rem;
  border-radius: 2.2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.page-home .widget-shell iframe {
  border-radius: 1.4rem;
  background: #fff;
}

/* Casino cards */
.page-home .info-blocks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
  max-width: 118rem;
  margin: 0 auto 2.5rem;
}

.page-home .info-blocks:not(:last-child) {
  margin-bottom: 2.5rem;
}

.page-home .info-blocks__item {
  display: flex;
  flex-direction: column;
  position: static;
  margin: 0 !important;
  padding: 2.2rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: none;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.page-home .info-blocks__item:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 195, 106, 0.45);
  background: var(--surface-2);
}

.page-home .info-blocks__head {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  margin-bottom: 1.4rem;
}

.page-home .info-blocks__head img,
.page-home .info-blocks__item .info-blocks__head img {
  position: static;
  top: auto;
  left: auto;
  width: 7.2rem;
  height: 7.2rem;
  flex-shrink: 0;
  object-fit: contain;
  margin: 0;
  padding: 0.8rem;
  border-radius: 1.4rem;
  background: #fff;
}

.page-home .info-blocks__item .info-blocks__head .heading {
  font-size: 2rem;
  color: #fff;
}

.page-home .info-blocks p {
  color: var(--muted);
  font-size: 1.55rem;
  line-height: 1.65;
}

.page-home .casino-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.page-home .casino-card__meta span,
.page-home .pill {
  display: inline-flex;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(232, 195, 106, 0.12);
  color: var(--gold-2);
  font-size: 1.2rem;
  font-weight: 600;
}

.page-home .casino-card__rank {
  display: inline-flex;
  margin-bottom: 0.4rem;
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-home .info-blocks--flags {
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
}

.page-home .info-blocks--flags .info-blocks__item {
  background: rgba(229, 26, 56, 0.08);
  border-color: rgba(229, 26, 56, 0.18);
}

.page-home .info-blocks--flags .info-blocks__item:hover {
  border-color: rgba(229, 26, 56, 0.45);
}

.page-home .info-blocks--flags .info-blocks__head img {
  width: 4.4rem;
  height: 4.4rem;
  background: transparent;
  padding: 0;
  filter: drop-shadow(0 0 0.8rem rgba(229, 26, 56, 0.35));
}

.page-home .info-blocks--flags .heading {
  font-size: 1.7rem;
}

/* Criteria grid */
.page-home .check-list {
  max-width: 118rem;
  margin: 0 auto 2.5rem;
  font-size: 1.55rem;
}

.page-home .check-list ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.page-home .check-list li {
  width: 100%;
  margin: 0 !important;
  padding: 2rem 1.8rem 1.8rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
}

.page-home .check-list h3 {
  color: #fff;
  font-size: 1.8rem;
}

.page-home .check-list--cols h2,
.page-home .check-list--cols h3,
.page-home .check-list--cols h4 {
  color: #fff;
}

.page-home .check-list--cols p {
  color: var(--muted);
  padding: 0;
}

.page-home .check-list h3::before {
  top: 0.15rem;
}

/* Comparison */
.page-home .compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
  max-width: 118rem;
  margin: 0 auto 2.5rem;
}

.page-home .compare-card {
  padding: 2.4rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
}

.page-home .compare-card h3 {
  margin: 0 0 1.8rem;
  color: #fff;
  font-size: 2.2rem;
}

.page-home .compare-card h4 {
  margin: 0 0 0.8rem;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-home .compare-card ul {
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.page-home .compare-card li {
  position: relative;
  margin: 0 0 0.8rem;
  padding-left: 2.2rem;
  color: var(--muted);
  font-size: 1.55rem;
  line-height: 1.45;
}

.page-home .compare-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
}

.page-home .compare-card__pros h4 {
  color: var(--green);
}

.page-home .compare-card__pros li::before {
  background: var(--green);
}

.page-home .compare-card__cons h4 {
  color: var(--ruby-2);
}

.page-home .compare-card__cons li::before {
  background: var(--ruby-2);
}

.page-home .table {
  display: none;
}

/* Steps */
.page-home .stepper {
  max-width: 86rem;
  margin: 0 auto 2.5rem;
}

.page-home .stepper__list li {
  padding: 0 0 2.4rem 6.4rem;
}

.page-home .stepper__list li:nth-child(n+2) {
  margin-top: 0;
}

.page-home .stepper__list li:not(:last-child)::before {
  left: 2.1rem;
  background: linear-gradient(180deg, var(--gold), rgba(232, 195, 106, 0.1));
  width: 0.2rem;
}

.page-home .stepper__list li::after {
  width: 4.4rem;
  height: 4.4rem;
  background: linear-gradient(180deg, var(--gold-2), #c4922d);
  color: #1a1408;
  border: 0;
  font-size: 1.6rem;
}

.page-home .stepper__list li:last-child::after {
  background: var(--green) center / 1.8rem no-repeat;
  color: transparent;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 21 17'><path fill='%23081410' d='m16.875.85-9 9-3.75-3.75L.937 9.25 4.688 13l3 3 .188.15L20.063 4 16.875.85Z'/></svg>");
}

.page-home .stepper__list li:last-child p,
.page-home .stepper__list li:last-child h3 {
  color: var(--text);
}

.page-home .stepper__list h3 {
  margin: 0 0 0.6rem;
  color: #fff;
  font-size: 2rem;
}

.page-home .stepper__list p {
  color: var(--muted);
  font-size: 1.6rem;
  line-height: 1.6;
}

/* Who we are extras */
.page-home .who-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  max-width: 86rem;
  margin: -1.2rem auto 2.4rem;
}

.page-home .who-pills span {
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  background: rgba(79, 140, 255, 0.12);
  border: 1px solid rgba(79, 140, 255, 0.22);
  color: #c9dbff;
  font-size: 1.3rem;
  font-weight: 600;
}

/* FAQ */
.page-home .faq {
  max-width: 86rem;
  margin: 0 auto;
  font-size: 1.8rem;
}

.page-home .faq__card {
  padding: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1.6rem;
}

.page-home .faq__label {
  padding: 1.8rem 5.6rem 1.8rem 2rem;
  color: #fff;
  font-size: 1.8rem;
}

.page-home .faq__label::before {
  top: 2.2rem;
  right: 2rem;
  border-color: var(--gold);
}

.page-home .faq__body {
  color: var(--muted);
  font-size: 1.6rem;
  line-height: 1.65;
}

.page-home .faq__input:checked ~ .faq__body {
  padding: 0 2rem 2rem;
}

/* Conclusion highlight */
.page-home .closing-note {
  max-width: 86rem;
  margin: 0 auto 2.4rem;
  padding: 2.4rem;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(232, 195, 106, 0.12), rgba(229, 26, 56, 0.08));
  border: 1px solid rgba(232, 195, 106, 0.22);
}

.page-home .closing-note p {
  margin: 0;
  color: var(--text);
}

/* Footer */
.page-home .footer {
  padding: 5rem 0 4rem;
  background:
    linear-gradient(180deg, var(--bg) 0%, #07080e 40%),
    url("../img/footer_bg-xl.png") center / cover no-repeat;
  border-top: 1px solid var(--line);
}

.page-home .footer .container {
  max-width: 118rem;
}

.page-home .footer__subtitle {
  color: var(--green);
  font-size: 2rem;
  font-weight: 700;
}

.page-home .footer__info-imgs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
}

.page-home .footer__info-imgs > img {
  height: 4.4rem;
  width: auto;
}

.page-home .footer__info-imgs img:nth-child(n+2) {
  margin-left: 0;
}

.page-home .footer__partner {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1rem;
  border-radius: 0.8rem;
  background: #fff;
  line-height: 0;
  transition: opacity 0.2s ease;
}

.page-home .footer__partner img {
  display: block;
  height: 3.6rem;
  width: auto;
  border-radius: 0;
}

.page-home .footer__partner:hover,
.page-home .footer__partner:focus {
  opacity: 0.82;
}

.page-home .footer__info-help {
  color: var(--gold-2);
}

.page-home .footer__desc,
.page-home .footer__bottom {
  color: #8d8a84;
}

.page-home .footer__bottom a:hover {
  color: var(--gold-2);
}

.page-home .footer__nav {
  margin: 0 0 2.4rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid var(--line);
}

.page-home .footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .footer__nav a {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: none;
}

.page-home .footer__nav a:hover,
.page-home .footer__nav a:focus {
  color: var(--gold-2);
}

.page-home .footer__age {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 1.6rem;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
}

.page-home .footer__age-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background: var(--ruby);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
}

.page-home .footer__tel a {
  color: #fff;
  text-decoration: none;
}

.page-home .footer__tel small {
  display: block;
  margin-top: 0.4rem;
  color: #8d8a84;
  font-size: 1.3rem;
  font-weight: 500;
}

.page-home .footer__affiliate {
  margin: 0 0 2rem;
  color: #8d8a84;
  font-size: 1.3rem;
  line-height: 1.55;
}

.page-home .footer__bottom {
  gap: 1.2rem 0;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .page-home .info-blocks__item,
  .page-home .intro-home__cta,
  .page-home .header__nav a {
    transition: none;
  }

  .page-home .info-blocks__item:hover,
  .page-home .intro-home__cta:hover {
    transform: none;
  }
}

/* Kill leftover absolute logos from template.css (≥768px) */
@media screen and (min-width: 768px) {
  .page-home .info-blocks__item {
    position: static;
    padding: 2.2rem;
  }

  .page-home .info-blocks__item:nth-child(n+2) .info-blocks__head img,
  .page-home .info-blocks__item .info-blocks__head img {
    position: static;
    top: auto;
    left: auto;
    margin: 0;
  }
}

@media (max-width: 1100px) {
  .page-home .info-blocks,
  .page-home .info-blocks--flags,
  .page-home .check-list ul,
  .page-home .compare-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .page-home .intro-home {
    padding: 4.4rem 0 3.6rem;
    background-image:
      radial-gradient(700px 320px at 90% 0%, rgba(229, 26, 56, 0.22), transparent 55%),
      radial-gradient(600px 280px at 0% 80%, rgba(79, 140, 255, 0.16), transparent 50%),
      linear-gradient(180deg, rgba(8, 10, 18, 0.55) 0%, rgba(8, 10, 18, 0.86) 60%, var(--bg) 100%),
      url("../img/intro-home_bg-xs.png");
  }

  .page-home .intro-home__stats,
  .page-home .info-blocks,
  .page-home .info-blocks--flags,
  .page-home .check-list ul,
  .page-home .compare-grid {
    grid-template-columns: 1fr;
  }

  .page-home .intro-home__cta,
  .page-home .intro-home__ghost {
    width: 100%;
  }

  .page-home .author-bar__date {
    white-space: normal;
    width: 100%;
  }

  .page-home .content .container > .heading {
    margin-top: 4.4rem;
  }

  .page-home .header .logo {
    height: 4.8rem;
  }

  .page-home .header .logo__img {
    width: 4.8rem;
    height: 4.8rem;
  }
}

/* Full editorial article */
.page-home .casino-table-wrap,
.page-home .casino-review,
.page-home .content .table {
  max-width: 118rem;
  margin-right: auto;
  margin-left: auto;
}

.page-home .casino-table-wrap,
.page-home .content .table {
  display: block;
  overflow-x: auto;
  margin-bottom: 3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.page-home .casino-comparison,
.page-home .content .table table {
  width: 100%;
  min-width: 78rem;
  border-collapse: collapse;
  color: var(--muted);
  font-size: 1.45rem;
}

.page-home .casino-comparison th,
.page-home .casino-comparison td,
.page-home .content .table td {
  padding: 1.4rem 1.6rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.page-home .casino-comparison th,
.page-home .content .table tr:first-child td {
  color: var(--gold-2);
  background: rgba(232, 195, 106, 0.08);
  font-weight: 700;
}

.page-home .casino-comparison tbody tr:last-child td,
.page-home .content .table tr:last-child td {
  border-bottom: 0;
}

.page-home .casino-comparison__brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.page-home .casino-comparison__brand img {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
  padding: 0.4rem;
  border-radius: 0.8rem;
  background: #fff;
}

.page-home .casino-review {
  margin-top: 5rem;
  margin-bottom: 5rem;
  padding: 2.8rem;
  border: 1px solid var(--line);
  border-radius: 2.4rem;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  box-shadow: var(--shadow);
}

.page-home .casino-review__head {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-bottom: 2rem;
}

.page-home .casino-review__logo {
  width: 6.4rem;
  height: 6.4rem;
  padding: 0.7rem;
  object-fit: contain;
  border-radius: 1.4rem;
  background: #fff;
}

.page-home .casino-review__title {
  margin: 0;
  color: #fff;
  font-size: 3rem;
  letter-spacing: -0.03em;
}

.page-home .casino-media {
  margin-bottom: 2.8rem;
}

.page-home .casino-media__desktop {
  display: block;
  width: 100%;
  max-height: 64rem;
  object-fit: cover;
  object-position: top;
  border: 1px solid var(--line-strong);
  border-radius: 1.6rem;
  background: #fff;
}

.page-home .casino-mobile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.2rem;
}

.page-home .casino-mobile-grid img {
  display: block;
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 1.4rem;
  background: #fff;
}

.page-home .casino-review__sections {
  max-width: 92rem;
  margin: 0 auto;
}

.page-home .casino-review__sections h4 {
  margin: 2.6rem 0 0.8rem;
  color: #fff;
  font-size: 1.9rem;
}

.page-home .casino-review__sections p,
.page-home .casino-review__summary {
  color: var(--muted);
  font-size: 1.6rem;
  line-height: 1.7;
}

.page-home .casino-facts {
  max-width: 92rem;
  margin: 3rem auto;
  padding: 2rem;
  border: 1px solid rgba(232, 195, 106, 0.2);
  border-radius: 1.6rem;
  background: rgba(232, 195, 106, 0.07);
}

.page-home .casino-facts dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem 2rem;
  margin: 0;
}

.page-home .casino-facts dt {
  color: var(--muted);
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.page-home .casino-facts dd {
  margin: 0.25rem 0 0;
  color: #fff;
  font-size: 1.55rem;
  font-weight: 700;
}

.page-home .pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  max-width: 92rem;
  margin: 0 auto 2rem;
}

.page-home .pros-cons__col {
  padding: 1.8rem;
  border-radius: 1.4rem;
}

.page-home .pros-cons__col h4 {
  margin: 0 0 1rem;
  font-size: 1.6rem;
}

.page-home .pros-cons__col ul {
  margin: 0;
  padding-left: 2rem;
  color: var(--muted);
  font-size: 1.5rem;
  line-height: 1.55;
}

.page-home .pros-cons__col--pros {
  border: 1px solid rgba(61, 214, 140, 0.24);
  background: rgba(61, 214, 140, 0.08);
}

.page-home .pros-cons__col--pros h4 {
  color: var(--green);
}

.page-home .pros-cons__col--cons {
  border: 1px solid rgba(255, 77, 109, 0.24);
  background: rgba(255, 77, 109, 0.08);
}

.page-home .pros-cons__col--cons h4 {
  color: var(--ruby-2);
}

.page-home .casino-review__summary {
  max-width: 92rem;
  margin: 0 auto;
  padding: 1.6rem 1.8rem;
  border-left: 0.3rem solid var(--gold);
  background: rgba(255, 255, 255, 0.035);
}

.page-home .content .container > section {
  max-width: 86rem;
  margin: 5rem auto 0;
}

.page-home .content .container > section > p,
.page-home .content .container > h2 + p,
.page-home .content .container > h3 + p,
.page-home .content .container > p {
  color: var(--muted);
  font-size: 1.7rem;
  line-height: 1.7;
}

.page-home .content .container > h3.heading {
  margin-top: 3.4rem;
  font-size: 2.3rem;
}

.page-home .content .container > ul {
  max-width: 86rem;
  margin: 0 auto 3rem;
  padding-left: 2.4rem;
  color: var(--muted);
  font-size: 1.65rem;
  line-height: 1.65;
}

.page-home .content .container > ul li + li {
  margin-top: 0.8rem;
}

.page-home .faq-block details {
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  background: var(--surface);
}

.page-home .faq-block summary {
  padding: 1.7rem 2rem;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 700;
  cursor: pointer;
}

.page-home .faq-block details p {
  margin: 0;
  padding: 0 2rem 1.8rem;
  color: var(--muted);
  font-size: 1.55rem;
  line-height: 1.65;
}

@media (max-width: 767px) {
  .page-home .casino-review {
    padding: 1.6rem;
    border-radius: 1.8rem;
  }

  .page-home .casino-mobile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-home .casino-facts dl,
  .page-home .pros-cons {
    grid-template-columns: 1fr;
  }
}

/* Offer cards instead of a second identical table */
.page-home .offer-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
  max-width: 118rem;
  margin: 0 auto 3rem;
}

.page-home .offer-card {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 1.8rem;
  background: var(--surface);
}

.page-home .offer-card h3 {
  margin: 0 0 1.2rem;
  font-size: 2rem;
}

.page-home .offer-card h3 a {
  color: #fff;
  text-decoration: none;
}

.page-home .offer-card h3 a:hover,
.page-home .offer-card h3 a:focus {
  color: var(--gold-2);
}

.page-home .offer-card dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  margin: 0 0 1.6rem;
}

.page-home .offer-card div {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
}

.page-home .offer-card dt {
  color: var(--muted);
  font-size: 1.3rem;
  font-weight: 600;
}

.page-home .offer-card dd {
  margin: 0;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  text-align: right;
}

.page-home .offer-card__link {
  display: inline-flex;
  color: var(--gold-2);
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
}

.page-home .offer-note {
  max-width: 86rem;
  margin: 0 auto 2rem;
}

/* Legal / inner pages */
.page-home .legal {
  padding: 4.8rem 0 7rem;
}

.page-home .legal-article {
  max-width: 82rem;
  margin: 0 auto;
}

.page-home .legal-article h1 {
  margin: 0 0 1.2rem;
  color: #fff;
  font-size: 3.6rem;
  letter-spacing: -0.04em;
}

.page-home .legal-article .updated {
  margin: 0 0 2.4rem;
  color: var(--muted);
  font-size: 1.4rem;
}

.page-home .legal-article h2 {
  margin: 3.2rem 0 1rem;
  color: #fff;
  font-size: 2.2rem;
  scroll-margin-top: 9.2rem;
}

.page-home .legal-article p,
.page-home .legal-article li {
  color: var(--muted);
  font-size: 1.65rem;
  line-height: 1.7;
}

.page-home .legal-article ul {
  padding-left: 2.2rem;
}

.page-home .legal-article li + li {
  margin-top: 0.6rem;
}

.page-home .author-profile {
  display: grid;
  grid-template-columns: 12.8rem 1fr;
  gap: 2rem 2.4rem;
  align-items: center;
  margin: 0 0 3.2rem;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 1.8rem;
  background: var(--surface);
}

.page-home .author-profile__photo {
  display: block;
  width: 12.8rem;
  height: 12.8rem;
  border-radius: 1.6rem;
  object-fit: cover;
  border: 1px solid rgba(232, 195, 106, 0.35);
}

.page-home .author-profile__name,
.page-home .author-profile__role,
.page-home .author-profile__contact {
  margin: 0;
}

.page-home .author-profile__name {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.page-home .author-profile__role {
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 1.5rem;
}

.page-home .author-profile__contact {
  margin-top: 1.2rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.page-home .author-profile__contact a {
  color: var(--gold-2);
}

@media (max-width: 599px) {
  .page-home .author-profile {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

.page-home .help-box {
  margin: 2.4rem 0;
  padding: 2rem;
  border: 1px solid rgba(61, 214, 140, 0.28);
  border-radius: 1.6rem;
  background: rgba(61, 214, 140, 0.08);
}

.page-home .help-box p {
  margin: 0;
  color: #fff;
}

.page-home .help-box a {
  color: var(--gold-2);
}

.page-home .page-404 {
  text-align: center;
  padding: 8rem 0 10rem;
}

.page-home .page-404 h1 {
  margin: 0 0 1.2rem;
  font-size: 4.2rem;
}

.page-home .page-404 p {
  max-width: 56rem;
  margin: 0 auto 2.4rem;
  color: var(--muted);
  font-size: 1.7rem;
}

.page-home .page-404__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.page-home .page-404__links a {
  display: inline-flex;
  padding: 1rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 1100px) {
  .page-home .header__nav a {
    padding: 0.7rem 0.9rem;
    font-size: 1.35rem;
  }
}

@media (max-width: 899px) {
  .page-home .header__menu-toggle {
    display: block !important;
    z-index: 4;
  }

  .page-home .header__nav {
    display: none !important;
    position: absolute !important;
    top: calc(100% + 0.8rem);
    right: 1.6rem;
    left: 1.6rem;
    z-index: 20;
    padding: 1.2rem !important;
    border: 1px solid var(--line) !important;
    border-radius: 1.6rem !important;
    background: #10131d !important;
    box-shadow: var(--shadow) !important;
  }

  .page-home .header__nav--active {
    display: block !important;
  }

  .page-home .header__nav ul {
    display: grid;
    gap: 0.4rem;
  }

  .page-home .header__nav a {
    justify-content: flex-start;
    width: 100%;
    padding: 1.2rem 1.4rem;
    white-space: normal;
  }

  .page-home .offer-cards {
    grid-template-columns: 1fr;
  }

  .page-home .legal-article h1,
  .page-home .page-404 h1 {
    font-size: 3rem;
  }
}
