:root {
  --bg: #0b0716;
  --bg2: #130d24;
  --card: #151026;
  --card2: #21163a;
  --text: #f4efff;
  --muted: #b9add6;
  --line: rgba(180, 128, 255, .22);
  --gold: #9b5cff;
  --gold2: #ff5bd8;
  --green: #42e8ff;
  --green2: #1f9fc0;
  --red: #551b3e;
  --max: 1280px;
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background-color: #070511;
  background-image:
    radial-gradient(circle at 82% 8%, rgba(255, 91, 216, .18), transparent 25%),
    radial-gradient(circle at 18% 4%, rgba(155, 92, 255, .18), transparent 27%),
    radial-gradient(circle at 50% 72%, rgba(66, 232, 255, .09), transparent 34%),
    linear-gradient(135deg, rgba(255, 91, 216, .04) 0 1px, transparent 1px),
    linear-gradient(180deg, #070511 0%, #120b24 42%, #070511 100%);
  background-size:
    auto,
    auto,
    auto,
    54px 54px,
    auto;
  line-height: 1.6;
}

::selection {
  color: #070511;
  background: var(--green);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.skip {
  position: absolute;
  left: -999px;
}

.skip:focus {
  left: 16px;
  top: 16px;
  z-index: 99;
  padding: 10px 14px;
  background: var(--green);
  color: #070511;
  border-radius: 10px;
}

.page-shell {
  margin: 0 auto;
  padding: 24px 0 34px;
  display: grid;
  gap: 22px;
}

.side-card,
.content-card,
.quick-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 91, 216, .06), rgba(21, 16, 38, .96)),
    var(--card);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .38);
  border-radius: var(--radius);
}

.side-card {
  padding: 20px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #070511;
  font-weight: 900;
  /*
  background: radial-gradient(circle at 35% 25%, #ffffff, var(--gold2) 48%, #4b1978);
  box-shadow: 0 0 24px rgba(255, 91, 216, .28);
  */
}

.brand-text {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--gold2);
  text-shadow: 0 0 18px rgba(66, 232, 255, .28);
}

.side-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.side-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.btn {
  min-height: 46px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  transition: .2s ease;
}

.btn-main {
  color: #070511;
  background: linear-gradient(180deg, #7ff3ff, var(--green));
  box-shadow: 0 0 26px rgba(66, 232, 255, .24);
}

.btn-main:hover {
  background: linear-gradient(180deg, #a5f7ff, var(--green2));
}

.btn-ghost,
.btn-soft,
.btn-line {
  color: var(--text);
  background: rgba(255, 255, 255, .04);
  border-color: var(--line);
}

.btn-ghost:hover,
.btn-soft:hover,
.btn-line:hover {
  border-color: var(--gold2);
  color: var(--gold2);
}

/* Sidebar */
.side-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(255, 91, 216, .26);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 91, 216, .20), transparent 34%),
    radial-gradient(circle at 0% 42%, rgba(66, 232, 255, .10), transparent 30%),
    linear-gradient(180deg, rgba(20, 10, 42, .98), rgba(6, 5, 16, .98));
  box-shadow:
    0 18px 45px rgba(0, 0, 0, .36),
    inset 0 0 44px rgba(255, 91, 216, .06);
}

.side-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  pointer-events: none;
  border: 1px solid rgba(255, 91, 216, .08);
  border-radius: calc(var(--radius) - 6px);
}

/* Logo */
/* Logo */
.brand {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(180, 128, 255, .18);
}

.brand-logo {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-logo img {
  width: min(100%, 240px);
  height: auto;
  display: block;
  object-fit: contain;
  filter:
    drop-shadow(0 0 16px rgba(255, 91, 216, .26))
    drop-shadow(0 0 20px rgba(66, 232, 255, .16));
}

/* Text note */
.side-note {
  position: relative;
  z-index: 1;
  margin-top: 15px;
  padding: 12px 13px;
  border: 1px solid rgba(180, 128, 255, .14);
  border-radius: 14px;
  color: var(--muted);
  background: rgba(0, 0, 0, .20);
  font-size: 14px;
  line-height: 1.55;
}

/* Buttons */
.side-actions {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 18px;
}

.side-actions .btn {
  min-height: 44px;
  border-radius: 14px;
  font-size: 13px;
  letter-spacing: .04em;
}

.side-actions .btn-main {
  color: #070511;
  background:
    linear-gradient(135deg, var(--green), var(--gold2));
  border: 1px solid rgba(66, 232, 255, .45);
  box-shadow:
    0 0 0 4px rgba(66, 232, 255, .06),
    0 12px 26px rgba(255, 91, 216, .20);
}

.side-actions .btn-main:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.side-actions .btn-ghost {
  color: #fbf7ff;
  border: 1px solid rgba(180, 128, 255, .22);
  background:
    linear-gradient(90deg, rgba(255, 91, 216, .07), rgba(66, 232, 255, .035)),
    rgba(0, 0, 0, .26);
}

.side-actions .btn-ghost:hover {
  color: var(--green);
  border-color: rgba(66, 232, 255, .38);
  transform: translateY(-1px);
}

/* GEO switch */
.geo-switch {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
  margin-top: 14px;
  padding: 7px;
  border: 1px solid rgba(180, 128, 255, .18);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 91, 216, .06), rgba(66, 232, 255, .035)),
    rgba(0, 0, 0, .26);
}

.geo-switch a {
  min-height: 31px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  transition: .2s ease;
}

.geo-switch a:hover,
.geo-switch a.is-active {
  color: #070511;
  background: linear-gradient(135deg, var(--green), var(--gold2));
}

/* Mobile menu */
.side-toggle,
.menu-button {
  display: none;
}

.side-menu {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
  margin-top: 18px;
}

.side-menu a {
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 12px 10px 44px;
  border: 1px solid rgba(180, 128, 255, .14);
  border-radius: 15px;
  color: #d8cdf2;
  background:
    linear-gradient(90deg, rgba(255, 91, 216, .045), rgba(66, 232, 255, .018)),
    rgba(0, 0, 0, .22);
  font-size: 14px;
  transition: .2s ease;
}

.side-menu a::before {
  content: "";
  position: absolute;
  left: 14px;
  width: 18px;
  height: 18px;
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(66, 232, 255, .70), rgba(255, 91, 216, .72));
  box-shadow:
    0 0 12px rgba(66, 232, 255, .20),
    0 0 16px rgba(255, 91, 216, .16);
  opacity: .75;
  transition: .2s ease;
}

.side-menu a:hover,
.side-menu a.is-active {
  color: #fbf7ff;
  border-color: rgba(66, 232, 255, .34);
  background:
    linear-gradient(90deg, rgba(66, 232, 255, .09), rgba(255, 91, 216, .10)),
    rgba(0, 0, 0, .28);
  transform: translateX(2px);
}

.side-menu a:hover::before,
.side-menu a.is-active::before {
  opacity: 1;
  background: linear-gradient(135deg, var(--green), var(--gold2));
  box-shadow:
    0 0 14px rgba(66, 232, 255, .34),
    0 0 18px rgba(255, 91, 216, .24);
}

/* Tablet / mobile */
@media (max-width: 979px) {
  .side {
    position: relative;
    top: auto;
  }

  .side-card {
    padding: 14px;
  }

  .side-card::before {
    inset: 8px;
  }

  .brand {
    padding-bottom: 12px;
  }

.brand-logo img {
  width: min(100%, 220px);
}

  .side-note {
    display: none;
  }

  .side-actions {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 14px;
  }

  .side-actions .btn {
    min-height: 40px;
    padding: 0 10px;
    border-radius: 12px;
    font-size: 12px;
  }

  .geo-switch {
    display: flex;
    gap: 6px;
    margin-top: 10px;
    padding: 6px;
    overflow-x: auto;
    border-radius: 14px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .geo-switch::-webkit-scrollbar {
    display: none;
  }

  .geo-switch a {
    min-width: 44px;
    min-height: 30px;
    flex: 0 0 auto;
    border-radius: 10px;
    scroll-snap-align: start;
  }

  .menu-button {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    border: 1px solid rgba(180, 128, 255, .24);
    border-radius: 14px;
    color: var(--gold2);
    background:
      linear-gradient(90deg, rgba(255, 91, 216, .07), rgba(66, 232, 255, .035)),
      rgba(0, 0, 0, .24);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
  }

  .menu-button::after {
    content: "+";
    margin-left: 8px;
    color: var(--green);
    font-size: 18px;
    line-height: 1;
  }

  .side-toggle:checked + .menu-button::after {
    content: "−";
  }

  .side-toggle:not(:checked) ~ .side-menu {
    display: none;
  }

  .side-toggle:checked ~ .side-menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 10px;
  }

  .side-menu a {
    min-height: 40px;
    justify-content: center;
    padding: 9px 10px;
    text-align: center;
    font-size: 13px;
    transform: none;
  }

  .side-menu a::before {
    display: none;
  }

  .side-menu a:hover,
  .side-menu a.is-active {
    transform: none;
  }
}

@media (max-width: 520px) {
  .brand-logo img {
    max-width: 135px;
  }
}

@media (max-width: 460px) {
  .side-actions,
  .side-toggle:checked ~ .side-menu {
    grid-template-columns: 1fr;
  }
}

.main {
  min-width: 0;
  display: grid;
  gap: 22px;
}

/* Hero / Slotrave guide banner */
.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 18px;
  padding: 24px;
  min-height: 420px;
  border: 1px solid rgba(180, 128, 255, .18);
  border-radius: calc(var(--radius) + 4px);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 91, 216, .18), transparent 28%),
    radial-gradient(circle at 0% 100%, rgba(66, 232, 255, .08), transparent 30%),
    linear-gradient(135deg, rgba(10, 7, 24, .98), rgba(20, 9, 39, .96) 52%, rgba(8, 6, 18, .98));
  box-shadow: 0 20px 50px rgba(0, 0, 0, .34);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 91, 216, .08);
  border-radius: calc(var(--radius) - 2px);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .03), transparent 24%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .018) 0 1px, transparent 1px 86px);
}

.hero-main,
.hero-side,
.hero-route-grid {
  position: relative;
  z-index: 1;
}

.hero-main {
  padding: 6px 2px 0;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(66, 232, 255, .26);
  border-radius: 999px;
  color: var(--green);
  background: rgba(66, 232, 255, .08);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

h1 {
  margin-top: 16px;
  color: #fbf7ff;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: -.055em;
  text-shadow:
    0 0 24px rgba(255, 91, 216, .16),
    0 0 34px rgba(66, 232, 255, .08);
}

.lead {
  margin-top: 16px;
  max-width: 720px;
  color: #cfc4ec;
  font-size: 18px;
  line-height: 1.55;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-cta-row .btn {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
}

.hero-cta-row .hero-btn-main {
  min-width: 220px;
}

.hero-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-chip-list span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(180, 128, 255, .16);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(0, 0, 0, .20);
  font-size: 12px;
  font-weight: 800;
}

/* Right side */
.hero-side {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 91, 216, .22);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 91, 216, .18), transparent 32%),
    linear-gradient(180deg, rgba(33, 15, 58, .84), rgba(7, 6, 20, .90));
}

.hero-side-kicker {
  display: inline-flex;
  width: fit-content;
  min-height: 26px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 91, 216, .24);
  border-radius: 999px;
  color: var(--gold2);
  background: rgba(255, 91, 216, .08);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-side-top strong {
  display: block;
  margin-top: 14px;
  color: #fbf7ff;
  font-size: clamp(26px, 4vw, 42px);
  line-height: .95;
  letter-spacing: -.05em;
}

.hero-side-top p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.hero-side-boxes {
  display: grid;
  gap: 10px;
}

.hero-side-boxes div {
  padding: 14px;
  border: 1px solid rgba(180, 128, 255, .16);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 91, 216, .07), rgba(66, 232, 255, .03)),
    rgba(0, 0, 0, .20);
}

.hero-side-boxes strong {
  display: block;
  color: var(--gold2);
  font-size: 14px;
  line-height: 1.2;
}

.hero-side-boxes span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

/* Bottom route cards */
.hero-route-grid {
  display: grid;
  gap: 12px;
}

.hero-route-card {
  position: relative;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 16px;
  border: 1px solid rgba(180, 128, 255, .16);
  border-radius: 18px;
  color: inherit;
  background:
    radial-gradient(circle at 100% 0%, rgba(66, 232, 255, .06), transparent 32%),
    linear-gradient(135deg, rgba(255, 91, 216, .06), rgba(0, 0, 0, .18)),
    rgba(0, 0, 0, .20);
  transition: .2s ease;
}

.hero-route-card:hover {
  transform: translateY(-2px);
  border-color: rgba(66, 232, 255, .34);
  background:
    radial-gradient(circle at 100% 0%, rgba(66, 232, 255, .08), transparent 32%),
    linear-gradient(135deg, rgba(255, 91, 216, .09), rgba(0, 0, 0, .18)),
    rgba(0, 0, 0, .24);
}

.hero-route-card span {
  display: inline-flex;
  width: fit-content;
  min-height: 26px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(66, 232, 255, .08);
  border: 1px solid rgba(66, 232, 255, .20);
  font-size: 12px;
  font-weight: 900;
}

.hero-route-card strong {
  display: block;
  margin-top: 12px;
  color: #fbf7ff;
  font-size: 22px;
  line-height: 1.1;
}

.hero-route-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

/* Desktop layout */
@media (min-width: 980px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) 320px;
    grid-template-areas:
      "main side"
      "routes side";
    align-items: start;
    padding: 34px;
  }

  .hero-main {
    grid-area: main;
  }

  .hero-side {
    grid-area: side;
    height: 100%;
    align-self: stretch;
  }

  .hero-route-grid {
    grid-area: routes;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 979px) {
  .hero {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .hero {
    padding: 18px;
    gap: 14px;
  }

  .hero::before {
    inset: 10px;
  }

  h1 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .lead {
    font-size: 16px;
  }

  .hero-cta-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-cta-row .btn,
  .hero-cta-row .hero-btn-main {
    width: 100%;
    min-width: 0;
  }

  .hero-side {
    padding: 16px;
    border-radius: 18px;
  }

  .hero-route-grid {
    grid-template-columns: 1fr;
  }

  .hero-route-card {
    min-height: auto;
  }
}

/* Article typography / Slotrave content style */
.content-card {
  padding: 24px;
}

/* H2 — neon section title */
.content-card > h2 {
  position: relative;
  max-width: 100%;
  margin: 38px 0 16px;
  padding: 10px 16px 11px 18px;
  border: 1px solid rgba(180, 128, 255, .18);
  border-radius: 16px;
  color: #fbf7ff;
  background:
    linear-gradient(90deg, rgba(255, 91, 216, .12), rgba(66, 232, 255, .045)),
    rgba(0, 0, 0, .18);
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.08;
  letter-spacing: -.045em;
  text-shadow:
    0 0 20px rgba(255, 91, 216, .20),
    0 0 30px rgba(66, 232, 255, .08);
}

.content-card > h2::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: -2px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--gold2));
  box-shadow:
    0 0 14px rgba(66, 232, 255, .42),
    0 0 20px rgba(255, 91, 216, .28);
}

.content-card > h2::after {
  content: "";
  position: absolute;
  right: -8px;
  top: -8px;
  width: 18px;
  height: 18px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--green), var(--gold2));
  opacity: .85;
  box-shadow:
    0 0 14px rgba(66, 232, 255, .32),
    0 0 18px rgba(255, 91, 216, .22);
}

.content-card > h2:first-child {
  margin-top: 0;
}

/* H3 — compact neon subtitle */
.content-card > h3 {
  position: relative;
  margin: 28px 0 12px;
  padding-left: 18px;
  color: var(--gold2);
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.18;
  letter-spacing: -.025em;
  text-shadow: 0 0 14px rgba(255, 91, 216, .14);
}

.content-card > h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: .36em;
  width: 9px;
  height: 9px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--green), var(--gold2));
  box-shadow:
    0 0 12px rgba(66, 232, 255, .45),
    0 0 16px rgba(255, 91, 216, .22);
  transform: rotate(45deg);
}

.content-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.content-card p + p {
  margin-top: 12px;
}

.content-card a:not(.btn):not(.game-card):not(.js-lang-link) {
  color: var(--gold2);
  text-decoration: underline;
  text-decoration-color: rgba(255, 91, 216, .36);
  text-underline-offset: 4px;
}

.content-card a:not(.btn):not(.game-card):not(.js-lang-link):not(.ref-btn):hover {
  color: #fbf7ff;
  text-decoration-color: rgba(66, 232, 255, .55);
}

/* Lists */
.content-card ul,
.content-card ol {
  display: grid;
  gap: 10px;
  margin: 18px 0 28px;
  padding: 0;
  list-style: none;
  counter-reset: article-list;
  color: var(--muted);
}

.content-card ul li,
.content-card ol li {
  position: relative;
  min-height: 52px;
  padding: 14px 15px 14px 46px;
  border: 1px solid rgba(180, 128, 255, .15);
  border-radius: 15px;
  color: var(--muted);
  background:
    radial-gradient(circle at 100% 0, rgba(66, 232, 255, .055), transparent 30%),
    linear-gradient(90deg, rgba(255, 91, 216, .07), rgba(0, 0, 0, .16)),
    rgba(0, 0, 0, .22);
  line-height: 1.58;
}

.content-card ul li::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 21px;
  width: 9px;
  height: 9px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--green), var(--gold2));
  box-shadow:
    0 0 14px rgba(66, 232, 255, .50),
    0 0 18px rgba(255, 91, 216, .20);
  transform: rotate(45deg);
}

.content-card ol li {
  counter-increment: article-list;
}

.content-card ol li::before {
  content: counter(article-list, decimal-leading-zero);
  position: absolute;
  left: 13px;
  top: 13px;
  min-width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #070511;
  background: linear-gradient(180deg, var(--green), var(--gold2));
  font-size: 11px;
  font-weight: 950;
  box-shadow:
    0 0 14px rgba(66, 232, 255, .28),
    0 0 18px rgba(255, 91, 216, .24);
}

.content-card li strong {
  color: var(--gold2);
}

/* Blockquote */
.content-card blockquote {
  position: relative;
  margin: 24px 0;
  padding: 18px 18px 18px 54px;
  border: 1px solid rgba(180, 128, 255, .18);
  border-left: 4px solid var(--green);
  border-radius: 18px;
  color: #eee7ff;
  background:
    radial-gradient(circle at 100% 0, rgba(66, 232, 255, .09), transparent 34%),
    linear-gradient(135deg, rgba(255, 91, 216, .08), rgba(0, 0, 0, .24)),
    rgba(0, 0, 0, .24);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .24);
}

.content-card blockquote::before {
  content: "!";
  position: absolute;
  left: 18px;
  top: 18px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #070511;
  background: linear-gradient(180deg, var(--green), var(--gold2));
  font-size: 14px;
  font-weight: 950;
}

.content-card blockquote p {
  margin: 0;
  color: #eee7ff;
  line-height: 1.65;
}

/* Quick cards */
.quick-grid {
  display: grid;
  gap: 14px;
}

.quick-card {
  padding: 18px;
  transition: .2s ease;
}

.quick-card:hover {
  border-color: var(--gold2);
  transform: translateY(-2px);
}

.quick-card span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.quick-card strong {
  display: block;
  margin-top: 6px;
  color: var(--gold2);
  font-size: 22px;
  line-height: 1.2;
}

.quick-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 640px) {
  .content-card {
    padding: 16px;
  }

  .content-card > h2 {
    margin-top: 30px;
    padding: 9px 14px 10px 15px;
    border-radius: 14px;
    font-size: clamp(24px, 8vw, 28px);
  }

  .content-card > h2::after {
    right: -5px;
    top: -5px;
    width: 14px;
    height: 14px;
    border-radius: 5px;
  }

  .content-card p {
    font-size: 15px;
    line-height: 1.68;
  }

  .content-card ul li,
  .content-card ol li {
    padding: 13px 13px 13px 43px;
    border-radius: 14px;
  }

  .content-card blockquote {
    padding: 16px 15px 16px 48px;
  }

  .content-card blockquote::before {
    left: 15px;
    top: 16px;
  }
}

@media (min-width: 980px) {
  .page-shell {
    grid-template-columns: 280px minmax(0, 1fr);
    align-items: start;
  }

  .side {
    position: sticky;
    top: 18px;
  }

  .quick-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 18px, var(--max));
    padding-top: 12px;
  }

  .side-card,
  .content-card,
  .quick-card {
    border-radius: 16px;
    padding: 16px;
  }

  .brand-text {
    font-size: 24px;
  }

  .lead {
    font-size: 16px;
  }
}

.mini-routes {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.mini-routes a {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(255, 91, 216, .055), rgba(66, 232, 255, .025)),
    rgba(0, 0, 0, .20);
}

.mini-routes a:hover {
  border-color: rgba(255, 91, 216, .40);
  background:
    linear-gradient(90deg, rgba(255, 91, 216, .10), rgba(66, 232, 255, .045)),
    rgba(0, 0, 0, .24);
}

.mini-routes strong {
  color: var(--gold2);
}

.mini-routes span {
  color: var(--muted);
}

@media (min-width: 720px) {
  .mini-routes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Footer — Slotrave split panel */
.footer {
  margin: 0 auto 26px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(180, 128, 255, .18);
  border-radius: 26px;
  color: var(--muted);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 91, 216, .12), transparent 30%),
    radial-gradient(circle at 0% 100%, rgba(66, 232, 255, .07), transparent 32%),
    linear-gradient(180deg, rgba(12, 7, 28, .96), rgba(6, 5, 16, .98));
  box-shadow: 0 20px 48px rgba(0, 0, 0, .34);
}

.footer-grid {
  display: grid;
  gap: 0;
}

.footer-grid > div:first-child {
  padding: 22px;
  border-bottom: 1px solid rgba(180, 128, 255, .14);
  background:
    linear-gradient(90deg, rgba(255, 91, 216, .075), rgba(66, 232, 255, .035)),
    rgba(0, 0, 0, .16);
}

.footer strong {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(66, 232, 255, .22);
  border-radius: 999px;
  color: var(--green);
  background: rgba(66, 232, 255, .07);
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .05em;
  text-shadow: none;
}

.footer p {
  margin-top: 13px;
  max-width: 720px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.footer nav {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.footer nav a {
  position: relative;
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 10px 12px 10px 38px;
  border: 1px solid rgba(180, 128, 255, .14);
  border-radius: 16px;
  color: #d6c9f2;
  background:
    linear-gradient(90deg, rgba(255, 91, 216, .045), rgba(66, 232, 255, .02)),
    rgba(0, 0, 0, .20);
  font-size: 13px;
  font-weight: 750;
  transition: .2s ease;
}

.footer nav a::before {
  content: "";
  position: absolute;
  left: 13px;
  width: 10px;
  height: 10px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--green), var(--gold2));
  box-shadow:
    0 0 10px rgba(66, 232, 255, .28),
    0 0 12px rgba(255, 91, 216, .18);
  transform: rotate(45deg);
  opacity: .75;
}

.footer nav a:hover {
  color: #fbf7ff;
  border-color: rgba(66, 232, 255, .34);
  background:
    linear-gradient(90deg, rgba(66, 232, 255, .08), rgba(255, 91, 216, .07)),
    rgba(0, 0, 0, .26);
  transform: translateY(-1px);
}

.footer nav a:hover::before {
  opacity: 1;
}

.footer-bottom {
  margin-top: 0;
  padding: 14px 18px;
  border-top: 1px solid rgba(180, 128, 255, .14);
  color: rgba(207, 196, 236, .74);
  background: rgba(0, 0, 0, .22);
  font-size: 13px;
  line-height: 1.45;
}

@media (min-width: 760px) {

  .footer-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
    align-items: stretch;
  }

  .footer-grid > div:first-child {
    border-right: 1px solid rgba(180, 128, 255, .14);
    border-bottom: 0;
    padding: 24px;
  }

  .footer nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 22px;
  }
}

@media (min-width: 980px) {
  .footer {
    margin-bottom: 32px;
  }
}

@media (max-width: 520px) {
  .footer {
    border-radius: 22px;
  }

  .footer-grid > div:first-child {
    padding: 18px;
  }

  .footer nav {
    padding: 14px;
    gap: 8px;
  }

  .footer nav a {
    min-height: 40px;
    border-radius: 14px;
  }

  .footer-bottom {
    padding: 13px 14px;
  }
}

/* Games / product cards */
.games-section {
  overflow: hidden;
}

.section-head {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.section-kicker {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(66, 232, 255, .28);
  border-radius: 999px;
  color: var(--green);
  background: rgba(66, 232, 255, .08);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.section-head h2 {
  margin: 0;
  color: #fbf7ff;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.12;
  letter-spacing: -.04em;
  text-shadow: 0 0 22px rgba(255, 91, 216, .14);
}

.section-head p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.game-grid {
  display: grid;
  gap: 14px;
}

.game-card {
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 12px;
  overflow: hidden;
  border: 1px solid rgba(180, 128, 255, .17);
  border-radius: 22px;
  color: inherit;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 91, 216, .15), transparent 30%),
    radial-gradient(circle at 0% 100%, rgba(66, 232, 255, .07), transparent 34%),
    linear-gradient(180deg, rgba(28, 12, 52, .68), rgba(5, 4, 13, .88));
  box-shadow: 0 16px 34px rgba(0, 0, 0, .22);
  transition: .22s ease;
}

.game-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 91, 216, .07);
  border-radius: 17px;
  pointer-events: none;
}

.game-card::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 96px;
  height: 96px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(66, 232, 255, .26), rgba(255, 91, 216, .24));
  filter: blur(2px);
  opacity: .28;
  transform: rotate(12deg);
  pointer-events: none;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(66, 232, 255, .38);
  box-shadow:
    0 22px 44px rgba(0, 0, 0, .30),
    0 0 30px rgba(255, 91, 216, .10);
}

.game-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 128px;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(180, 128, 255, .18);
  border-radius: 16px;
  opacity: .90;
  filter: saturate(1.12) contrast(1.05);
  transition: .22s ease;
}

.game-card:hover img {
  opacity: 1;
  border-color: rgba(255, 91, 216, .40);
  transform: scale(1.015);
}

.game-card span {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin: 14px 0 10px;
  padding: 5px 9px;
  border: 1px solid rgba(66, 232, 255, .22);
  border-radius: 999px;
  color: var(--green);
  background: rgba(66, 232, 255, .08);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.game-card strong {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--gold2);
  font-size: 21px;
  line-height: 1.15;
}

.game-card p {
  position: relative;
  z-index: 1;
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

@media (min-width: 720px) {
  .game-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1180px) {
  .game-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .game-card {
    min-height: auto;
    padding: 12px;
    border-radius: 18px;
  }

  .game-card img {
    height: 140px;
    border-radius: 14px;
  }

  .game-card strong {
    font-size: 19px;
  }
}

/* Content blocks */
.content-intro {
  display: grid;
  gap: 18px;
  align-items: center;
}

.content-intro img {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  border: 1px solid rgba(180, 128, 255, .18);
  border-radius: 18px;
  opacity: .92;
  filter: saturate(1.08) contrast(1.04);
}

.content-intro img:hover {
  border-color: rgba(255, 91, 216, .38);
}

.intent-grid {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.intent-grid div,
.geo-boxes a,
.notice-box {
  border: 1px solid rgba(180, 128, 255, .16);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 91, 216, .08), rgba(66, 232, 255, .035)),
    rgba(0, 0, 0, .22);
}

.intent-grid div {
  padding: 16px;
}

.intent-grid strong,
.geo-boxes strong,
.notice-box strong {
  display: block;
  color: var(--gold2);
  font-size: 17px;
  line-height: 1.2;
}

.intent-grid p {
  margin-top: 8px;
  font-size: 14px;
}

.geo-boxes {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.geo-boxes a {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  transition: .2s ease;
}

.geo-boxes a:hover {
  border-color: rgba(255, 91, 216, .42);
  background:
    linear-gradient(135deg, rgba(255, 91, 216, .12), rgba(66, 232, 255, .055)),
    rgba(0, 0, 0, .26);
  transform: translateY(-2px);
}

.geo-boxes span {
  color: var(--muted);
  font-size: 14px;
}

.notice-box {
  margin-top: 22px;
  padding: 16px;
}

.notice-box p {
  margin-top: 8px;
  font-size: 14px;
}

@media (min-width: 760px) {
  .content-intro {
    grid-template-columns: minmax(0, 1fr) 320px;
  }

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

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

@media (min-width: 1180px) {
  .intent-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Article content blocks */
.step-list,
.info-table,
.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  margin-bottom: 24px;
}

.step-list div,
.info-table div,
.faq-list details {
  border: 1px solid rgba(180, 128, 255, .16);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 91, 216, .08), rgba(66, 232, 255, .035)),
    rgba(0, 0, 0, .22);
}

.step-list div,
.info-table div {
  padding: 16px;
}

.step-list span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.step-list strong,
.info-table strong {
  display: block;
  color: var(--gold2);
  font-size: 17px;
  line-height: 1.2;
}

.step-list p,
.info-table span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  padding: 16px;
  color: var(--gold2);
  font-weight: 900;
  cursor: pointer;
}

.faq-list summary::marker {
  color: var(--green);
}

.faq-list details p {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--muted);
}

@media (min-width: 760px) {
  .step-list,
  .info-table {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Wide SEO tables — Slotrave data cards version */
.page-shell,
.main,
.content-card {
  min-width: 0;
}

.table-scroll {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 24px 0 14px;
  overflow-x: auto;
  overflow-y: hidden;
  box-sizing: border-box;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  -webkit-overflow-scrolling: touch;
}

.table-scroll::-webkit-scrollbar {
  height: 8px;
}

.table-scroll::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, .22);
  border-radius: 999px;
}

.table-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--green), var(--gold2));
  border-radius: 999px;
}

.wide-table {
  width: 100%;
  min-width: 920px;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0 10px;
}

/* Caption now looks like a separate table title card */
.wide-table caption {
  caption-side: top;
  padding: 14px 16px;
  border: 1px solid rgba(180, 128, 255, .18);
  border-radius: 18px;
  color: #fbf7ff;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 91, 216, .12), transparent 32%),
    linear-gradient(90deg, rgba(255, 91, 216, .09), rgba(66, 232, 255, .035)),
    rgba(0, 0, 0, .22);
  font-size: 17px;
  font-weight: 950;
  text-align: center;
  line-height: 1.3;
  letter-spacing: -.025em;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
}

.wide-table thead tr {
  background: transparent;
}

.wide-table th {
  padding: 0 10px 4px;
  border: 0;
  color: var(--green);
  background: transparent;
  font-size: 11px;
  font-weight: 950;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: .08em;
  line-height: 1.25;
}

.wide-table td {
  width: 16.66%;
  padding: 16px 14px;
  border: 0;
  border-top: 1px solid rgba(180, 128, 255, .14);
  border-bottom: 1px solid rgba(180, 128, 255, .14);
  color: var(--muted);
  background:
    linear-gradient(180deg, rgba(255, 91, 216, .055), rgba(0, 0, 0, .20)),
    rgba(7, 5, 17, .58);
  font-size: 14px;
  line-height: 1.48;
  text-align: left;
  vertical-align: top;
  word-break: normal;
  overflow-wrap: break-word;
  transition: .2s ease;
}

.wide-table td:first-child {
  width: 18%;
  border-left: 1px solid rgba(180, 128, 255, .14);
  border-radius: 18px 0 0 18px;
  color: #fbf7ff;
  font-weight: 900;
  background:
    radial-gradient(circle at 0% 0%, rgba(66, 232, 255, .09), transparent 32%),
    linear-gradient(180deg, rgba(255, 91, 216, .09), rgba(0, 0, 0, .22)),
    rgba(7, 5, 17, .66);
}

.wide-table td:last-child {
  border-right: 1px solid rgba(180, 128, 255, .14);
  border-radius: 0 18px 18px 0;
}

.wide-table tbody tr:hover td {
  border-color: rgba(66, 232, 255, .30);
  background:
    linear-gradient(180deg, rgba(66, 232, 255, .065), rgba(255, 91, 216, .045)),
    rgba(7, 5, 17, .70);
}

.wide-table tbody tr:hover td:first-child {
  color: var(--gold2);
}

.wide-table strong,
.wide-table b {
  color: var(--gold2);
}

.table-note {
  margin: 10px 0 26px;
  padding: 10px 12px;
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(66, 232, 255, .18);
  border-radius: 999px;
  color: rgba(207, 196, 236, .86);
  background: rgba(0, 0, 0, .22);
  font-size: 13px;
  line-height: 1.45;
}

.table-note::before {
  content: "Swipe ";
  color: var(--green);
  font-weight: 900;
}

.table-note::after {
  content: " →";
  color: var(--green);
  font-weight: 900;
}

@media (max-width: 760px) {
  .table-scroll {
    margin: 20px 0 12px;
  }

  .wide-table {
    min-width: 820px;
    border-spacing: 0 8px;
  }

  .wide-table caption {
    padding: 12px 14px;
    border-radius: 15px;
    font-size: 15px;
  }

  .wide-table th {
    padding: 0 9px 3px;
    font-size: 10px;
    letter-spacing: .06em;
  }

  .wide-table td {
    padding: 13px 10px;
    font-size: 12.5px;
    line-height: 1.42;
  }

  .wide-table td:first-child {
    border-radius: 14px 0 0 14px;
  }

  .wide-table td:last-child {
    border-radius: 0 14px 14px 0;
  }

  .table-note {
    width: 100%;
    border-radius: 14px;
  }
}

/* Author block — Slotrave editorial card */
.author-box {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0;
  margin-top: 26px;
  padding: 0;
  border: 1px solid rgba(180, 128, 255, .18);
  border-radius: 24px;
  background:
    radial-gradient(circle at 0% 0%, rgba(66, 232, 255, .08), transparent 32%),
    radial-gradient(circle at 100% 100%, rgba(255, 91, 216, .10), transparent 34%),
    linear-gradient(180deg, rgba(14, 8, 32, .94), rgba(6, 5, 16, .96));
  box-shadow: 0 18px 42px rgba(0, 0, 0, .28);
}

.author-box::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 91, 216, .075);
  border-radius: 18px;
  pointer-events: none;
}

.author-avatar {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 86px;
  padding: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(66, 232, 255, .16), rgba(255, 91, 216, .16)),
    rgba(0, 0, 0, .24);
  box-shadow: none;
}

.author-avatar::after {
  content: "Editorial review";
  position: absolute;
  left: 112px;
  top: 50%;
  transform: translateY(-50%);
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(66, 232, 255, .22);
  border-radius: 999px;
  color: var(--green);
  background: rgba(0, 0, 0, .24);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.author-avatar img {
  position: absolute;
  left: 20px;
  bottom: -26px;
  width: 82px;
  height: 82px;
  display: block;
  object-fit: cover;
  border: 4px solid rgba(7, 5, 17, .95);
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(180, 128, 255, .28),
    0 0 24px rgba(255, 91, 216, .18);
}

.author-content {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 42px 22px 20px;
}

.author-kicker {
  display: none;
}

.author-content h2 {
  margin: 0 0 10px;
  padding: 0;
  color: #fbf7ff;
  font-size: clamp(22px, 2.2vw, 31px);
  line-height: 1.1;
  letter-spacing: -.04em;
  text-shadow:
    0 0 18px rgba(255, 91, 216, .14),
    0 0 24px rgba(66, 232, 255, .08);
}

.author-content h2::before,
.author-content h2::after {
  display: none;
}

.author-content h2 a {
  color: inherit;
  text-decoration: none;
}

.author-content h2 a:hover {
  color: var(--gold2);
  text-decoration: none;
}

.author-content p {
  margin: 0;
  max-width: 860px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

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

.author-meta span {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border: 1px solid rgba(180, 128, 255, .15);
  border-radius: 14px;
  color: #d6c9f2;
  background:
    linear-gradient(135deg, rgba(255, 91, 216, .055), rgba(66, 232, 255, .025)),
    rgba(0, 0, 0, .22);
  font-size: 12px;
  font-weight: 850;
  text-align: center;
}

.author-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.author-checks span {
  position: relative;
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 8px 11px 8px 36px;
  border: 1px solid rgba(66, 232, 255, .17);
  border-radius: 14px;
  color: #e7ddff;
  background:
    radial-gradient(circle at 100% 0%, rgba(66, 232, 255, .045), transparent 30%),
    rgba(0, 0, 0, .20);
  font-size: 12px;
  font-weight: 850;
}

.author-checks span::before {
  content: "";
  position: absolute;
  left: 13px;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--green), var(--gold2));
  box-shadow:
    0 0 12px rgba(66, 232, 255, .36),
    0 0 14px rgba(255, 91, 216, .20);
  transform: rotate(45deg);
}

@media (min-width: 720px) {
  .author-box {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
}

@media (max-width: 640px) {
  .author-box {
    border-radius: 20px;
  }

  .author-box::before {
    inset: 9px;
    border-radius: 15px;
  }

  .author-avatar {
    height: 78px;
  }

  .author-avatar img {
    left: 16px;
    bottom: -24px;
    width: 74px;
    height: 74px;
  }

  .author-avatar::after {
    left: 100px;
    font-size: 11px;
  }

  .author-content {
    padding: 40px 16px 16px;
  }

  .author-meta,
  .author-checks {
    grid-template-columns: 1fr;
  }

  .author-meta span,
  .author-checks span {
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 420px) {
  .author-avatar::after {
    content: "Review";
  }
}

/* Referral CTA — Slotrave ticket card */
.ref-btn-wrap {
  margin: 34px 0;
}

.ref-btn {
  position: relative;
  width: 100%;
  min-height: 112px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(180, 128, 255, .22);
  border-radius: 24px;
  color: inherit;
  text-align: left;
  text-decoration: none;
  background:
    radial-gradient(circle at 0% 0%, rgba(66, 232, 255, .10), transparent 30%),
    radial-gradient(circle at 100% 100%, rgba(255, 91, 216, .16), transparent 34%),
    linear-gradient(135deg, rgba(18, 9, 38, .96), rgba(7, 5, 17, .96));
  box-shadow:
    0 18px 42px rgba(0, 0, 0, .28),
    inset 0 0 38px rgba(255, 91, 216, .045);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.ref-btn::before {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 14px;
  right: 112px;
  width: 1px;
  background:
    repeating-linear-gradient(
      180deg,
      rgba(180, 128, 255, .28) 0 6px,
      transparent 6px 12px
    );
  pointer-events: none;
}

.ref-btn::after {
  content: "→";
  position: relative;
  z-index: 1;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(66, 232, 255, .34);
  border-radius: 20px;
  color: #070511;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .72), transparent 24%),
    linear-gradient(135deg, var(--green), var(--gold2));
  box-shadow:
    0 0 22px rgba(66, 232, 255, .20),
    0 0 26px rgba(255, 91, 216, .18);
  font-size: 34px;
  font-weight: 950;
  line-height: 1;
  transition: transform .2s ease, filter .2s ease;
}

.ref-btn span,
.ref-btn strong,
.ref-btn em {
  position: relative;
  z-index: 1;
  display: block;
}

.ref-btn span {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 9px;
  padding: 0 10px;
  border: 1px solid rgba(66, 232, 255, .22);
  border-radius: 999px;
  color: var(--green);
  background: rgba(66, 232, 255, .07);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.ref-btn strong {
  color: #fbf7ff;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.045em;
  text-transform: none;
  text-shadow:
    0 0 18px rgba(255, 91, 216, .18),
    0 0 24px rgba(66, 232, 255, .08);
}

.ref-btn em {
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  font-weight: 750;
  line-height: 1.45;
}

.ref-btn:hover {
  transform: translateY(-3px);
  border-color: rgba(66, 232, 255, .38);
  box-shadow:
    0 24px 52px rgba(0, 0, 0, .34),
    0 0 34px rgba(255, 91, 216, .12),
    inset 0 0 42px rgba(66, 232, 255, .045);
  text-decoration: none;
}

.ref-btn:hover::after {
  transform: translateX(3px) rotate(-2deg);
  filter: brightness(1.08);
  text-decoration: none;
}

.ref-btn:active {
  transform: translateY(0) scale(.99);
}

@media (max-width: 640px) {
  .ref-btn-wrap {
    margin: 26px 0;
  }

  .ref-btn {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: auto;
    padding: 18px;
    border-radius: 20px;
    text-align: left;
  }

  .ref-btn::before {
    display: none;
  }

  .ref-btn::after {
    width: 100%;
    height: 48px;
    border-radius: 14px;
    content: "Open Slotrave →";
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: .04em;
  }

  .ref-btn strong {
    font-size: clamp(24px, 8vw, 32px);
  }

  .ref-btn em {
    font-size: 13px;
  }
}

/* Breadcrumbs — Slotrave rail style */
.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(207, 196, 236, .76);
  font-size: 13px;
  line-height: 1.4;
}

.breadcrumbs a,
.breadcrumbs span:last-child {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(180, 128, 255, .16);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 91, 216, .055), rgba(66, 232, 255, .025)),
    rgba(7, 5, 17, .42);
  font-weight: 800;
}

.breadcrumbs a {
  color: var(--gold2);
  text-decoration: none;
  transition: .2s ease;
}

.breadcrumbs a:hover {
  color: var(--green);
  border-color: rgba(66, 232, 255, .34);
  background:
    linear-gradient(90deg, rgba(66, 232, 255, .075), rgba(255, 91, 216, .055)),
    rgba(7, 5, 17, .54);
  text-decoration: none;
  transform: translateY(-1px);
}

.breadcrumbs span {
  display: inline-flex;
  align-items: center;
}

.breadcrumbs span:last-child {
  color: rgba(251, 247, 255, .92);
  border-color: rgba(66, 232, 255, .22);
}

.breadcrumbs-separator {
  width: 6px;
  height: 6px;
  display: inline-flex;
  overflow: hidden;
  border-radius: 50%;
  color: transparent;
  background: linear-gradient(135deg, var(--green), var(--gold2));
  box-shadow:
    0 0 10px rgba(66, 232, 255, .38),
    0 0 12px rgba(255, 91, 216, .22);
}

@media (max-width: 640px) {
  .breadcrumbs {
    gap: 6px;
    margin: 0 0 14px;
    font-size: 12px;
  }

  .breadcrumbs a,
  .breadcrumbs span:last-child {
    min-height: 30px;
    padding: 0 10px;
    max-width: 100%;
  }

  .breadcrumbs-separator {
    width: 5px;
    height: 5px;
  }
}

/* Error 404 page */
.error-page {
  min-width: 320px;
}

.error-shell {
  width: min(100% - 28px, var(--max));
  min-height: 100vh;
  margin: 0 auto;
  padding: 34px 0;
  display: grid;
  align-content: center;
  gap: 18px;
}

.error-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 22px;
  padding: 24px;
  border: 1px solid rgba(180, 128, 255, .20);
  border-radius: 30px;
  background:
    radial-gradient(circle at 0% 0%, rgba(66, 232, 255, .10), transparent 30%),
    radial-gradient(circle at 100% 100%, rgba(255, 91, 216, .16), transparent 34%),
    linear-gradient(135deg, rgba(18, 9, 38, .96), rgba(7, 5, 17, .98));
  box-shadow:
    0 24px 58px rgba(0, 0, 0, .38),
    inset 0 0 42px rgba(255, 91, 216, .045);
}

.error-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 91, 216, .08);
  border-radius: 22px;
  pointer-events: none;
}

.error-code {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 180px;
  border: 1px solid rgba(66, 232, 255, .20);
  border-radius: 24px;
  color: #fbf7ff;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 91, 216, .22), transparent 36%),
    linear-gradient(180deg, rgba(66, 232, 255, .06), rgba(0, 0, 0, .22)),
    rgba(0, 0, 0, .22);
  font-size: clamp(76px, 14vw, 150px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.08em;
  text-shadow:
    0 0 24px rgba(255, 91, 216, .35),
    0 0 34px rgba(66, 232, 255, .16);
}

.error-content {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.error-content h1 {
  margin-top: 14px;
  max-width: 720px;
  color: #fbf7ff;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: -.055em;
  text-shadow:
    0 0 24px rgba(255, 91, 216, .18),
    0 0 30px rgba(66, 232, 255, .08);
}

.error-content .lead {
  max-width: 720px;
}

.error-actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.error-routes {
  display: grid;
  gap: 12px;
}

.error-routes a {
  position: relative;
  min-height: 126px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(180, 128, 255, .16);
  border-radius: 20px;
  color: var(--muted);
  background:
    radial-gradient(circle at 100% 0%, rgba(66, 232, 255, .055), transparent 32%),
    linear-gradient(135deg, rgba(255, 91, 216, .065), rgba(0, 0, 0, .22)),
    rgba(7, 5, 17, .58);
  transition: .2s ease;
}

.error-routes a:hover {
  transform: translateY(-2px);
  border-color: rgba(66, 232, 255, .34);
  background:
    radial-gradient(circle at 100% 0%, rgba(66, 232, 255, .09), transparent 32%),
    linear-gradient(135deg, rgba(255, 91, 216, .09), rgba(0, 0, 0, .26)),
    rgba(7, 5, 17, .70);
}

.error-routes span {
  display: inline-flex;
  width: fit-content;
  min-height: 26px;
  align-items: center;
  margin-bottom: 10px;
  padding: 0 10px;
  border: 1px solid rgba(66, 232, 255, .22);
  border-radius: 999px;
  color: var(--green);
  background: rgba(66, 232, 255, .07);
  font-size: 12px;
  font-weight: 950;
}

.error-routes strong {
  display: block;
  color: #fbf7ff;
  font-size: 20px;
  line-height: 1.15;
}

.error-routes p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.error-notice {
  padding: 18px;
  border: 1px solid rgba(66, 232, 255, .18);
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(66, 232, 255, .055), rgba(255, 91, 216, .04)),
    rgba(0, 0, 0, .22);
}

.error-notice strong {
  display: block;
  color: var(--green);
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.error-notice p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

@media (min-width: 760px) {
  .error-card {
    grid-template-columns: 300px minmax(0, 1fr);
    align-items: center;
    padding: 32px;
  }

  .error-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 680px;
  }

  .error-routes {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .error-shell {
    width: min(100% - 18px, var(--max));
    padding: 18px 0;
  }

  .error-card {
    padding: 18px;
    border-radius: 24px;
  }

  .error-card::before {
    inset: 10px;
    border-radius: 18px;
  }

  .error-code {
    min-height: 130px;
    border-radius: 18px;
  }

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

  .error-routes a {
    min-height: auto;
    border-radius: 18px;
  }
}

/* Inline 404 page */
.error-main {
  min-height: 70vh;
}

.error-article {
  overflow: hidden;
}

.error-inline {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  padding: 24px;
  border: 1px solid rgba(180, 128, 255, .18);
  border-radius: 24px;
  background:
    radial-gradient(circle at 0% 0%, rgba(66, 232, 255, .10), transparent 32%),
    radial-gradient(circle at 100% 100%, rgba(255, 91, 216, .14), transparent 34%),
    linear-gradient(135deg, rgba(18, 9, 38, .72), rgba(7, 5, 17, .92));
}

.error-inline::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 91, 216, .075);
  border-radius: 18px;
  pointer-events: none;
}

.error-inline > * {
  position: relative;
  z-index: 1;
}

.error-inline-code {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  margin-bottom: 14px;
  padding: 0 16px;
  border: 1px solid rgba(66, 232, 255, .26);
  border-radius: 999px;
  color: var(--green);
  background:
    linear-gradient(90deg, rgba(66, 232, 255, .08), rgba(255, 91, 216, .06)),
    rgba(0, 0, 0, .22);
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -.04em;
  text-shadow: 0 0 18px rgba(66, 232, 255, .22);
}

.error-inline h1 {
  margin-top: 12px;
  max-width: 760px;
  color: #fbf7ff;
  font-size: clamp(38px, 6vw, 72px);
  line-height: .98;
  letter-spacing: -.06em;
  text-shadow:
    0 0 24px rgba(255, 91, 216, .18),
    0 0 32px rgba(66, 232, 255, .08);
}

.error-inline .lead {
  max-width: 760px;
  color: var(--muted);
}

.error-cta-row {
  margin-top: 22px;
}

.error-link-grid a {
  color: var(--gold2);
  font-weight: 850;
  text-decoration: none;
}

.error-link-grid a:hover {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (min-width: 760px) {
  .error-inline {
    padding: 34px;
  }

  .error-cta-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 680px;
  }
}

@media (max-width: 640px) {
  .error-inline {
    padding: 18px;
    border-radius: 20px;
  }

  .error-inline::before {
    inset: 10px;
    border-radius: 15px;
  }

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