:root {
  /* Typography */
  --font-body: "Open Sans", Arial, sans-serif;
  --font-heading: "Nunito", Arial, sans-serif;

  /* Core palette */
  --color-page-bg: #f4f7fb;
  --color-page-bg-soft: #edf3f8;
  --color-surface: #ffffff;
  --color-surface-soft: #f8fbfd;
  --color-surface-blue: #eef7fc;
  --color-navy: #071e3d;
  --color-navy-deep: #04162e;
  --color-navy-soft: #0d3159;
  --color-blue: #0070ba;
  --color-blue-dark: #00558f;
  --color-blue-bright: #009cde;
  --color-gold: #e2ad24;
  --color-gold-dark: #b87f00;
  --color-gold-light: #f5d778;
  --color-success: #16865c;
  --color-danger: #bd4c5c;

  /* Text */
  --color-heading: #102a43;
  --color-text: #334e68;
  --color-text-soft: #52697d;
  --color-text-muted: #71869a;
  --color-text-inverse: #ffffff;

  /* Borders and shadows */
  --color-border: #d7e2ec;
  --color-border-blue: rgba(0, 112, 186, 0.22);
  --shadow-xs: 0 2px 8px rgba(16, 42, 67, 0.06);
  --shadow-sm: 0 8px 24px rgba(16, 42, 67, 0.08);
  --shadow-md: 0 16px 40px rgba(16, 42, 67, 0.12);
  --shadow-lg: 0 24px 60px rgba(7, 30, 61, 0.17);
  --shadow-cta: 0 10px 24px rgba(170, 112, 0, 0.24);

  /* Layout */
  --container: 1240px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: 0.25s ease;

  /* Bootstrap aliases */
  --bs-body-font-family: var(--font-body);
  --bs-body-color: var(--color-text);
  --bs-body-bg: var(--color-page-bg);
  --bs-heading-color: var(--color-heading);
  --bs-link-color: var(--color-blue);
  --bs-link-hover-color: var(--color-blue-dark);
  --bs-border-color: var(--color-border);
  --bs-border-radius: var(--radius-sm);
}

/* Document base */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--color-page-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: var(--color-blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover,
a:focus {
  color: var(--color-blue-dark);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(226, 173, 36, 0.5);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  color: var(--color-heading);
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.18;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 5vw, 4.65rem);
  font-weight: 900;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(1.95rem, 3.5vw, 3rem);
  letter-spacing: -0.025em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
}

p {
  margin-top: 0;
  margin-bottom: 1em;
}

p:last-child {
  margin-bottom: 0;
}

strong {
  color: var(--color-heading);
}

ul,
ol {
  margin-top: 0;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.container--narrow {
  max-width: 920px;
}

/* Shared section structure */
.content-section {
  position: relative;
  padding: 92px 0;
  background: var(--color-surface);
}

.content-section--soft {
  background: linear-gradient(180deg, #f2f7fb 0%, #eef4f8 100%);
}

.content-section--ranking {
  padding-top: 82px;
  background:
    radial-gradient(circle at 90% 0%, rgba(0, 156, 222, 0.08), transparent 30%),
    var(--color-page-bg);
}

.content-section--dark {
  overflow: hidden;
  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(0, 156, 222, 0.12),
      transparent 30%
    ),
    linear-gradient(145deg, var(--color-navy) 0%, var(--color-navy-deep) 100%);
}

.content-section--responsible {
  background: var(--color-page-bg);
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 50px;
  align-items: end;
}

.section-heading--split p {
  max-width: 560px;
  margin: 0;
  color: var(--color-text-soft);
}

.section-heading--center {
  max-width: 760px;
  margin-right: auto;
  margin-bottom: 48px;
  margin-left: auto;
  text-align: center;
}

.section-heading--center p {
  color: var(--color-text-soft);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  color: var(--color-blue-dark);
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-gold);
}

.section-eyebrow--light {
  color: rgba(255, 255, 255, 0.78);
}

.section-eyebrow--gold {
  color: var(--color-gold-light);
}

/* Shared buttons */
.btn-cta,
.navbar-links .btn-play,
.casino-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 28px;
  border: 1px solid rgba(139, 91, 0, 0.22);
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    var(--color-gold-light) 0%,
    var(--color-gold) 52%,
    #c98d08 100%
  );
  box-shadow: var(--shadow-cta);
  color: #10243e;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0.015em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    filter var(--transition);
}

.btn-cta:hover,
.btn-cta:focus,
.navbar-links .btn-play:hover,
.navbar-links .btn-play:focus,
.casino-card__cta:hover,
.casino-card__cta:focus {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(170, 112, 0, 0.32);
  color: #10243e;
  filter: saturate(1.06) brightness(0.99);
}

/* Header */
.top-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 30, 61, 0.98);
  box-shadow: 0 10px 28px rgba(4, 20, 42, 0.16);
  backdrop-filter: blur(14px);
}

.navbar-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 40px), var(--container));
  min-height: 76px;
  margin-inline: auto;
}

.navbar-brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.navbar-logo {
  display: block;
  width: auto;
  height: 85px;
  object-fit: contain;
}

.navbar-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  margin-left: auto;
}

.navbar-links .navbar-link,
.navbar-links .dropbtn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 12px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition:
    color var(--transition),
    background-color var(--transition);
}

.navbar-links .navbar-link:hover,
.navbar-links .navbar-link:focus,
.navbar-links .dropbtn:hover,
.navbar-links .dropbtn:focus {
  background: rgba(255, 255, 255, 0.07);
  color: var(--color-text-inverse);
}

.navbar-links .navbar-link.active,
.navbar-links .navbar-link[aria-current="page"],
.navbar-links .dropdown.active-page > .dropbtn {
  background: rgba(226, 173, 36, 0.13);
  color: var(--color-gold-light);
}

.navbar-links .btn-play {
  min-height: 43px;
  margin-left: 9px;
  padding: 11px 22px;
  font-size: 0.9rem;
  white-space: nowrap;
}

.navbar-links .dropdown {
  position: relative;
}

.dropdown-arrow {
  margin-left: 6px;
  transition: transform var(--transition);
}

.navbar-links .dropdown:hover .dropdown-arrow,
.navbar-links .dropdown:focus-within .dropdown-arrow,
.navbar-links .dropdown.is-open .dropdown-arrow,
.navbar-links .dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

.navbar-links .dropdown-content {
  position: absolute;
  top: calc(100% + 11px);
  right: 0;
  z-index: 1002;
  min-width: 210px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 13px;
  background: var(--color-navy-soft);
  box-shadow: 0 20px 44px rgba(2, 14, 30, 0.32);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-7px);
  transition:
    opacity var(--transition),
    visibility var(--transition),
    transform var(--transition);
}

.navbar-links .dropdown-content a {
  display: block;
  padding: 11px 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    color var(--transition),
    background-color var(--transition);
}

.navbar-links .dropdown-content a:hover,
.navbar-links .dropdown-content a:focus,
.navbar-links .dropdown-content a.active,
.navbar-links .dropdown-content a[aria-current="page"] {
  background: rgba(226, 173, 36, 0.14);
  color: var(--color-gold-light);
}

.navbar-links .dropdown:hover .dropdown-content,
.navbar-links .dropdown:focus-within .dropdown-content {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.burger-menu {
  position: relative;
  z-index: 2;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition:
    border-color var(--transition),
    background-color var(--transition);
}

.burger-menu:hover,
.burger-menu:focus {
  border-color: rgba(245, 215, 120, 0.48);
  background: rgba(255, 255, 255, 0.1);
}

.burger-menu span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 3px;
  background: var(--color-text-inverse);
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.burger-menu.is-open span:nth-child(1),
.burger-menu.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger-menu.is-open span:nth-child(2),
.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.is-open span:nth-child(3),
.burger-menu.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background-image: url("img/hero-banner.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -28%;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(4, 20, 42, 0.95) 0%,
      rgba(5, 27, 54, 0.87) 47%,
      rgba(6, 31, 61, 0.62) 100%
    ),
    linear-gradient(180deg, rgba(7, 30, 61, 0.12), rgba(4, 20, 42, 0.45));
}

.hero__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.72fr);
  gap: 70px;
  align-items: center;
  min-height: 650px;
  padding-top: 88px;
  padding-bottom: 88px;
}

.hero__content {
  max-width: 760px;
}

.hero h1 {
  max-width: 760px;
  color: var(--color-text-inverse);
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.24);
}

.hero__subtitle {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  line-height: 1.72;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.hero__cta {
  min-width: 210px;
}

.hero__text-link {
  position: relative;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  text-decoration: none;
}

.hero__text-link::after {
  content: "→";
  margin-left: 8px;
  color: var(--color-gold-light);
  transition: transform var(--transition);
}

.hero__text-link:hover,
.hero__text-link:focus {
  color: var(--color-text-inverse);
}

.hero__text-link:hover::after,
.hero__text-link:focus::after {
  display: inline-block;
  transform: translateX(4px);
}

.hero__note {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.82rem;
}

.hero__summary {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.055)
  );
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.hero__summary-head,
.hero__summary-foot {
  padding: 18px 22px;
}

.hero__summary-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.79rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero__summary-head strong {
  color: var(--color-gold-light);
  font-size: 0.78rem;
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero__metrics > div {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  min-height: 122px;
  padding: 20px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__metrics > div:nth-child(2n) {
  border-right: 0;
}

.hero__metrics > div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.hero__metrics strong {
  color: var(--color-text-inverse);
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
}

.hero__metrics span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  line-height: 1.35;
}

.hero__summary-foot {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  line-height: 1.55;
}

/* Casino ranking */
.casino-card-list {
  display: grid;
  gap: 22px;
}

.casino-card-list__guide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: 25px 28px;
  border: 1px solid rgba(0, 112, 186, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(0, 156, 222, 0.08), transparent 46%),
    var(--color-surface);
  box-shadow: var(--shadow-xs);
}

.casino-card-list__guide-copy {
  max-width: 760px;
}

.casino-card-list__eyebrow {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--color-blue-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  line-height: 1.2;
  text-transform: uppercase;
}

.casino-card-list__guide-copy > strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  line-height: 1.35;
}

.casino-card-list__guide-copy p {
  margin: 0;
  color: var(--color-text-soft);
  font-size: 0.88rem;
  line-height: 1.6;
}

.casino-card-list__guide-meta {
  display: grid;
  gap: 8px;
  min-width: 210px;
}

.casino-card-list__guide-meta span {
  position: relative;
  padding-left: 17px;
  color: var(--color-text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.4;
}

.casino-card-list__guide-meta span::before {
  content: "";
  position: absolute;
  top: 0.52em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 0 4px rgba(226, 173, 36, 0.13);
}

.casino-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: var(--color-surface);
  box-shadow: var(--shadow-xs);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.casino-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-border-blue);
  box-shadow: var(--shadow-md);
}

.casino-card--featured {
  border-color: rgba(226, 173, 36, 0.58);
  box-shadow: 0 14px 34px rgba(160, 105, 0, 0.11);
}

.casino-card--featured::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-gold-dark),
    var(--color-gold-light) 54%,
    var(--color-blue-bright)
  );
}

.casino-card__header {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 176px;
  align-items: center;
  min-height: 120px;
  border-bottom: 1px solid var(--color-border);
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.casino-card__rank {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  align-self: stretch;
  border-right: 1px solid var(--color-border);
  background: #f7fafc;
}

.casino-card__rank-label {
  margin-bottom: 3px;
  color: var(--color-text-muted);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  line-height: 1;
  text-transform: uppercase;
}

.casino-card__rank strong {
  color: var(--color-blue-dark);
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
}

.casino-card--featured .casino-card__rank {
  background: #fff9e9;
}

.casino-card--featured .casino-card__rank strong {
  color: var(--color-gold-dark);
}

.casino-card__brand {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
  padding: 20px 24px;
}

.casino-card__logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 126px;
  width: 126px;
  height: 80px;
  padding: 10px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: var(--color-surface);
  box-shadow: 0 7px 18px rgba(16, 42, 67, 0.07);
  text-decoration: none;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.casino-card__logo-link:hover,
.casino-card__logo-link:focus {
  transform: translateY(-2px);
  border-color: var(--color-border-blue);
  box-shadow: var(--shadow-sm);
}

.casino-card__logo {
  width: 104px;
  height: 60px;
  object-fit: contain;
}

.casino-card__brand-copy {
  min-width: 0;
}

.casino-card__tag-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 7px;
}

.casino-card__tag,
.casino-card__top-pick {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1;
  text-transform: uppercase;
}

.casino-card__tag {
  background: var(--color-surface-blue);
  color: var(--color-blue-dark);
}

.casino-card__top-pick {
  background: #fff5d3;
  color: #8a6100;
}

.casino-card__top-pick::before {
  content: "★";
  margin-right: 5px;
}

.casino-card__name {
  margin: 0 0 5px;
  font-size: 1.28rem;
}

.casino-card__name a {
  color: var(--color-heading);
  text-decoration: none;
}

.casino-card__name a:hover,
.casino-card__name a:focus {
  color: var(--color-blue);
}

.casino-card__best-for {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.4;
}

.casino-card__rating {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  align-self: stretch;
  padding: 20px 24px;
  border-left: 1px solid var(--color-border);
  background: #fbfdff;
  text-align: right;
}

.casino-card__rating-label {
  margin-bottom: 5px;
  color: var(--color-text-muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.065em;
  line-height: 1.2;
  text-transform: uppercase;
}

.casino-card__rating-line {
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.casino-card__rating-line strong {
  color: var(--color-heading);
  font-family: var(--font-heading);
  font-size: 1.72rem;
  font-weight: 900;
  line-height: 1;
}

.casino-card__rating-line span {
  color: var(--color-text-muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.casino-card__stars {
  position: relative;
  display: inline-block;
  width: 78px;
  margin-top: 7px;
  overflow: hidden;
  color: #dbe3ea;
  font-size: 0.88rem;
  letter-spacing: 1px;
  line-height: 1;
  white-space: nowrap;
}

.casino-card__stars::before {
  content: "★★★★★";
}

.casino-card__stars > span {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  overflow: hidden;
  color: #e1a615;
  white-space: nowrap;
}

.casino-card__body {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: stretch;
}

.casino-card__offer {
  padding: 25px 28px;
}

.casino-card__section-label,
.payment-profile__eyebrow {
  display: block;
  margin-bottom: 5px;
  color: var(--color-text-muted);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-transform: uppercase;
}

.casino-card__bonus {
  margin-bottom: 10px;
  color: var(--color-gold-dark);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.3;
}

.casino-card__summary {
  margin-bottom: 14px;
  color: var(--color-text-soft);
  font-size: 0.88rem;
  line-height: 1.58;
}

.casino-card__features {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.casino-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  color: var(--color-text);
  font-size: 0.82rem;
  line-height: 1.45;
}

.casino-card__features li > span {
  color: var(--color-success);
  font-weight: 900;
}

.payment-profile {
  display: flex;
  justify-content: center;
  flex-direction: column;
  min-width: 0;
  padding: 25px 28px;
  border-left: 1px solid var(--color-border);
  background:
    linear-gradient(145deg, rgba(0, 112, 186, 0.055), transparent 58%), #f8fbfd;
}

.payment-profile__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 15px;
}

.payment-profile__identity {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.payment-profile__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 58px;
  width: 58px;
  height: 46px;
  padding: 7px;
  border: 1px solid var(--color-border);
  border-radius: 11px;
  background: var(--color-surface);
  box-shadow: var(--shadow-xs);
}

.payment-profile__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.payment-profile__identity strong {
  display: block;
  color: var(--color-heading);
  font-size: 0.93rem;
  line-height: 1.35;
}

.payment-profile__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 28px;
  padding: 6px 10px;
  border: 1px solid rgba(184, 127, 0, 0.2);
  border-radius: 999px;
  background: #fff6db;
  color: #805a00;
  font-size: 0.65rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.payment-profile__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: 0;
}

.payment-profile__facts > div {
  min-width: 0;
  padding: 10px 11px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.86);
}

.payment-profile__facts dt {
  margin-bottom: 3px;
  color: var(--color-text-muted);
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1.2;
  text-transform: uppercase;
}

.payment-profile__facts dd {
  margin: 0;
  color: var(--color-heading);
  font-size: 0.73rem;
  font-weight: 800;
  line-height: 1.38;
}

.payment-profile__note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 12px 0 0;
  color: var(--color-text-soft);
  font-size: 0.72rem;
  line-height: 1.48;
}

.payment-profile__note > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 19px;
  width: 19px;
  height: 19px;
  margin-top: 1px;
  border-radius: 50%;
  background: #fff2c4;
  color: #805a00;
  font-size: 0.69rem;
  font-weight: 900;
}

.casino-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 20px 16px 28px;
  border-top: 1px solid var(--color-border);
  background: #fbfdff;
}

.casino-card__footer > p {
  max-width: 720px;
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.74rem;
  line-height: 1.5;
}

.casino-card__footer-action {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.casino-card__cta {
  min-width: 164px;
  min-height: 44px;
  padding: 11px 21px;
  font-size: 0.84rem;
}

.casino-card__footer-action > span {
  max-width: 96px;
  color: var(--color-text-muted);
  font-size: 0.61rem;
  line-height: 1.35;
}

.casino-card-list__disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 17px 19px;
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-blue);
  border-radius: 13px;
  background: var(--color-surface);
  color: var(--color-text-soft);
}

.casino-card-list__disclaimer > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--color-surface-blue);
  color: var(--color-blue-dark);
  font-family: Georgia, serif;
  font-weight: 700;
  font-style: italic;
}

.casino-card-list__disclaimer p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.58;
}

/* Split content blocks */
.feature-split {
  display: grid;
  grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1.08fr);
  gap: 64px;
  align-items: center;
}

.feature-split--reverse .feature-split__media {
  order: 2;
}

.feature-split--reverse .feature-split__content {
  order: 1;
}

.feature-split__media {
  position: relative;
}

.feature-split__media::before {
  content: "";
  position: absolute;
  top: 20px;
  right: -18px;
  bottom: -18px;
  left: 18px;
  z-index: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    145deg,
    rgba(0, 112, 186, 0.13),
    rgba(226, 173, 36, 0.12)
  );
}

.feature-split__image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  min-height: 360px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.feature-split__content > p {
  color: var(--color-text-soft);
}

.feature-split--dark h1,
.feature-split--dark h2,
.feature-split--dark h3,
.feature-split--dark strong {
  color: var(--color-text-inverse);
}

.feature-split--dark p {
  color: rgba(255, 255, 255, 0.68);
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.criteria-card {
  position: relative;
  min-height: 170px;
  padding: 22px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  box-shadow: var(--shadow-xs);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.criteria-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-border-blue);
  box-shadow: var(--shadow-sm);
}

.criteria-card > span {
  position: absolute;
  top: 17px;
  right: 18px;
  color: rgba(0, 112, 186, 0.18);
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 900;
}

.criteria-card h3 {
  margin-bottom: 8px;
  font-size: 1.06rem;
}

.criteria-card p {
  color: var(--color-text-muted);
  font-size: 0.83rem;
  line-height: 1.55;
}

/* Value cards */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.value-card {
  position: relative;
  min-height: 250px;
  padding: 28px 24px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: linear-gradient(165deg, #ffffff 0%, #f8fbfd 100%);
  box-shadow: var(--shadow-xs);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.value-card::after {
  content: "";
  position: absolute;
  right: -46px;
  bottom: -46px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(0, 156, 222, 0.06);
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-border-blue);
  box-shadow: var(--shadow-sm);
}

.value-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 52px;
  margin-bottom: 22px;
  padding: 0 12px;
  border-radius: 14px;
  background: linear-gradient(
    145deg,
    var(--color-blue),
    var(--color-blue-dark)
  );
  box-shadow: 0 9px 18px rgba(0, 84, 143, 0.2);
  color: var(--color-text-inverse);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 900;
}

.value-card h3 {
  font-size: 1.12rem;
}

.value-card p {
  color: var(--color-text-muted);
  font-size: 0.86rem;
  line-height: 1.62;
}

/* Process cards */
.process-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.process-card {
  position: relative;
  min-height: 300px;
  padding: 26px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.065);
  backdrop-filter: blur(10px);
}

.process-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border: 1px solid rgba(245, 215, 120, 0.4);
  border-radius: 50%;
  color: var(--color-gold-light);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 900;
}

.process-card h3 {
  color: var(--color-text-inverse);
  font-size: 1.08rem;
}

.process-card ol {
  margin: 18px 0 0;
  padding-left: 1.25rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.84rem;
}

.process-card li {
  margin-bottom: 10px;
  padding-left: 4px;
}

/* Payment method grid */
.payment-method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.payment-method-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: var(--color-surface);
  box-shadow: var(--shadow-xs);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.payment-method-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-border-blue);
  box-shadow: var(--shadow-sm);
}

.payment-method-card__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 62px;
  width: 62px;
  height: 52px;
  padding: 8px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: var(--color-surface-soft);
}

.payment-method-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.payment-method-card h3 {
  margin-bottom: 4px;
  font-size: 0.98rem;
}

.payment-method-card p {
  color: var(--color-text-muted);
  font-size: 0.75rem;
  line-height: 1.45;
}

/* Pros and cons */
.pros-cons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.pros-cons__card {
  padding: 30px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-xs);
}

.pros-cons__card--positive {
  border-top: 4px solid var(--color-success);
}

.pros-cons__card--negative {
  border-top: 4px solid var(--color-danger);
}

.pros-cons__heading {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 22px;
}

.pros-cons__heading > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
}

.pros-cons__card--positive .pros-cons__heading > span {
  background: #e9f7f1;
  color: var(--color-success);
}

.pros-cons__card--negative .pros-cons__heading > span {
  background: #faedef;
  color: var(--color-danger);
}

.pros-cons__heading h3 {
  margin: 0;
}

.pros-cons__card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pros-cons__card li {
  position: relative;
  padding-left: 27px;
  color: var(--color-text-soft);
  font-size: 0.9rem;
}

.pros-cons__card--positive li::before,
.pros-cons__card--negative li::before {
  position: absolute;
  top: 1px;
  left: 0;
  font-weight: 900;
}

.pros-cons__card--positive li::before {
  content: "✓";
  color: var(--color-success);
}

.pros-cons__card--negative li::before {
  content: "×";
  color: var(--color-danger);
  font-size: 1.2rem;
}

/* Game categories and safety */
.game-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.game-category-grid article {
  display: flex;
  flex-direction: column;
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: 13px;
  background: var(--color-surface-soft);
}

.game-category-grid strong {
  margin-bottom: 6px;
  font-family: var(--font-heading);
}

.game-category-grid span {
  color: var(--color-text-muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--color-text-soft);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e9f7f1;
  color: var(--color-success);
  font-size: 0.72rem;
  font-weight: 900;
}

.legal-note {
  padding: 16px 18px;
  border: 1px solid rgba(0, 112, 186, 0.18);
  border-left: 3px solid var(--color-blue);
  border-radius: 12px;
  background: var(--color-surface-blue);
  color: var(--color-text-soft);
  font-size: 0.82rem;
  line-height: 1.55;
}

/* Responsible gambling */
.responsible-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  overflow: hidden;
  border-radius: 26px;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(0, 156, 222, 0.18),
      transparent 36%
    ),
    linear-gradient(145deg, var(--color-navy), var(--color-navy-deep));
  box-shadow: var(--shadow-lg);
}

.responsible-panel__media {
  min-height: 380px;
}

.responsible-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.responsible-panel__content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 50px;
}

.responsible-panel h2 {
  color: var(--color-text-inverse);
}

.responsible-panel p {
  color: rgba(255, 255, 255, 0.66);
}

.support-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.support-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.support-links a:hover,
.support-links a:focus {
  background: rgba(255, 255, 255, 0.11);
  color: var(--color-text-inverse);
}

/* FAQ */
.faq-accordion {
  display: grid;
  gap: 12px;
}

.faq-accordion__item {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: var(--color-surface);
  box-shadow: var(--shadow-xs);
}

.faq-accordion__header {
  margin: 0;
}

.faq-accordion__button {
  position: relative;
  width: 100%;
  min-height: 64px;
  padding: 18px 58px 18px 20px;
  border: 0;
  background: transparent;
  color: var(--color-heading);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  text-align: left;
  box-shadow: none !important;
}

.faq-accordion__button:hover,
.faq-accordion__button:not(.collapsed) {
  background: var(--color-surface-blue);
  color: var(--color-blue-dark);
}

.faq-accordion__button::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin: 0;
  border-radius: 50%;
  background: var(--color-page-bg-soft);
  color: var(--color-blue-dark);
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-50%);
  transition:
    transform var(--transition),
    background-color var(--transition);
}

.faq-accordion__button:not(.collapsed)::after {
  background: var(--color-gold-light);
  transform: translateY(-50%) rotate(45deg);
}

.faq-accordion__body {
  padding: 19px 20px 21px;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-soft);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* Editorial strip */
.editorial-strip {
  padding: 0 0 78px;
  background: var(--color-surface);
}

.author-box {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 24px 28px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface-soft);
  box-shadow: var(--shadow-xs);
}

.author-box__photo img {
  display: block;
  width: 86px;
  height: 86px;
  border: 4px solid var(--color-surface);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--color-border);
  object-fit: cover;
}

.author-box__top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.author-box__name {
  margin: 0;
  font-size: 1.25rem;
}

.author-box__name-link {
  color: var(--color-heading);
  text-decoration: none;
}

.author-box__name-link:hover,
.author-box__name-link:focus {
  color: var(--color-blue);
}

.author-box__date {
  flex: 0 0 auto;
  color: var(--color-text-muted);
  font-size: 0.78rem;
}

.author-box__desc {
  margin-top: 10px;
  color: var(--color-text-soft);
  font-size: 0.88rem;
}

/* Footer */
.site-footer {
  position: relative;
  padding: 58px 0 24px;
  border-top: 3px solid var(--color-gold);
  background:
    radial-gradient(circle at 90% 0%, rgba(0, 156, 222, 0.09), transparent 30%),
    var(--color-navy-deep);
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.86rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns:
    minmax(260px, 1.3fr)
    minmax(150px, 0.62fr)
    minmax(160px, 0.72fr)
    minmax(250px, 1fr);
  gap: 42px;
  align-items: start;
}

.site-footer__brand p {
  max-width: 390px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

.site-footer__logo-link {
  display: inline-flex;
  margin-bottom: 18px;
}

.site-footer__logo {
  display: block;
  width: auto;
  height: 85px;
  object-fit: contain;
}

.site-footer__email {
  color: var(--color-gold-light);
  font-weight: 700;
  text-decoration: none;
}

.site-footer__email:hover,
.site-footer__email:focus {
  color: var(--color-text-inverse);
}

.site-footer__column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 9px;
}

.site-footer__column h2 {
  margin-bottom: 7px;
  color: var(--color-text-inverse);
  font-size: 0.98rem;
  letter-spacing: 0;
}

.site-footer__column a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
}

.site-footer__column a:hover,
.site-footer__column a:focus {
  color: var(--color-gold-light);
}

.site-footer__support {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.site-footer__support-heading {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 5px;
}

.site-footer__support-heading h2 {
  margin: 0;
}

.site-footer__age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--color-gold-light);
  border-radius: 50%;
  color: var(--color-gold-light);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 900;
}

.site-footer__support p {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  line-height: 1.55;
}

.site-footer__legal {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__legal p {
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.74rem;
  line-height: 1.6;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.74rem;
}

/* Responsive layout */
@media (max-width: 1180px) {
  .casino-card__body {
    grid-template-columns: minmax(0, 0.85fr) minmax(390px, 1.15fr);
  }

  .value-grid,
  .payment-method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__grid {
    grid-template-columns:
      minmax(260px, 1.1fr)
      repeat(2, minmax(150px, 0.62fr));
  }

  .site-footer__support {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1100px) {
  .top-navbar {
    backdrop-filter: none;
  }

  .burger-menu {
    display: flex;
  }

  .navbar-links {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    z-index: 999;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    max-height: calc(100dvh - 76px);
    margin: 0;
    padding: 14px max(20px, calc((100vw - var(--container)) / 2)) 22px;
    overflow-x: hidden;
    overflow-y: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--color-navy);
    box-shadow: 0 22px 38px rgba(2, 14, 30, 0.28);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 0.22s ease,
      visibility 0.22s ease,
      transform 0.22s ease;
  }

  .navbar-links.is-open,
  .navbar-links.active,
  .navbar-links[data-menu-state="open"] {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .navbar-links .navbar-link,
  .navbar-links .dropbtn {
    justify-content: space-between;
    width: 100%;
    min-height: 50px;
    padding: 13px 14px;
    text-align: left;
  }

  .navbar-links .navbar-link.active,
  .navbar-links .navbar-link[aria-current="page"],
  .navbar-links .dropdown.active-page > .dropbtn {
    box-shadow: inset 3px 0 0 var(--color-gold);
  }

  .navbar-links .btn-play {
    width: 100%;
    min-height: 50px;
    margin: 10px 0 0;
  }

  .navbar-links .dropdown {
    width: 100%;
  }

  .navbar-links .dropdown-content {
    position: static;
    display: grid;
    grid-template-rows: 0fr;
    min-width: 0;
    max-height: 0;
    margin: 0;
    padding: 0 0 0 16px;
    overflow: hidden;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    transition:
      max-height 0.24s ease,
      margin 0.24s ease,
      opacity 0.2s ease,
      visibility 0.2s ease;
  }

  .navbar-links .dropdown:hover .dropdown-content,
  .navbar-links .dropdown:focus-within .dropdown-content {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .navbar-links .dropdown.is-open .dropdown-content,
  .navbar-links .dropdown.active .dropdown-content {
    max-height: 180px;
    margin-top: 4px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .navbar-links .dropdown-content a {
    min-height: 44px;
    padding: 12px 14px;
  }

  .hero__layout {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    gap: 40px;
  }

  .feature-split {
    gap: 42px;
  }
}

@media (max-width: 960px) {
  .content-section {
    padding: 76px 0;
  }

  .hero,
  .hero__layout {
    min-height: auto;
  }

  .hero__layout {
    grid-template-columns: 1fr;
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .hero__content {
    max-width: 760px;
  }

  .hero__summary {
    max-width: 620px;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-split,
  .feature-split--reverse {
    grid-template-columns: 1fr;
  }

  .feature-split--reverse .feature-split__media,
  .feature-split--reverse .feature-split__content {
    order: initial;
  }

  .feature-split__media {
    max-width: 700px;
  }

  .casino-card__header {
    grid-template-columns: 64px minmax(0, 1fr) 154px;
  }

  .casino-card__body {
    grid-template-columns: 1fr;
  }

  .payment-profile {
    border-top: 1px solid var(--color-border);
    border-left: 0;
  }

  .responsible-panel {
    grid-template-columns: 1fr;
  }

  .responsible-panel__media {
    max-height: 340px;
  }
}

@media (max-width: 760px) {
  .container,
  .navbar-container {
    width: min(calc(100% - 28px), var(--container));
  }

  .content-section {
    padding: 64px 0;
  }

  .hero__layout {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .hero__summary {
    width: 100%;
  }

  .casino-card-list__guide {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .casino-card-list__guide-meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-width: 0;
  }

  .casino-card__header {
    grid-template-columns: 60px minmax(0, 1fr);
  }

  .casino-card__rank {
    grid-row: 1 / span 2;
  }

  .casino-card__rating {
    grid-column: 2;
    align-items: flex-start;
    padding: 13px 22px 18px;
    border-top: 1px solid var(--color-border);
    border-left: 0;
    text-align: left;
  }

  .casino-card__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .casino-card__footer-action {
    justify-content: space-between;
    width: 100%;
  }

  .criteria-grid,
  .value-grid,
  .payment-method-grid,
  .pros-cons,
  .process-columns,
  .game-category-grid,
  .site-footer__legal {
    grid-template-columns: 1fr;
  }

  .value-card {
    min-height: 0;
  }

  .responsible-panel__content {
    padding: 36px 28px;
  }

  .author-box {
    align-items: flex-start;
  }

  .author-box__top-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }

  .site-footer__brand,
  .site-footer__support {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 76px;
  }

  .navbar-container {
    min-height: 68px;
  }

  .navbar-logo {
    height: 45px;
  }

  .navbar-links {
    top: 68px;
    max-height: calc(100dvh - 68px);
    padding-right: 14px;
    padding-left: 14px;
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 3.2rem);
  }

  h2 {
    font-size: clamp(1.7rem, 9vw, 2.2rem);
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__cta {
    width: 100%;
  }

  .hero__text-link {
    text-align: center;
  }

  .hero__metrics > div {
    min-height: 102px;
    padding: 16px;
  }

  .casino-card-list__guide {
    padding: 21px 20px;
  }

  .casino-card-list__guide-meta {
    grid-template-columns: 1fr;
  }

  .casino-card__header {
    grid-template-columns: 1fr;
    padding-top: 50px;
  }

  .casino-card__rank {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    display: inline-flex;
    align-items: baseline;
    flex-direction: row;
    gap: 5px;
    min-width: 66px;
    min-height: 30px;
    padding: 7px 10px;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: var(--color-surface);
    box-shadow: var(--shadow-xs);
  }

  .casino-card__rank strong {
    font-size: 1rem;
  }

  .casino-card__brand {
    align-items: center;
    flex-direction: column;
    padding: 18px 20px;
    text-align: center;
  }

  .casino-card__tag-row {
    justify-content: center;
  }

  .casino-card__rating {
    grid-column: 1;
    align-items: center;
    padding: 14px 20px 18px;
    text-align: center;
  }

  .casino-card__offer,
  .payment-profile {
    padding: 22px 20px;
  }

  .casino-card__offer {
    text-align: center;
  }

  .casino-card__features {
    text-align: left;
  }

  .payment-profile__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .payment-profile__status {
    width: 100%;
  }

  .payment-profile__facts {
    grid-template-columns: 1fr;
  }

  .casino-card__footer {
    padding: 17px 20px 20px;
  }

  .casino-card__footer-action {
    align-items: stretch;
    flex-direction: column;
  }

  .casino-card__cta {
    width: 100%;
  }

  .casino-card__footer-action > span {
    max-width: none;
    text-align: center;
  }

  .feature-split__media::before {
    display: none;
  }

  .feature-split__image {
    min-height: 250px;
  }

  .payment-method-card {
    min-height: 98px;
  }

  .responsible-panel__media {
    min-height: 240px;
  }

  .responsible-panel__content {
    padding: 30px 22px;
  }

  .support-links {
    align-items: stretch;
    flex-direction: column;
  }

  .support-links a {
    justify-content: center;
  }

  .author-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .author-box__photo {
    margin-inline: auto;
  }

  .author-box__top-row {
    align-items: center;
  }

  .site-footer {
    padding-top: 48px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__brand,
  .site-footer__support {
    grid-column: auto;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* 404 page */
.page-404 {
  background: var(--color-page-bg);
}

.error-page {
  min-height: 70vh;
}

.error-page__hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 42px 0 88px;
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 156, 222, 0.2), transparent 27%),
    radial-gradient(
      circle at 12% 92%,
      rgba(226, 173, 36, 0.12),
      transparent 26%
    ),
    linear-gradient(145deg, var(--color-navy) 0%, var(--color-navy-deep) 100%);
}

.error-page__hero::before,
.error-page__hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.error-page__hero::before {
  top: -260px;
  right: -170px;
  width: 620px;
  height: 620px;
}

.error-page__hero::after {
  bottom: -310px;
  left: -220px;
  width: 560px;
  height: 560px;
}

.utility-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.4;
}

.utility-breadcrumbs__link {
  color: rgba(255, 255, 255, 0.74);
  text-decoration: none;
  transition: color var(--transition);
}

.utility-breadcrumbs__link:hover,
.utility-breadcrumbs__link:focus {
  color: var(--color-gold-light);
}

.utility-breadcrumbs__separator {
  color: rgba(255, 255, 255, 0.28);
}

.utility-breadcrumbs__current {
  color: var(--color-gold-light);
}

.error-page__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 58px;
  align-items: center;
  min-height: 520px;
  padding: 54px 58px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.035)
  );
  box-shadow: 0 30px 70px rgba(1, 13, 29, 0.32);
  backdrop-filter: blur(16px);
}

.error-page__panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-blue),
    var(--color-blue-bright) 48%,
    var(--color-gold) 100%
  );
}

.error-page__content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.error-page__code {
  margin: 2px 0 4px;
  background: linear-gradient(
    135deg,
    var(--color-text-inverse) 0%,
    #bfeaff 48%,
    var(--color-gold-light) 100%
  );
  background-clip: text;
  color: transparent;
  font-family: var(--font-heading);
  font-size: clamp(5.5rem, 12vw, 9.6rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.82;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.error-page__content h1 {
  max-width: 620px;
  margin-bottom: 18px;
  color: var(--color-text-inverse);
  font-size: clamp(2rem, 4vw, 3.35rem);
  letter-spacing: -0.035em;
}

.error-page__lead {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
  line-height: 1.75;
}

.error-page__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.error-page__primary-action {
  min-width: 190px;
}

.error-page__secondary-action {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-heading);
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    color var(--transition),
    transform var(--transition);
}

.error-page__secondary-action::after {
  content: "→";
  margin-left: 9px;
  color: var(--color-gold-light);
  transition: transform var(--transition);
}

.error-page__secondary-action:hover,
.error-page__secondary-action:focus {
  color: var(--color-text-inverse);
  transform: translateY(-1px);
}

.error-page__secondary-action:hover::after,
.error-page__secondary-action:focus::after {
  transform: translateX(4px);
}

.error-page__note {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.74rem;
}

.error-page__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 390px;
}

.error-page__orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
}

.error-page__orbit--outer {
  width: 370px;
  height: 370px;
  box-shadow:
    0 0 0 26px rgba(0, 156, 222, 0.025),
    0 0 70px rgba(0, 156, 222, 0.12);
}

.error-page__orbit--inner {
  width: 275px;
  height: 275px;
  border-color: rgba(226, 173, 36, 0.17);
}

.error-page__device {
  position: relative;
  z-index: 2;
  width: 220px;
  height: 340px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 34px;
  background: linear-gradient(155deg, #102f5a 0%, #06182f 100%);
  box-shadow:
    0 28px 50px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: rotate(4deg);
}

.error-page__device-dot {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 42px;
  height: 5px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.48);
  transform: translateX(-50%);
}

.error-page__device-screen {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(0, 156, 222, 0.18);
  border-radius: 25px;
  background:
    radial-gradient(
      circle at 50% 30%,
      rgba(0, 156, 222, 0.17),
      transparent 35%
    ),
    #071e3d;
  text-align: center;
}

.error-page__device-screen strong {
  margin-top: 18px;
  color: var(--color-text-inverse);
  font-family: var(--font-heading);
  font-size: 3.55rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
}

.error-page__device-screen > span:last-child {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  font-weight: 700;
}

.error-page__search-icon {
  position: relative;
  display: block;
  width: 72px;
  height: 72px;
  border: 7px solid var(--color-blue-bright);
  border-radius: 50%;
  box-shadow: 0 0 26px rgba(0, 156, 222, 0.26);
}

.error-page__search-icon::after {
  content: "";
  position: absolute;
  right: -29px;
  bottom: -19px;
  width: 38px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-gold);
  transform: rotate(45deg);
  transform-origin: left center;
}

.error-page__coin {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: linear-gradient(
    145deg,
    var(--color-gold-light),
    var(--color-gold)
  );
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.28),
    inset 0 0 0 5px rgba(255, 255, 255, 0.15);
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-weight: 900;
}

.error-page__coin--one {
  top: 40px;
  right: 36px;
  width: 72px;
  height: 72px;
  font-size: 1.75rem;
  transform: rotate(10deg);
}

.error-page__coin--two {
  bottom: 38px;
  left: 28px;
  width: 60px;
  height: 60px;
  font-size: 1.4rem;
  transform: rotate(-14deg);
}

.error-page__coin--three {
  right: 10px;
  bottom: 72px;
  width: 48px;
  height: 48px;
  background: linear-gradient(145deg, #2fb98a, var(--color-success));
  color: var(--color-text-inverse);
  font-size: 1.1rem;
}

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

.error-page__route {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-height: 122px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  transition:
    transform var(--transition),
    border-color var(--transition),
    background-color var(--transition),
    box-shadow var(--transition);
}

.error-page__route:hover,
.error-page__route:focus {
  transform: translateY(-3px);
  border-color: rgba(245, 215, 120, 0.36);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.16);
  color: var(--color-text-inverse);
}

.error-page__route-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(245, 215, 120, 0.32);
  border-radius: 11px;
  background: rgba(226, 173, 36, 0.1);
  color: var(--color-gold-light);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 900;
}

.error-page__route > span:last-child {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.error-page__route strong {
  margin-bottom: 5px;
  color: var(--color-text-inverse);
  font-family: var(--font-heading);
  font-size: 0.96rem;
  line-height: 1.3;
}

.error-page__route small {
  color: rgba(255, 255, 255, 0.49);
  font-size: 0.73rem;
  line-height: 1.55;
}

@media (max-width: 960px) {
  .error-page__panel {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 46px 44px;
  }

  .error-page__content {
    max-width: 720px;
  }

  .error-page__visual {
    min-height: 330px;
  }

  .error-page__device {
    width: 195px;
    height: 300px;
  }

  .error-page__orbit--outer {
    width: 320px;
    height: 320px;
  }

  .error-page__orbit--inner {
    width: 235px;
    height: 235px;
  }
}

@media (max-width: 760px) {
  .error-page__hero {
    padding-top: 30px;
    padding-bottom: 64px;
  }

  .error-page__panel {
    padding: 38px 30px;
    border-radius: 22px;
  }

  .error-page__routes {
    grid-template-columns: 1fr;
  }

  .error-page__route {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .utility-breadcrumbs {
    margin-bottom: 20px;
  }

  .error-page__panel {
    padding: 34px 20px 28px;
  }

  .error-page__code {
    font-size: clamp(5rem, 26vw, 7rem);
  }

  .error-page__content h1 {
    font-size: clamp(1.8rem, 10vw, 2.35rem);
  }

  .error-page__lead {
    font-size: 0.92rem;
  }

  .error-page__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .error-page__primary-action,
  .error-page__secondary-action {
    justify-content: center;
    width: 100%;
  }

  .error-page__visual {
    min-height: 280px;
  }

  .error-page__device {
    width: 168px;
    height: 258px;
    border-radius: 28px;
  }

  .error-page__device-screen {
    border-radius: 21px;
  }

  .error-page__device-screen strong {
    font-size: 2.8rem;
  }

  .error-page__search-icon {
    width: 56px;
    height: 56px;
    border-width: 6px;
  }

  .error-page__orbit--outer {
    width: 270px;
    height: 270px;
  }

  .error-page__orbit--inner {
    width: 200px;
    height: 200px;
  }

  .error-page__coin--one {
    top: 24px;
    right: 4px;
    width: 58px;
    height: 58px;
    font-size: 1.4rem;
  }

  .error-page__coin--two {
    bottom: 20px;
    left: 0;
    width: 50px;
    height: 50px;
  }

  .error-page__coin--three {
    right: 0;
    bottom: 48px;
    width: 42px;
    height: 42px;
  }

  .error-page__route {
    padding: 17px;
  }
}

/* PayPal casino guide */
.paypal-guide-hero {
  min-height: 680px;
  background-image: none;
  background:
    radial-gradient(
      circle at 84% 18%,
      rgba(0, 156, 222, 0.28),
      transparent 28%
    ),
    radial-gradient(
      circle at 68% 84%,
      rgba(226, 173, 36, 0.12),
      transparent 24%
    ),
    linear-gradient(145deg, var(--color-navy) 0%, var(--color-navy-deep) 100%);
}

.paypal-guide-hero::before {
  content: "";
  position: absolute;
  top: 82px;
  right: 6%;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 42px rgba(0, 156, 222, 0.025),
    0 0 0 84px rgba(0, 156, 222, 0.018);
  pointer-events: none;
}

.paypal-guide-hero::after {
  right: -5%;
  bottom: -38%;
  width: 580px;
  height: 580px;
}

.paypal-guide-hero .hero__layout {
  min-height: 680px;
}

.paypal-guide-hero .utility-breadcrumbs {
  margin-bottom: 24px;
}

.payment-snapshot {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.045)
  );
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.payment-snapshot::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-blue),
    var(--color-blue-bright) 56%,
    var(--color-gold)
  );
}

.payment-snapshot__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 22px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-snapshot__brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.payment-snapshot__paypal-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 15px;
  background: linear-gradient(
    145deg,
    var(--color-blue-bright),
    var(--color-blue-dark)
  );
  box-shadow: 0 10px 24px rgba(0, 112, 186, 0.28);
  color: var(--color-text-inverse);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
}

.payment-snapshot__brand span:not(.payment-snapshot__paypal-mark) {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-transform: uppercase;
}

.payment-snapshot__brand strong {
  display: block;
  color: var(--color-text-inverse);
  font-size: 0.95rem;
  line-height: 1.35;
}

.payment-snapshot__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(245, 215, 120, 0.3);
  border-radius: 999px;
  background: rgba(226, 173, 36, 0.1);
  color: var(--color-gold-light);
  font-size: 0.64rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.payment-snapshot__route {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  padding: 24px 22px;
}

.payment-snapshot__node {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 116px;
  padding: 14px 9px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.055);
  text-align: center;
}

.payment-snapshot__node > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: rgba(0, 156, 222, 0.15);
  color: #bdeaff;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 900;
}

.payment-snapshot__node strong {
  color: var(--color-text-inverse);
  font-size: 0.83rem;
}

.payment-snapshot__node small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.62rem;
  line-height: 1.35;
}

.payment-snapshot__arrow {
  color: var(--color-gold-light);
  font-size: 1rem;
  font-weight: 900;
}

.payment-snapshot__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
}

.payment-snapshot__facts > div {
  padding: 15px 18px;
  background: rgba(5, 27, 54, 0.84);
}

.payment-snapshot__facts dt {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1.2;
  text-transform: uppercase;
}

.payment-snapshot__facts dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.42;
}

.payment-snapshot__note {
  margin: 0;
  padding: 16px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  line-height: 1.55;
}

.guide-inline-nav {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 22px rgba(16, 42, 67, 0.06);
}

.guide-inline-nav .container {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 12px;
  padding-bottom: 12px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.guide-inline-nav a {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-surface-soft);
  color: var(--color-text-soft);
  font-size: 0.75rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    border-color var(--transition),
    background-color var(--transition),
    color var(--transition),
    transform var(--transition);
}

.guide-inline-nav a:hover,
.guide-inline-nav a:focus {
  transform: translateY(-1px);
  border-color: var(--color-border-blue);
  background: var(--color-surface-blue);
  color: var(--color-blue-dark);
}

.payment-control-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 24px;
}

.payment-control-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-xs);
}

.payment-control-card::after {
  content: "";
  position: absolute;
  right: -74px;
  bottom: -74px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  pointer-events: none;
}

.payment-control-card--paypal {
  border-top: 4px solid var(--color-blue-bright);
}

.payment-control-card--paypal::after {
  background: rgba(0, 156, 222, 0.07);
}

.payment-control-card--casino {
  border-top: 4px solid var(--color-gold);
}

.payment-control-card--casino::after {
  background: rgba(226, 173, 36, 0.08);
}

.payment-control-card__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 23px;
}

.payment-control-card__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(
    145deg,
    var(--color-blue),
    var(--color-blue-dark)
  );
  box-shadow: 0 10px 22px rgba(0, 84, 143, 0.2);
  color: var(--color-text-inverse);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 900;
}

.payment-control-card--casino .payment-control-card__mark {
  background: linear-gradient(
    145deg,
    var(--color-gold-light),
    var(--color-gold)
  );
  box-shadow: 0 10px 22px rgba(170, 112, 0, 0.18);
  color: var(--color-navy);
}

.payment-control-card__head span:not(.payment-control-card__mark) {
  display: block;
  margin-bottom: 3px;
  color: var(--color-text-muted);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  line-height: 1.2;
  text-transform: uppercase;
}

.payment-control-card__head h3 {
  margin: 0;
  font-size: 1.18rem;
}

.payment-control-card__list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.payment-control-card__list li {
  position: relative;
  padding-left: 28px;
  color: var(--color-text-soft);
  font-size: 0.88rem;
  line-height: 1.55;
}

.payment-control-card__list li::before {
  content: "✓";
  position: absolute;
  top: 1px;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--color-surface-blue);
  color: var(--color-blue-dark);
  font-size: 0.68rem;
  font-weight: 900;
}

.payment-control-card--casino .payment-control-card__list li::before {
  background: #fff5d3;
  color: #8a6100;
}

.payment-flow {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.payment-flow--dark {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.17);
}

.payment-flow--light {
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}

.payment-flow__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.payment-flow__step {
  position: relative;
  min-height: 238px;
  padding: 28px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-flow--light .payment-flow__step {
  border-right-color: var(--color-border);
}

.payment-flow__step:last-child {
  border-right: 0;
}

.payment-flow__step:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 31px;
  right: -10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-navy);
  font-size: 0.68rem;
  font-weight: 900;
}

.payment-flow__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 23px;
  border: 1px solid rgba(245, 215, 120, 0.42);
  border-radius: 13px;
  background: rgba(226, 173, 36, 0.08);
  color: var(--color-gold-light);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 900;
}

.payment-flow--light .payment-flow__number {
  border-color: rgba(0, 112, 186, 0.18);
  background: var(--color-surface-blue);
  color: var(--color-blue-dark);
}

.payment-flow__step h3 {
  color: var(--color-text-inverse);
  font-size: 1.04rem;
}

.payment-flow--light .payment-flow__step h3 {
  color: var(--color-heading);
}

.payment-flow__step p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  line-height: 1.6;
}

.payment-flow--light .payment-flow__step p {
  color: var(--color-text-muted);
}

#withdrawal-flow .payment-flow__steps {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.payment-warning {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
  padding: 17px 19px;
  border-radius: 14px;
}

.payment-warning > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 900;
}

.payment-warning p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.58;
}

.payment-warning--dark {
  border: 1px solid rgba(245, 215, 120, 0.2);
  background: rgba(226, 173, 36, 0.075);
}

.payment-warning--dark > span {
  background: rgba(245, 215, 120, 0.16);
  color: var(--color-gold-light);
}

.payment-warning--dark p {
  color: rgba(255, 255, 255, 0.62);
}

.payment-comparison {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}

.payment-comparison__scroll {
  overflow-x: auto;
}

.payment-comparison__table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.payment-comparison__table th,
.payment-comparison__table td {
  padding: 18px 20px;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
  text-align: left;
}

.payment-comparison__table tr:last-child th,
.payment-comparison__table tr:last-child td {
  border-bottom: 0;
}

.payment-comparison__table th:last-child,
.payment-comparison__table td:last-child {
  border-right: 0;
}

.payment-comparison__table thead th {
  background: linear-gradient(
    145deg,
    var(--color-navy),
    var(--color-navy-soft)
  );
  color: var(--color-text-inverse);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.025em;
}

.payment-comparison__table tbody th {
  width: 24%;
  background: var(--color-surface-soft);
  color: var(--color-heading);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 900;
}

.payment-comparison__table td {
  color: var(--color-text-soft);
  font-size: 0.84rem;
  line-height: 1.5;
}

.payment-fee-grid {
  margin-top: 0;
}

.payment-currency-example {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin: 30px 0 22px;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: var(--color-surface);
  box-shadow: var(--shadow-xs);
}

.payment-currency-example > div {
  min-height: 88px;
  padding: 17px;
  border: 1px solid var(--color-border);
  border-radius: 13px;
  background: var(--color-surface-soft);
}

.payment-currency-example > div span {
  display: block;
  margin-bottom: 6px;
  color: var(--color-text-muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.payment-currency-example > div strong {
  font-size: 0.92rem;
  line-height: 1.35;
}

.payment-currency-example > span {
  color: var(--color-gold-dark);
  font-size: 1.25rem;
  font-weight: 900;
}

.payment-check-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 24px;
  align-items: stretch;
}

.payment-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.payment-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  min-height: 132px;
  padding: 20px;
  border: 1px solid var(--color-border);
  border-radius: 15px;
  background: var(--color-surface);
  box-shadow: var(--shadow-xs);
}

.payment-checklist li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--color-surface-blue);
  color: var(--color-blue-dark);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 900;
}

.payment-checklist strong {
  display: block;
  margin-bottom: 5px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  line-height: 1.35;
}

.payment-checklist p {
  color: var(--color-text-muted);
  font-size: 0.76rem;
  line-height: 1.52;
}

.payment-check-panel__aside {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 156, 222, 0.2), transparent 38%),
    linear-gradient(145deg, var(--color-navy), var(--color-navy-deep));
  box-shadow: var(--shadow-lg);
}

.payment-check-panel__aside::after {
  content: "P";
  position: absolute;
  right: -24px;
  bottom: -58px;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--font-heading);
  font-size: 13rem;
  font-weight: 900;
  line-height: 1;
}

.payment-check-panel__aside h3,
.payment-check-panel__aside strong {
  position: relative;
  z-index: 1;
  color: var(--color-text-inverse);
}

.payment-check-panel__aside h3 {
  font-size: 1.42rem;
}

.payment-check-panel__aside p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.87rem;
  line-height: 1.68;
}

.payment-check-panel__aside a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: 8px;
  color: var(--color-gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.payment-check-panel__aside a::after {
  content: "→";
  margin-left: 8px;
}

.payment-check-panel__aside a:hover,
.payment-check-panel__aside a:focus {
  color: var(--color-text-inverse);
}

.payment-issue-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.payment-issue-card {
  position: relative;
  min-height: 210px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, #ffffff 0%, #f8fbfd 100%);
  box-shadow: var(--shadow-xs);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.payment-issue-card::after {
  content: "";
  position: absolute;
  right: -58px;
  bottom: -58px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(0, 156, 222, 0.055);
}

.payment-issue-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-border-blue);
  box-shadow: var(--shadow-sm);
}

.payment-issue-card__state {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 17px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--color-surface-blue);
  color: var(--color-blue-dark);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  line-height: 1.2;
  text-transform: uppercase;
}

.payment-issue-card h3,
.payment-issue-card p {
  position: relative;
  z-index: 1;
}

.payment-issue-card h3 {
  font-size: 1.08rem;
}

.payment-issue-card p {
  color: var(--color-text-muted);
  font-size: 0.84rem;
  line-height: 1.62;
}

.payment-method-card {
  color: var(--color-text);
  text-decoration: none;
}

.payment-method-card:hover,
.payment-method-card:focus {
  color: var(--color-text);
}

.payment-method-card > span:last-child {
  min-width: 0;
}

.legal-note--warning {
  margin-bottom: 28px;
  border-color: rgba(189, 76, 92, 0.2);
  border-left-color: var(--color-danger);
  background: #fff5f6;
}

.legal-note--warning a {
  font-weight: 800;
}

.author-box--team {
  grid-template-columns: 138px minmax(0, 1fr);
}

.author-box--team .author-box__photo img {
  width: 138px;
  height: 92px;
  border-radius: 14px;
  object-position: center;
}

.guide-support-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: 42px;
  align-items: center;
  padding: 46px;
  overflow: hidden;
  border-radius: 26px;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(0, 156, 222, 0.18),
      transparent 34%
    ),
    linear-gradient(145deg, var(--color-navy), var(--color-navy-deep));
  box-shadow: var(--shadow-lg);
}

.guide-support-panel h2 {
  color: var(--color-text-inverse);
}

.guide-support-panel p {
  color: rgba(255, 255, 255, 0.66);
}

.guide-support-panel__contacts {
  display: grid;
  gap: 10px;
}

.guide-support-panel__contacts a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 62px;
  padding: 14px 17px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--color-text-inverse);
  text-decoration: none;
  transition:
    transform var(--transition),
    border-color var(--transition),
    background-color var(--transition);
}

.guide-support-panel__contacts a:hover,
.guide-support-panel__contacts a:focus {
  transform: translateY(-2px);
  border-color: rgba(245, 215, 120, 0.34);
  background: rgba(255, 255, 255, 0.09);
  color: var(--color-text-inverse);
}

.guide-support-panel__contacts span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.guide-support-panel__contacts strong {
  color: var(--color-gold-light);
  font-size: 0.85rem;
  text-align: right;
}

@media (max-width: 1180px) {
  #withdrawal-flow .payment-flow__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  #withdrawal-flow .payment-flow__step:nth-child(3) {
    border-right: 0;
  }

  #withdrawal-flow .payment-flow__step:nth-child(3)::after {
    display: none;
  }

  #withdrawal-flow .payment-flow__step:nth-child(n + 4) {
    border-top: 1px solid var(--color-border);
  }

  .payment-check-panel {
    grid-template-columns: minmax(0, 1fr) minmax(290px, 0.72fr);
  }
}

@media (max-width: 960px) {
  .paypal-guide-hero .hero__layout {
    grid-template-columns: 1fr;
  }

  .payment-snapshot {
    max-width: 720px;
  }

  .payment-flow__steps,
  #withdrawal-flow .payment-flow__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .payment-flow__step:nth-child(2n) {
    border-right: 0;
  }

  .payment-flow__step:nth-child(2n)::after {
    display: none;
  }

  .payment-flow__step:nth-child(n + 3),
  #withdrawal-flow .payment-flow__step:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .payment-flow--light .payment-flow__step:nth-child(n + 3),
  #withdrawal-flow .payment-flow--light .payment-flow__step:nth-child(n + 3) {
    border-top-color: var(--color-border);
  }

  #withdrawal-flow .payment-flow__step:nth-child(3) {
    border-right: 1px solid var(--color-border);
  }

  #withdrawal-flow .payment-flow__step:nth-child(3)::after {
    display: inline-flex;
  }

  .payment-check-panel,
  .guide-support-panel {
    grid-template-columns: 1fr;
  }

  .payment-check-panel__aside {
    min-height: 330px;
  }
}

@media (max-width: 760px) {
  .paypal-guide-hero {
    min-height: auto;
  }

  .paypal-guide-hero .hero__layout {
    min-height: auto;
  }

  .payment-control-grid,
  .payment-issue-grid {
    grid-template-columns: 1fr;
  }

  .payment-currency-example {
    grid-template-columns: 1fr;
  }

  .payment-currency-example > span {
    transform: rotate(90deg);
    text-align: center;
  }

  .payment-checklist {
    grid-template-columns: 1fr;
  }

  .author-box--team {
    grid-template-columns: 1fr;
  }

  .author-box--team .author-box__photo {
    margin-inline: auto;
  }
}

@media (max-width: 560px) {
  .payment-snapshot__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .payment-snapshot__status {
    width: 100%;
  }

  .payment-snapshot__route {
    grid-template-columns: 1fr;
  }

  .payment-snapshot__arrow {
    transform: rotate(90deg);
    text-align: center;
  }

  .payment-snapshot__facts {
    grid-template-columns: 1fr;
  }

  .payment-control-card,
  .payment-check-panel__aside,
  .guide-support-panel {
    padding: 24px 20px;
  }

  .payment-flow__steps,
  #withdrawal-flow .payment-flow__steps {
    grid-template-columns: 1fr;
  }

  .payment-flow__step,
  #withdrawal-flow .payment-flow__step {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .payment-flow--light .payment-flow__step,
  #withdrawal-flow .payment-flow--light .payment-flow__step {
    border-bottom-color: var(--color-border);
  }

  .payment-flow__step:last-child,
  #withdrawal-flow .payment-flow__step:last-child {
    border-bottom: 0;
  }

  .payment-flow__step::after,
  #withdrawal-flow .payment-flow__step::after {
    display: none !important;
  }

  .payment-checklist li {
    min-height: 0;
  }

  .guide-support-panel__contacts a {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .guide-support-panel__contacts strong {
    text-align: left;
  }
}
