/* Ultimate Gambling Reviews — design tokens (matched to mock: navy-black, #161625 cards, neon green) */
:root {
  --bg-deep: #0a0a14;
  --bg-card: #161625;
  --bg-elevated: #11111d;
  --bg-featured: #13131c;
  --bg-table-row: #161625;
  --bg-table-row-alt: #13131f;
  --border: #1f2937;
  --border-light: rgba(255, 255, 255, 0.16);
  --text: #ffffff;
  --text-muted: #9ca3af;
  --text-faint: #4b5563;
  --accent: #9333ea;
  --accent-deep: #7e22ce;
  --accent-hover: #a855f7;
  --accent-glow: rgba(147, 51, 234, 0.5);
  --stat-blue: #3b82f6;
  --stat-blue-deep: #2563eb;
  --green: #22c55e;
  --green-dim: rgba(34, 197, 94, 0.14);
  --green-deep: #16a34a;
  --gold: #fbbf24;
  --gold-payout: #e5c158;
  --rating-orange: #f59e0b;
  --nav-link: #ccccff;
  --nav-link-hover: #ffffff;
  --tab-inactive: rgba(255, 255, 255, 0.82);
  --radius: 12px;
  --radius-sm: 10px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --header-h: 72px;
  --scrollbar-size: 11px;
  --scrollbar-track: #0b0c12;
  --scrollbar-thumb-a: #d8b4fe;
  --scrollbar-thumb-b: #9333ea;
  --scrollbar-thumb-c: #581c87;
  --scrollbar-thumb-ff: #9333ea;
}

[data-theme="light"] {
  --bg-deep: #f4f4f8;
  --bg-card: #ffffff;
  --bg-elevated: #ececf4;
  --bg-featured: #f9fafb;
  --bg-table-row: #ffffff;
  --bg-table-row-alt: #f3f4f6;
  --border: #e5e7eb;
  --border-light: #d1d5db;
  --text: #111827;
  --text-muted: #6b7280;
  --text-faint: #9ca3af;
  --accent-glow: rgba(124, 58, 237, 0.2);
  --green-dim: rgba(34, 197, 94, 0.12);
  --nav-link: #ccccff;
  --nav-link-hover: #7c7cff;
  --tab-inactive: #4b5563;
  --scrollbar-track: #d9d8e4;
  --scrollbar-thumb-a: #e9d5ff;
  --scrollbar-thumb-b: #8b5cf6;
  --scrollbar-thumb-c: #6d28d9;
  --scrollbar-thumb-ff: #8b5cf6;
}

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

html {
  scroll-behavior: smooth;
}

/* Scrollbars — casino rail + violet thumb (Firefox + WebKit) */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb-ff) var(--scrollbar-track);
}

*::-webkit-scrollbar {
  width: var(--scrollbar-size);
  height: var(--scrollbar-size);
}

*::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
  border-radius: 999px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.42);
}

[data-theme="light"] *::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.07);
}

*::-webkit-scrollbar-thumb {
  border-radius: 999px;
  border: 2px solid rgba(0, 0, 0, 0.25);
  background: linear-gradient(
    180deg,
    var(--scrollbar-thumb-a) 0%,
    var(--scrollbar-thumb-b) 48%,
    var(--scrollbar-thumb-c) 100%
  );
  box-shadow:
    0 0 14px rgba(147, 51, 234, 0.45),
    0 0 0 1px rgba(251, 191, 36, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

*::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #f5f3ff 0%, #a855f7 42%, #6d28d9 100%);
  box-shadow:
    0 0 20px rgba(147, 51, 234, 0.6),
    0 0 0 1px rgba(251, 191, 36, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

[data-theme="light"] *::-webkit-scrollbar-thumb {
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow:
    0 0 10px rgba(124, 58, 237, 0.22),
    0 0 0 1px rgba(251, 191, 36, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

[data-theme="light"] *::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #faf5ff 0%, #9333ea 45%, #5b21b6 100%);
  box-shadow:
    0 0 16px rgba(124, 58, 237, 0.35),
    0 0 0 1px rgba(245, 158, 11, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

*::-webkit-scrollbar-corner {
  background: var(--scrollbar-track);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-muted);
  background-color: var(--bg-deep);
  background-image: radial-gradient(ellipse 120% 55% at 50% -15%, rgba(147, 51, 234, 0.16), transparent 52%),
    radial-gradient(ellipse 80% 40% at 85% 20%, rgba(37, 99, 235, 0.06), transparent 45%);
  background-attachment: fixed;
  min-height: 100vh;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

@media (max-width: 768px) {
  body {
    background-attachment: scroll;
  }
}

@media (max-width: 899px) {
  body.is-nav-open {
    overflow: hidden;
    touch-action: none;
  }
}

/* Storefront shell (matches default theme layout contract; gambling does not load default app.css). */
.theme-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.theme-main {
  flex: 1 1 auto;
  width: 100%;
}

/* Auth + account (login / register / 2FA / sign-out) — premium card + glass + casino accents */
.theme-main main#main-content.theme-public-solo:has(.theme-auth-page) {
  position: relative;
  isolation: isolate;
  margin-top: 0.5rem;
  margin-bottom: 3rem;
  padding-left: max(1rem, env(safe-area-inset-left, 0px));
  padding-right: max(1rem, env(safe-area-inset-right, 0px));
  min-height: min(78vh, 48rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.theme-main main#main-content.theme-public-solo:has(.theme-auth-page)::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(36rem, 120vw);
  height: min(36rem, 90vh);
  left: 50%;
  top: 44%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(ellipse 70% 55% at 50% 40%, rgba(147, 51, 234, 0.28), transparent 62%),
    radial-gradient(ellipse 50% 45% at 80% 75%, rgba(251, 191, 36, 0.08), transparent 55%),
    radial-gradient(ellipse 45% 40% at 15% 70%, rgba(59, 130, 246, 0.07), transparent 50%);
  pointer-events: none;
}

[data-theme="light"] .theme-main main#main-content.theme-public-solo:has(.theme-auth-page)::before {
  background:
    radial-gradient(ellipse 70% 55% at 50% 42%, rgba(147, 51, 234, 0.12), transparent 62%),
    radial-gradient(ellipse 50% 45% at 82% 78%, rgba(251, 191, 36, 0.1), transparent 55%);
}

@media (prefers-reduced-motion: no-preference) {
  .theme-main main#main-content.theme-public-solo:has(.theme-auth-page) .theme-auth-page {
    animation: cr-auth-card-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  @keyframes cr-auth-card-in {
    from {
      opacity: 0;
      transform: translateY(12px) scale(0.985);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }
}

.theme-main .theme-auth-page {
  width: 100%;
  max-width: 28rem;
  margin-inline: auto;
  padding: clamp(1.5rem, 4.5vw, 2.1rem) clamp(1.35rem, 4vw, 1.85rem) clamp(1.55rem, 4.5vw, 2.05rem);
  border-radius: 22px;
  border: 1px solid rgba(196, 181, 253, 0.38);
  background: linear-gradient(148deg, rgba(42, 28, 72, 0.42) 0%, rgba(17, 17, 29, 0.82) 42%, rgba(15, 23, 42, 0.94) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.07) inset,
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 28px 64px rgba(0, 0, 0, 0.45),
    0 0 80px rgba(99, 56, 242, 0.12);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  position: relative;
  overflow: hidden;
}

.theme-main .theme-auth-page::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-deep), var(--accent) 38%, var(--gold) 52%, var(--accent) 72%, var(--accent-deep));
  opacity: 0.95;
  pointer-events: none;
}

.theme-main .theme-auth-page::after {
  content: "";
  position: absolute;
  right: -20%;
  bottom: -35%;
  width: 70%;
  height: 55%;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.14) 0%, transparent 68%);
  pointer-events: none;
}

[data-theme="light"] .theme-main .theme-auth-page {
  border-color: rgba(124, 58, 237, 0.2);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.97) 0%, rgba(250, 245, 255, 0.99) 55%, rgba(255, 255, 255, 0.98) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.85) inset,
    0 20px 48px rgba(99, 56, 242, 0.09),
    0 2px 8px rgba(15, 23, 42, 0.04);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
}

[data-theme="light"] .theme-main .theme-auth-page::after {
  background: radial-gradient(circle, rgba(147, 51, 234, 0.08) 0%, transparent 65%);
}

.theme-main .theme-auth-page .theme-cms-page-hero {
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

.theme-main .theme-auth-page .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.85rem;
  padding: 0.35rem 0.65rem 0.35rem 0.5rem;
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 245, 255, 0.95);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(196, 181, 253, 0.28);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .theme-main .theme-auth-page .eyebrow {
  color: var(--accent-deep);
  background: rgba(124, 58, 237, 0.08);
  border-color: rgba(124, 58, 237, 0.15);
  box-shadow: none;
}

.theme-main .theme-auth-page .eyebrow-pulse {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(145deg, #4ade80, var(--green-deep));
  box-shadow:
    0 0 0 3px rgba(34, 197, 94, 0.25),
    0 0 12px rgba(34, 197, 94, 0.45);
}

@media (prefers-reduced-motion: no-preference) {
  .theme-main .theme-auth-page .eyebrow-pulse {
    animation: cr-auth-pulse 2.4s ease-in-out infinite;
  }

  @keyframes cr-auth-pulse {
    0%,
    100% {
      opacity: 1;
      transform: scale(1);
    }
    50% {
      opacity: 0.85;
      transform: scale(1.08);
    }
  }
}

.theme-main .theme-auth-page .theme-cms-page-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 4.2vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--text);
  text-shadow: 0 2px 24px rgba(147, 51, 234, 0.18);
}

[data-theme="light"] .theme-main .theme-auth-page .theme-cms-page-title {
  text-shadow: none;
}

.theme-main .theme-auth-page .auth-lede,
.theme-main .theme-auth-page .theme-auth-page__intro {
  margin: 0 0 1.25rem;
  font-size: 0.96875rem;
  line-height: 1.68;
  color: var(--text-muted);
  max-width: 36em;
}

.theme-main .theme-auth-page .auth-lede a,
.theme-main .theme-auth-page .theme-auth-page__footer-link a {
  color: var(--accent-hover);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(168, 85, 247, 0.45);
  transition: color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.theme-main .theme-auth-page .auth-lede a:hover,
.theme-main .theme-auth-page .theme-auth-page__footer-link a:hover {
  color: var(--text);
  border-bottom-color: var(--gold);
  box-shadow: 0 1px 0 rgba(251, 191, 36, 0.35);
}

[data-theme="light"] .theme-main .theme-auth-page .auth-lede a,
[data-theme="light"] .theme-main .theme-auth-page .theme-auth-page__footer-link a {
  color: var(--accent-deep);
}

[data-theme="light"] .theme-main .theme-auth-page .auth-lede a:hover,
[data-theme="light"] .theme-main .theme-auth-page .theme-auth-page__footer-link a:hover {
  color: var(--accent);
  box-shadow: none;
}

.theme-main .theme-auth-page .theme-auth-page__form-wrap {
  width: 100%;
  margin-top: 0.15rem;
  padding: clamp(1.1rem, 3vw, 1.35rem);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

[data-theme="light"] .theme-main .theme-auth-page .theme-auth-page__form-wrap {
  border-color: rgba(124, 58, 237, 0.12);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.theme-main .theme-auth-page .theme-auth-page__footer-link {
  margin: 1.25rem 0 0;
  font-size: 0.90625rem;
  text-align: center;
  color: var(--text-muted);
}

.theme-main .theme-auth-page .auth-field {
  display: grid;
  gap: 0.45rem;
}

.theme-main .theme-auth-page .auth-field > .auth-label {
  display: block;
  margin: 0;
}

.theme-main .theme-auth-page .auth-form {
  display: grid;
  gap: 1.05rem;
  margin-top: 0;
}

.theme-main .theme-auth-page .auth-label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(216, 180, 254, 0.92);
}

[data-theme="light"] .theme-main .theme-auth-page .auth-label {
  color: var(--accent-deep);
}

.theme-main .theme-auth-page .auth-label span {
  color: inherit;
}

.theme-main .theme-auth-page .auth-input {
  display: block;
  width: 100%;
  min-width: 0;
  padding: 0.88rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(167, 139, 250, 0.32);
  background: rgba(8, 8, 16, 0.65);
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  line-height: 1.45;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 4px 18px rgba(0, 0, 0, 0.18);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.theme-main .theme-auth-page .auth-input::placeholder {
  color: var(--text-faint);
}

.theme-main .theme-auth-page .auth-input:hover {
  border-color: rgba(196, 181, 253, 0.5);
}

.theme-main .theme-auth-page .auth-input:focus {
  outline: none;
  border-color: rgba(192, 132, 252, 0.85);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 0 3px rgba(147, 51, 234, 0.32),
    0 8px 28px rgba(0, 0, 0, 0.22);
  background: rgba(10, 10, 20, 0.88);
}

[data-theme="light"] .theme-main .theme-auth-page .auth-input {
  border-color: rgba(124, 58, 237, 0.2);
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

[data-theme="light"] .theme-main .theme-auth-page .auth-input:focus {
  border-color: var(--accent);
  box-shadow:
    0 0 0 3px rgba(124, 58, 237, 0.2),
    0 6px 20px rgba(99, 56, 242, 0.08);
}

.theme-main .theme-auth-page .auth-check {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0.1rem 0 0;
  padding: 0.55rem 0.6rem;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.theme-main .theme-auth-page .auth-check:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.06);
}

.theme-main .theme-auth-page .auth-check input {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--accent);
  cursor: pointer;
}

.theme-main .theme-auth-page .auth-oauth {
  margin: 0 0 0.5rem;
}

.theme-main .theme-auth-page .auth-oauth .btn {
  width: 100%;
  justify-content: center;
  box-sizing: border-box;
}

.theme-main .theme-auth-page .auth-divider {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0.35rem 0 1.05rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(156, 163, 175, 0.95);
}

.theme-main .theme-auth-page .auth-divider::before,
.theme-main .theme-auth-page .auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  border-radius: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 181, 253, 0.35), transparent);
}

[data-theme="light"] .theme-main .theme-auth-page .auth-divider {
  color: var(--text-faint);
}

[data-theme="light"] .theme-main .theme-auth-page .auth-divider::before,
[data-theme="light"] .theme-main .theme-auth-page .auth-divider::after {
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.22), transparent);
}

.theme-main .theme-auth-page .auth-flash {
  margin: 0 0 1.05rem;
  padding: 0.75rem 0.95rem;
  border-radius: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.45;
  border: 1px solid transparent;
}

.theme-main .theme-auth-page .auth-flash--error {
  background: linear-gradient(135deg, rgba(127, 29, 29, 0.35), rgba(239, 68, 68, 0.12));
  border-color: rgba(248, 113, 113, 0.42);
  color: #fecaca;
  box-shadow: 0 4px 20px rgba(239, 68, 68, 0.08);
}

.theme-main .theme-auth-page .auth-flash--success {
  background: linear-gradient(135deg, rgba(22, 101, 52, 0.28), rgba(34, 197, 94, 0.1));
  border-color: rgba(74, 222, 128, 0.38);
  color: #bbf7d0;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.08);
}

[data-theme="light"] .theme-main .theme-auth-page .auth-flash--error {
  color: #991b1b;
  background: rgba(254, 226, 226, 0.92);
  border-color: rgba(248, 113, 113, 0.45);
  box-shadow: none;
}

[data-theme="light"] .theme-main .theme-auth-page .auth-flash--success {
  color: #14532d;
  background: rgba(220, 252, 231, 0.95);
  border-color: rgba(74, 222, 128, 0.45);
  box-shadow: none;
}

.theme-main .theme-auth-page .auth-submit {
  margin-top: 0.35rem;
  width: 100%;
  min-height: 3rem;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.theme-main .theme-auth-page .btn-primary.auth-submit {
  box-shadow:
    0 4px 24px var(--accent-glow),
    0 2px 0 rgba(255, 255, 255, 0.12) inset;
}

.theme-main .theme-auth-page .btn-primary.auth-submit:hover {
  box-shadow:
    0 8px 32px rgba(147, 51, 234, 0.45),
    0 2px 0 rgba(255, 255, 255, 0.14) inset;
}

.theme-main .theme-auth-page .theme-cms-page-hero a.btn-secondary.auth-submit,
.theme-main .theme-auth-page .theme-cms-page-hero .btn.btn-secondary {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.theme-main .theme-auth-page .theme-cms-page-hero a.btn-secondary.auth-submit:hover,
.theme-main .theme-auth-page .theme-cms-page-hero .btn.btn-secondary:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.07) 100%);
  border-color: rgba(196, 181, 253, 0.5);
  color: var(--text);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .theme-main .theme-auth-page .theme-cms-page-hero a.btn-secondary.auth-submit,
[data-theme="light"] .theme-main .theme-auth-page .theme-cms-page-hero .btn.btn-secondary {
  background: rgba(255, 255, 255, 0.98);
  color: var(--text);
  border-color: rgba(124, 58, 237, 0.22);
  box-shadow: 0 2px 12px rgba(99, 56, 242, 0.06);
}

[data-theme="light"] .theme-main .theme-auth-page .theme-cms-page-hero a.btn-secondary.auth-submit:hover,
[data-theme="light"] .theme-main .theme-auth-page .theme-cms-page-hero .btn.btn-secondary:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(99, 56, 242, 0.1);
}

/* Font Awesome: ensure icons inherit sizing in flex rows */
.fa-solid,
.fa-regular,
.fa-brands {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
.hero-title,
.newsletter-title,
.featured-heading,
.featured-name-inline,
.home-card-title {
  color: var(--text);
}

[data-theme="light"] body {
  background-image: none;
  background-color: var(--bg-deep);
}

img {
  max-width: 100%;
  height: auto;
}

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

a:hover {
  color: var(--accent-hover);
}

.container {
  width: min(1200px, calc(100% - 32px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px)));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-to-main {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-to-main:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 200;
  width: auto;
  height: auto;
  clip: auto;
  margin: 0;
  padding: 0.65rem 1rem;
  background: linear-gradient(to right, var(--accent), var(--accent-deep));
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  white-space: normal;
  box-shadow: 0 4px 24px var(--accent-glow);
}

.header-user-menu {
  position: relative;
}

.header-user-menu > summary {
  list-style: none;
  cursor: pointer;
}

.header-user-menu > summary::-webkit-details-marker {
  display: none;
}

.header-user-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  max-width: 11.5rem;
  padding: 0.28rem 0.55rem 0.28rem 0.32rem;
  border: 1px solid color-mix(in srgb, var(--accent) 45%, var(--border));
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent-deep) 28%, transparent),
    color-mix(in srgb, var(--accent) 14%, transparent)
  );
  color: var(--text);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.2;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.header-user-trigger:hover,
.header-user-menu[open] .header-user-trigger {
  border-color: color-mix(in srgb, var(--accent-hover) 65%, var(--border));
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 25%, transparent), 0 4px 18px rgba(147, 51, 234, 0.22);
}

.header-user-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--accent-deep), var(--accent-hover));
  color: #faf5ff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(147, 51, 234, 0.35);
}

.header-user-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #e9d5ff;
}

.header-user-caret {
  flex-shrink: 0;
  font-size: 0.62rem;
  color: color-mix(in srgb, var(--nav-link) 85%, var(--text-muted));
  transition: transform 0.2s ease;
}

.header-user-menu[open] .header-user-caret {
  transform: rotate(180deg);
}

.header-user-panel {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  z-index: 120;
  min-width: 13.5rem;
  padding: 0.45rem;
  border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--border));
  border-radius: 12px;
  background: color-mix(in srgb, var(--bg-card) 92%, #1a1028);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.45),
    0 0 0 1px color-mix(in srgb, var(--accent) 12%, transparent);
}

.header-user-menu:not([open]) .header-user-panel {
  display: none;
}

.header-user-panel-head {
  padding: 0.55rem 0.65rem 0.5rem;
  border-bottom: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
}

.header-user-panel-name {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
}

.header-user-panel-email {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-user-panel-actions {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.35rem 0.2rem 0.2rem;
}

.header-user-logout-form {
  margin: 0;
}

.header-user-menu-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  padding: 0.55rem 0.65rem;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.25;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.header-user-menu-item i {
  width: 1rem;
  text-align: center;
  color: var(--text-muted);
  transition: color 0.15s ease;
}

.header-user-menu-item:hover {
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  color: #faf5ff;
}

.header-user-menu-item:hover i {
  color: #e9d5ff;
}

.header-user-menu-item--admin i {
  color: #c084fc;
}

.header-user-menu-item--admin:hover i {
  color: #e9d5ff;
}

.header-user-menu-item--logout:hover {
  background: color-mix(in srgb, #ef4444 18%, transparent);
  color: #fecaca;
}

.header-user-menu-item--logout:hover i {
  color: #fca5a5;
}

[data-theme="light"] .header-user-trigger {
  background: linear-gradient(135deg, #f5f3ff, #ede9fe);
  border-color: color-mix(in srgb, var(--accent) 30%, #e5e7eb);
}

[data-theme="light"] .header-user-name {
  color: var(--accent-deep);
}

[data-theme="light"] .header-user-panel {
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

[data-theme="light"] .header-user-menu-item:hover {
  color: var(--accent-deep);
}

[data-theme="light"] .header-user-menu-item--logout:hover {
  color: #b91c1c;
}

.header-utils .is-header-active {
  border-color: var(--accent);
  color: var(--text);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: calc(var(--header-h) + env(safe-area-inset-top, 0px));
  padding-top: env(safe-area-inset-top, 0px);
  background: color-mix(in srgb, var(--bg-deep) 88%, transparent);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  border-bottom: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
  overflow: visible;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  overflow: visible;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}

/* Overhang badge: larger mark sits on the bar without growing --header-h */
.site-header .logo {
  position: relative;
  z-index: 120;
  padding-left: 4.85rem; /* slot for absolute logo; text size unchanged */
}

.logo-img {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
}

.site-header .logo-img {
  position: absolute;
  left: 0;
  top: 50%;
  width: 76px;
  height: 76px;
  transform: translateY(-42%); /* slight bottom overhang into hero */
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.5));
  pointer-events: none;
}

.logo-text {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: none;
  color: var(--text);
  max-width: min(14rem, 48vw);
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.logo-text--glow {
  background: linear-gradient(
    90deg,
    #e9d5ff 0%,
    #d946ef 18%,
    #c026d3 32%,
    #fbbf24 46%,
    #fde68a 50%,
    #fcd34d 54%,
    #fbbf24 58%,
    #d946ef 72%,
    #e879f9 86%,
    #f5d0fe 100%
  );
  background-size: 240% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 10px rgba(217, 70, 239, 0.38)) drop-shadow(0 0 14px rgba(251, 191, 36, 0.15));
}

[data-theme="light"] .logo-text--glow {
  background: linear-gradient(
    90deg,
    #5b21b6 0%,
    #7c3aed 20%,
    #9333ea 35%,
    #d97706 47%,
    #fbbf24 50%,
    #f59e0b 53%,
    #d97706 56%,
    #9333ea 72%,
    #7c3aed 88%,
    #6d28d9 100%
  );
  background-size: 240% 100%;
  filter: drop-shadow(0 0 6px rgba(124, 58, 237, 0.22));
}

@media (prefers-reduced-motion: no-preference) {
  .logo-text--glow {
    animation: logo-text-gold-chaser 3.2s linear infinite;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-text--glow {
    background-size: 100% 100%;
    background-position: 50% 50%;
    animation: none;
  }
}

@keyframes logo-text-gold-chaser {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

@media (min-width: 900px) {
  .logo-text {
    font-size: 1.05rem;
    max-width: none;
  }

  .site-header .logo {
    padding-left: 6.5rem;
  }

  .site-header .logo-img {
    width: 100px;
    height: 100px;
  }
}

.nav-main {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border: 1px solid color-mix(in srgb, var(--nav-link) 35%, var(--border));
  border-radius: 10px;
  background: color-mix(in srgb, var(--bg-card) 70%, transparent);
  color: var(--nav-link);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.nav-toggle:hover {
  border-color: color-mix(in srgb, var(--nav-link) 55%, var(--border));
  background: color-mix(in srgb, var(--nav-link) 12%, var(--bg-card));
  color: var(--nav-link-hover);
}

.nav-toggle-bar {
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-main.is-open .nav-toggle {
  border-color: color-mix(in srgb, var(--nav-link) 65%, var(--border));
  background: color-mix(in srgb, var(--nav-link) 18%, var(--bg-card));
  color: var(--nav-link-hover);
}

.nav-main.is-open .nav-toggle-bar:first-child {
  transform: translateY(8px) rotate(45deg);
}

.nav-main.is-open .nav-toggle-bar:last-child {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-item + .nav-item::before {
  content: "";
  flex-shrink: 0;
  width: 1px;
  height: 0.95rem;
  margin: 0 0.15rem;
  background: linear-gradient(
    180deg,
    transparent,
    color-mix(in srgb, var(--nav-link) 55%, var(--border)) 35%,
    color-mix(in srgb, var(--nav-link) 55%, var(--border)) 65%,
    transparent
  );
  opacity: 0.75;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  line-height: 1.2;
  text-decoration: none;
  color: var(--nav-link);
  white-space: nowrap;
  transition:
    color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.15s ease;
}

.nav-link:hover {
  color: var(--nav-link-hover);
  background: color-mix(in srgb, var(--nav-link) 14%, transparent);
}

.nav-link.is-active,
.nav-link[aria-current="page"] {
  color: #fff;
  font-weight: 700;
  background: linear-gradient(135deg, #c931dd 0%, #9333ea 52%, #7e22ce 100%);
  box-shadow:
    0 2px 14px rgba(201, 49, 221, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.nav-link.is-active:hover,
.nav-link[aria-current="page"]:hover {
  color: #fff;
  background: linear-gradient(135deg, #d946ef 0%, #a855f7 52%, #9333ea 100%);
}

[data-theme="light"] .nav-link.is-active,
[data-theme="light"] .nav-link[aria-current="page"] {
  color: #fff;
}

[data-theme="light"] .nav-link.is-active:hover,
[data-theme="light"] .nav-link[aria-current="page"]:hover {
  color: #fff;
}

@media (min-width: 900px) {
  .nav-list {
    flex-wrap: nowrap;
    gap: 0.15rem;
    padding: 0.3rem 0.4rem;
    border-radius: 999px;
    background: color-mix(in srgb, var(--bg-card) 82%, transparent);
    border: 1px solid color-mix(in srgb, var(--nav-link) 28%, var(--border));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.05),
      0 6px 22px rgba(0, 0, 0, 0.22);
  }

  .nav-item + .nav-item::before {
    margin: 0 0.05rem;
  }

  .nav-link {
    padding: 0.42rem 0.72rem;
    font-size: 0.8rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .nav-list {
    max-width: min(52vw, 36rem);
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  }

  .nav-list::-webkit-scrollbar {
    display: none;
  }

  .nav-link {
    font-size: 0.75rem;
    padding: 0.38rem 0.62rem;
  }
}

.chev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.6;
}

.header-utils {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-card);
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.icon-btn:hover {
  color: var(--text);
  border-color: var(--accent);
}

@media (max-width: 899px) {
  .icon-btn {
    min-width: 44px;
    min-height: 44px;
  }
}

.theme-toggle .icon-moon {
  display: none;
}

[data-theme="light"] .theme-toggle .icon-sun {
  display: none;
}

[data-theme="light"] .theme-toggle .icon-moon {
  display: block;
}

/* Header site search (Struxa CMS) */
body.header-search-open {
  overflow: hidden;
}

.header-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: grid;
  place-items: start center;
  padding: calc(var(--header-h) + 1.5rem) 1rem 2rem;
  box-sizing: border-box;
}

.header-search-overlay[hidden] {
  display: none !important;
}

.header-search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 8, 16, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.header-search-dialog {
  position: relative;
  width: min(560px, 100%);
  padding: 1.15rem 1.25rem 1.25rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--bg-card);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation: header-search-pop 0.22s ease-out;
}

@keyframes header-search-pop {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.header-search-dialog__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.header-search-dialog__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.header-search-dialog__close {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
  color: var(--text-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}

.header-search-dialog__close:hover {
  color: var(--text);
  border-color: var(--accent);
  background: rgba(147, 51, 234, 0.12);
}

.header-search-form__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.header-search-form__row {
  display: flex;
  align-items: stretch;
  gap: 0.55rem;
  position: relative;
}

.header-search-form__icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-faint);
  font-size: 0.9rem;
  pointer-events: none;
  z-index: 1;
}

.header-search-form__input {
  flex: 1;
  min-width: 0;
  min-height: 46px;
  padding: 0.65rem 0.85rem 0.65rem 2.35rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  font: inherit;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  background: rgba(0, 0, 0, 0.25);
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.header-search-form__input::placeholder {
  color: var(--text-faint);
}

.header-search-form__input:focus {
  outline: none;
  border-color: rgba(147, 51, 234, 0.55);
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.2);
}

[data-theme="light"] .header-search-form__input {
  background: var(--bg-elevated);
}

[data-theme="light"] .header-search-form__input:focus {
  background: #fff;
}

.header-search-form__submit {
  flex-shrink: 0;
  min-height: 46px;
  padding-inline: 1.1rem;
  white-space: nowrap;
}

.header-search-form__hint {
  margin: 0.65rem 0 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fbbf24;
}

@media (max-width: 520px) {
  .header-search-form__row {
    flex-direction: column;
  }

  .header-search-form__submit {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-search-dialog {
    animation: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s, color 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(to right, var(--accent), var(--accent-deep));
  color: #fff;
  box-shadow: 0 4px 24px var(--accent-glow);
}

.btn-primary:hover {
  background: linear-gradient(to right, var(--accent-hover), var(--accent));
  color: #fff;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-light);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--text);
}

[data-theme="light"] .btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-ghost {
  background: var(--bg-card);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--accent);
}

.btn-block {
  width: 100%;
}

.btn-lg {
  padding: 0.82rem 1.35rem;
  font-size: 1rem;
  border-radius: var(--radius);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(196, 181, 253, 0.45);
  color: var(--text);
}

[data-theme="light"] .btn-secondary {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(124, 58, 237, 0.2);
  color: var(--text);
}

[data-theme="light"] .btn-secondary:hover {
  border-color: var(--accent);
}

.btn-wide {
  min-width: 220px;
}

.btn-table {
  padding: 0.45rem 0.9rem;
  font-size: 0.8125rem;
  background: linear-gradient(to right, var(--accent), var(--accent-deep));
  color: #fff;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn-table:hover {
  filter: brightness(1.08);
}

@media (max-width: 899px) {
  .nav-main {
    position: relative;
    justify-content: flex-end;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-list {
    position: fixed;
    top: calc(var(--header-h) + env(safe-area-inset-top, 0px) + 0.5rem);
    left: 0.75rem;
    right: 0.75rem;
    z-index: 150;
    flex-direction: column;
    align-items: stretch;
    padding: 0.55rem;
    max-height: min(72vh, calc(100dvh - var(--header-h) - env(safe-area-inset-top, 0px) - 1.5rem));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: color-mix(in srgb, var(--bg-card) 96%, #1a1028);
    border: 1px solid color-mix(in srgb, var(--nav-link) 32%, var(--border));
    border-radius: 16px;
    box-shadow:
      0 24px 56px rgba(0, 0, 0, 0.55),
      0 0 0 1px color-mix(in srgb, var(--nav-link) 12%, transparent);
    gap: 0.2rem;
    display: none;
    mask-image: none;
  }

  .nav-item {
    width: 100%;
  }

  .nav-item + .nav-item::before {
    display: none;
  }

  .nav-link {
    width: 100%;
    padding: 0.78rem 0.95rem;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-weight: 600;
    box-sizing: border-box;
  }

  .nav-link:hover {
    color: var(--nav-link-hover);
    background: color-mix(in srgb, var(--nav-link) 14%, transparent);
  }

  .nav-link.is-active,
  .nav-link[aria-current="page"] {
    color: #fff;
    background: linear-gradient(135deg, #c931dd 0%, #9333ea 55%, #7e22ce 100%);
    box-shadow: 0 4px 16px rgba(201, 49, 221, 0.35);
  }

  [data-theme="light"] .nav-list {
    background: #fff;
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.14);
  }

  [data-theme="light"] .nav-link.is-active,
  [data-theme="light"] .nav-link[aria-current="page"] {
    color: #fff;
  }

  .nav-main.is-open .nav-list {
    display: flex;
  }

  body.is-nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 140;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
  }

  .header-utils .btn-sm {
    display: none;
  }

  .header-user-name,
  .header-user-caret {
    display: none;
  }

  .header-user-trigger {
    max-width: none;
    padding: 0.2rem;
    border-radius: 50%;
  }
}

/* Site search (/search) */
.site-search-page {
  background: var(--bg-deep);
}

.site-search-hero {
  position: relative;
  padding: 1.15rem 0 1.75rem;
  overflow: hidden;
  isolation: isolate;
  background-color: #0c111d;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

@media (min-width: 768px) {
  .site-search-hero {
    padding: 1.35rem 0 2.25rem;
    min-height: min(280px, 42vh);
  }
}

.site-search-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.site-search-hero__mesh {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background:
    radial-gradient(ellipse 80% 60% at 12% 20%, rgba(168, 85, 247, 0.22), transparent 55%),
    radial-gradient(ellipse 70% 50% at 88% 10%, rgba(217, 70, 239, 0.14), transparent 50%),
    linear-gradient(165deg, #0c111d 0%, #121a2e 48%, #0c111d 100%);
}

.site-search-hero__glow {
  position: absolute;
  right: -6%;
  top: 0;
  width: min(48%, 460px);
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(251, 191, 36, 0.12), transparent 68%);
}

.site-search-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 52rem;
}

.site-search-hero__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
}

[data-theme="light"] .site-search-hero__title {
  color: var(--text);
}

.site-search-hero__lead {
  margin: 0;
  max-width: 32rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

[data-theme="light"] .site-search-hero__lead {
  color: var(--text-muted);
}

.site-search-body {
  padding: 1.5rem 0 3.5rem;
}

.site-search-body__inner {
  max-width: 52rem;
}

.site-search-panel {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bg-card);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
  padding: 1.25rem 1.15rem 1.35rem;
}

@media (min-width: 640px) {
  .site-search-panel {
    padding: 1.5rem 1.35rem 1.5rem;
  }
}

[data-theme="light"] .site-search-panel {
  border-color: var(--border);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}

.site-search-form {
  margin-bottom: 1.15rem;
}

.site-search-form__row {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
  padding: 0.4rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: color-mix(in srgb, var(--bg-deep) 55%, transparent);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.site-search-form__row:focus-within {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--border));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}

[data-theme="light"] .site-search-form__row {
  border-color: var(--border);
  background: var(--bg-deep);
}

.site-search-form__icon {
  display: flex;
  align-items: center;
  padding-left: 0.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.site-search-form__input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.7rem 0.35rem;
  border: none;
  background: transparent;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}

.site-search-form__input::placeholder {
  color: var(--text-muted);
  opacity: 0.85;
}

.site-search-form__input:focus {
  outline: none;
}

.site-search-form__submit {
  flex-shrink: 0;
  align-self: center;
  margin-right: 0.15rem;
  padding-inline: 1.1rem;
}

@media (max-width: 480px) {
  .site-search-form__row {
    flex-wrap: wrap;
  }

  .site-search-form__icon {
    display: none;
  }

  .site-search-form__input {
    width: 100%;
    padding-left: 0.65rem;
  }

  .site-search-form__submit {
    width: 100%;
    margin: 0.15rem 0.1rem 0.1rem;
  }
}

.site-search-message {
  margin: 0 0 1rem;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  font-size: 0.875rem;
  line-height: 1.45;
}

.site-search-message--warn {
  color: #fcd34d;
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.22);
}

[data-theme="light"] .site-search-message--warn {
  color: #92400e;
  background: #fffbeb;
  border-color: #fde68a;
}

.site-search-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.85rem;
  margin: 0 0 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.875rem;
  color: var(--text-muted);
}

[data-theme="light"] .site-search-summary {
  border-bottom-color: var(--border);
}

.site-search-summary__count {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--accent-hover);
  background: color-mix(in srgb, var(--accent) 14%, transparent);
}

.site-search-summary__page {
  font-size: 0.8rem;
}

.site-search-summary__empty {
  line-height: 1.5;
}

.site-search-summary__empty a {
  color: var(--accent-hover);
  font-weight: 600;
}

.site-search-section + .site-search-section {
  margin-top: 1.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

[data-theme="light"] .site-search-section + .site-search-section {
  border-top-color: var(--border);
}

.site-search-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.site-search-section__title {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.site-search-section__ico {
  font-size: 0.85rem;
  color: var(--accent-hover);
}

.site-search-section__count {
  flex-shrink: 0;
  min-width: 1.5rem;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.06);
}

[data-theme="light"] .site-search-section__count {
  background: var(--bg-deep);
}

.site-search-results {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-search-card {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: color-mix(in srgb, var(--bg-deep) 40%, var(--bg-card));
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

[data-theme="light"] .site-search-card {
  border-color: var(--border);
  background: var(--bg-deep);
}

.site-search-card:hover {
  border-color: color-mix(in srgb, var(--accent) 35%, var(--border));
  background: color-mix(in srgb, var(--accent) 5%, var(--bg-card));
  transform: translateY(-1px);
}

.site-search-card--casino {
  border-color: color-mix(in srgb, var(--accent) 22%, rgba(255, 255, 255, 0.07));
  background: color-mix(in srgb, var(--accent) 7%, var(--bg-card));
}

.site-search-card--casino:hover {
  border-color: color-mix(in srgb, var(--accent) 42%, var(--border));
  background: color-mix(in srgb, var(--accent) 11%, var(--bg-card));
}

.site-search-card__link {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 0.75rem 0.85rem;
  padding: 0.85rem 0.95rem;
  color: inherit;
  text-decoration: none;
}

@media (max-width: 560px) {
  .site-search-card__link {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
  }

  .site-search-card__meta {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
  }

  .site-search-card__arrow {
    grid-row: 1 / span 2;
    grid-column: 3;
    align-self: center;
  }
}

.site-search-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--accent-hover);
  background: color-mix(in srgb, var(--accent) 16%, transparent);
}

.site-search-card__icon--muted {
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.06);
}

[data-theme="light"] .site-search-card__icon--muted {
  background: var(--bg-card);
}

.site-search-card__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.site-search-card__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

.site-search-card__type {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.site-search-card__snippet {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.site-search-card__meta {
  display: flex;
  align-items: baseline;
  gap: 0.1rem;
  flex-shrink: 0;
  padding: 0.25rem 0.55rem;
  border-radius: 8px;
  background: rgba(251, 191, 36, 0.1);
}

.site-search-card__rating {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.site-search-card__rating-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
}

.site-search-card__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  font-size: 0.7rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  transition: color 0.15s ease, background 0.15s ease;
}

.site-search-card:hover .site-search-card__arrow {
  color: var(--accent-hover);
  background: color-mix(in srgb, var(--accent) 18%, transparent);
}

.site-search-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

[data-theme="light"] .site-search-pager {
  border-top-color: var(--border);
}

.site-search-pager__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* NetEnt games grid (/netent-games) */
.netent-games-page {
  background: var(--bg-deep);
}

.netent-games-body {
  padding: 1.25rem 0 3.5rem;
}

.netent-games-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-bottom: 1.25rem;
  padding: 0.85rem 1rem;
}

.netent-games-sort-wrap {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

.netent-games-sort-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.netent-games-sort {
  min-width: 9.5rem;
  padding: 0.45rem 1.75rem 0.45rem 0.55rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: color-mix(in srgb, var(--bg-deep) 55%, transparent);
  color: var(--text);
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
}

[data-theme="light"] .netent-games-sort {
  border-color: var(--border);
  background-color: var(--bg-deep);
}

.netent-games-sort:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--accent) 45%, var(--border));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}

.netent-games-search {
  flex: 1 1 16rem;
  max-width: 28rem;
}

.netent-games-count {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.netent-games-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 11.5rem), 1fr));
  gap: 0.85rem;
}

@media (min-width: 900px) {
  .netent-games-grid {
    grid-template-columns: repeat(auto-fill, minmax(12.5rem, 1fr));
    gap: 1rem;
  }
}

.netent-game-card__link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.netent-game-card__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bg-card);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

[data-theme="light"] .netent-game-card__inner {
  border-color: var(--border);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
}

.netent-game-card__link:hover .netent-game-card__inner,
.netent-game-card__link:focus-visible .netent-game-card__inner {
  border-color: color-mix(in srgb, var(--accent) 35%, var(--border));
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.netent-game-card__link:focus-visible {
  outline: none;
}

.netent-game-card__link:focus-visible .netent-game-card__inner {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 22%, transparent), 0 14px 36px rgba(0, 0, 0, 0.28);
}

.netent-game-card__media {
  position: relative;
  aspect-ratio: 1;
  background: color-mix(in srgb, var(--bg-deep) 70%, #000);
  overflow: hidden;
}

.netent-game-card__cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.netent-game-card__header {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 38%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.netent-game-card__link:hover .netent-game-card__header {
  opacity: 1;
}

.netent-game-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 2rem;
  color: var(--text-muted);
  opacity: 0.45;
}

.netent-game-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.65rem 0.7rem 0.75rem;
  flex: 1 1 auto;
}

.netent-game-card__title {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.netent-game-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  margin: 0;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
}

.netent-game-card__rtp {
  color: var(--gold);
}

.netent-game-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  padding-top: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-hover);
}

.netent-game-card__cta i {
  font-size: 0.6rem;
  transition: transform 0.15s ease;
}

.netent-game-card__link:hover .netent-game-card__cta i {
  transform: translateX(2px);
}

.netent-games-empty-filter {
  margin: 1rem 0 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.netent-games-empty {
  padding: 2rem 1.25rem;
  text-align: center;
}

.netent-games-empty__hint {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.netent-games-pager {
  margin-top: 1.5rem;
}

/* NetEnt game detail (/netent-games/{slug}) */
.netent-game-detail-page {
  background: var(--bg-deep);
}

.netent-game-detail-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.netent-game-detail-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.netent-game-detail-hero__header-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.netent-game-detail-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 17, 29, 0.35) 0%, rgba(12, 17, 29, 0.92) 72%, var(--bg-deep) 100%);
}

.netent-game-detail-hero__inner {
  position: relative;
  z-index: 2;
  padding: 1rem 0 1.75rem;
}

.netent-game-detail-hero__layout {
  display: grid;
  gap: 1.25rem;
  align-items: end;
}

@media (min-width: 768px) {
  .netent-game-detail-hero__layout {
    grid-template-columns: auto 1fr;
    gap: 1.75rem 2rem;
  }
}

.netent-game-detail-hero__cover-wrap {
  width: min(100%, 11rem);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .netent-game-detail-hero__cover-wrap {
    width: 12.5rem;
    margin: 0;
  }
}

.netent-game-detail-hero__cover {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.netent-game-detail-hero__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #fff;
}

[data-theme="light"] .netent-game-detail-hero__title {
  color: var(--text);
}

.netent-game-detail-stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(7.5rem, 1fr));
  gap: 0.55rem 0.85rem;
  margin: 0 0 1rem;
}

.netent-game-detail-stat {
  padding: 0.45rem 0.55rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .netent-game-detail-stat {
  background: var(--bg-card);
  border-color: var(--border);
}

.netent-game-detail-stat dt {
  margin: 0 0 0.15rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.netent-game-detail-stat dd {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.netent-game-detail-stat:first-child dd {
  color: var(--gold);
}

.netent-game-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.netent-game-detail-body {
  padding: 0 0 3rem;
}

.netent-game-detail-body__inner {
  display: grid;
  gap: 1.25rem;
}

.netent-game-detail-panel {
  padding: 1.15rem 1.2rem 1.25rem;
}

.netent-game-detail-section-title {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.netent-game-detail-prose {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.netent-game-detail-prose p {
  margin: 0 0 0.85rem;
}

.netent-game-detail-prose p:last-child {
  margin-bottom: 0;
}

.netent-game-detail-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.netent-game-detail-feature {
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: color-mix(in srgb, var(--bg-deep) 50%, var(--bg-card));
}

[data-theme="light"] .netent-game-detail-feature {
  border-color: var(--border);
  background: var(--bg-deep);
}

.netent-game-detail-feature__name {
  margin: 0 0 0.35rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.netent-game-detail-feature__desc {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-muted);
}

/* Hero */
.hero {
  position: relative;
  padding: 3rem 0 4rem;
  overflow: hidden;
  isolation: isolate;
  background-color: #0c111d;
}

@media (max-width: 640px) {
  .hero {
    padding: 2rem 0 2.75rem;
  }
}

@media (min-width: 768px) {
  .hero {
    min-height: min(520px, 78vh);
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: #0c111d;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  transform: scale(1.05);
  opacity: 0.42;
}

.hero-bg-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    100deg,
    rgba(12, 17, 29, 0.94) 0%,
    rgba(12, 17, 29, 0.82) 32%,
    rgba(12, 17, 29, 0.45) 48%,
    rgba(12, 17, 29, 0.55) 58%,
    rgba(12, 17, 29, 0.92) 100%
  );
}

[data-theme="light"] .hero-bg-img {
  opacity: 0.22;
}

[data-theme="light"] .hero-bg-shade {
  background: linear-gradient(
    100deg,
    rgba(244, 244, 248, 0.96) 0%,
    rgba(244, 244, 248, 0.88) 35%,
    rgba(244, 244, 248, 0.65) 50%,
    rgba(244, 244, 248, 0.88) 100%
  );
}

.hero-glow {
  position: absolute;
  inset: -20% 20% auto;
  height: 60%;
  z-index: 1;
  background: radial-gradient(ellipse at center, rgba(147, 51, 234, 0.22), transparent 70%);
  pointer-events: none;
}

.hero-bg-mesh {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  --mesh-cell: 22px;
  background-image: radial-gradient(circle at center, rgba(147, 51, 234, 0.22) 0%, transparent 40%),
    linear-gradient(rgba(255, 255, 255, 0.095) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.095) 1px, transparent 1px),
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, 0.2) 2px, rgba(0, 0, 0, 0.2) 3px),
    linear-gradient(118deg, rgba(59, 130, 246, 0.1) 0%, transparent 36%, transparent 64%, rgba(147, 51, 234, 0.12) 100%);
  background-size: 120% 120%, var(--mesh-cell) var(--mesh-cell), var(--mesh-cell) var(--mesh-cell), 100% 100%, 100% 100%;
  background-position: 50% 50%, 0 0, 0 0, 0 0, 0 0;
  mix-blend-mode: soft-light;
  mask-image: radial-gradient(ellipse 88% 78% at 50% 45%, black 25%, rgba(0, 0, 0, 0.58) 58%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 88% 78% at 50% 45%, black 25%, rgba(0, 0, 0, 0.58) 58%, transparent 100%);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-bg-mesh {
    animation: hero-mesh-shift 80s linear infinite;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-mesh {
    animation: none;
  }
}

@keyframes hero-mesh-shift {
  0% {
    background-position: 50% 50%, 0 0, 0 0, 0 0, 0 0;
  }
  100% {
    background-position: 50% 50%, var(--mesh-cell) var(--mesh-cell), var(--mesh-cell) var(--mesh-cell), 0 0, 0 0;
  }
}

[data-theme="light"] .hero-bg-mesh {
  mix-blend-mode: multiply;
  opacity: 0.95;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 40%, rgba(0, 0, 0, 0.45) 72%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 40%, rgba(0, 0, 0, 0.45) 72%, transparent 100%);
}

/* Hero — casino floor ambience (suits, chips, neon accents) */
.hero-fx {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero-fx-suit {
  position: absolute;
  font-family: "Georgia", "Times New Roman", serif;
  line-height: 1;
  user-select: none;
  opacity: 0.14;
  text-shadow: 0 0 40px rgba(147, 51, 234, 0.35);
}

.hero-fx-suit--a {
  top: 12%;
  right: 8%;
  font-size: clamp(3.5rem, 12vw, 7rem);
  color: #e9d5ff;
  transform: rotate(-18deg);
}

.hero-fx-suit--b {
  bottom: 18%;
  left: 4%;
  font-size: clamp(2.75rem, 9vw, 5.5rem);
  color: #fb7185;
  transform: rotate(12deg);
}

.hero-fx-suit--c {
  top: 38%;
  right: 22%;
  font-size: clamp(2rem, 6vw, 3.75rem);
  color: #f472b6;
  transform: rotate(22deg);
}

.hero-fx-suit--d {
  bottom: 8%;
  right: 12%;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  color: #c4b5fd;
  transform: rotate(-8deg);
}

.hero-fx-chip {
  position: absolute;
  width: clamp(2.25rem, 5vw, 3.25rem);
  height: clamp(2.25rem, 5vw, 3.25rem);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 2px rgba(0, 0, 0, 0.45),
    0 0 28px rgba(192, 38, 211, 0.25);
  opacity: 0.35;
}

.hero-fx-chip--a {
  top: 22%;
  left: 10%;
  background: conic-gradient(
    #faf5ff 0deg 40deg,
    #7c3aed 40deg 80deg,
    #faf5ff 80deg 120deg,
    #7c3aed 120deg 160deg,
    #faf5ff 160deg 200deg,
    #7c3aed 200deg 240deg,
    #faf5ff 240deg 280deg,
    #7c3aed 280deg 320deg,
    #faf5ff 320deg 360deg
  );
}

.hero-fx-chip--b {
  bottom: 28%;
  right: 6%;
  background: conic-gradient(
    #fef3c7 0deg 45deg,
    #b45309 45deg 90deg,
    #fef3c7 90deg 135deg,
    #b45309 135deg 180deg,
    #fef3c7 180deg 225deg,
    #b45309 225deg 270deg,
    #fef3c7 270deg 315deg,
    #b45309 315deg 360deg
  );
  box-shadow:
    inset 0 0 0 2px rgba(0, 0, 0, 0.5),
    0 0 26px rgba(245, 158, 11, 0.28);
}

[data-theme="light"] .hero-fx-suit {
  opacity: 0.08;
}

[data-theme="light"] .hero-fx-chip {
  opacity: 0.22;
}

@media (max-width: 640px) {
  .hero-fx-suit {
    opacity: 0.09;
  }

  .hero-fx-chip {
    opacity: 0.22;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-fx-suit--a {
    animation: hero-suit-drift-a 22s ease-in-out infinite;
  }

  .hero-fx-suit--b {
    animation: hero-suit-drift-b 26s ease-in-out infinite;
  }

  .hero-fx-suit--c {
    animation: hero-suit-drift-c 18s ease-in-out infinite;
  }

  .hero-fx-suit--d {
    animation: hero-suit-drift-d 24s ease-in-out infinite;
  }

  .hero-fx-chip--a,
  .hero-fx-chip--b {
    animation: hero-chip-spin 48s linear infinite;
  }

  .hero-fx-chip--b {
    animation-duration: 62s;
    animation-direction: reverse;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-fx-suit,
  .hero-fx-chip {
    animation: none;
  }
}

@keyframes hero-suit-drift-a {
  0%,
  100% {
    transform: rotate(-18deg) translate(0, 0);
  }
  50% {
    transform: rotate(-14deg) translate(-1.5%, 2%);
  }
}

@keyframes hero-suit-drift-b {
  0%,
  100% {
    transform: rotate(12deg) translate(0, 0);
  }
  50% {
    transform: rotate(8deg) translate(2%, -1.5%);
  }
}

@keyframes hero-suit-drift-c {
  0%,
  100% {
    transform: rotate(22deg) translate(0, 0);
  }
  50% {
    transform: rotate(26deg) translate(-2%, 1%);
  }
}

@keyframes hero-suit-drift-d {
  0%,
  100% {
    transform: rotate(-8deg) translate(0, 0);
  }
  50% {
    transform: rotate(-12deg) translate(1.5%, 2%);
  }
}

@keyframes hero-chip-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-title-accent.text-gradient {
    background-size: 210% auto;
    animation: hero-accent-sheen 9s ease-in-out infinite;
  }

  html:not([data-theme="light"]) .hero-title-accent.text-gradient {
    animation: hero-accent-sheen 9s ease-in-out infinite, hero-accent-glow 4.5s ease-in-out infinite;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-title-accent.text-gradient {
    animation: none;
  }
}

@keyframes hero-accent-sheen {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes hero-accent-glow {
  0%,
  100% {
    filter: drop-shadow(0 2px 20px rgba(0, 0, 0, 0.45)) drop-shadow(0 0 14px rgba(217, 70, 239, 0.3));
  }
  50% {
    filter: drop-shadow(0 2px 20px rgba(0, 0, 0, 0.45)) drop-shadow(0 0 34px rgba(217, 70, 239, 0.55));
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy .btn-primary {
    animation: hero-cta-jackpot-glow 3.2s ease-in-out infinite;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy .btn-primary {
    animation: none;
  }
}

@keyframes hero-cta-jackpot-glow {
  0%,
  100% {
    box-shadow: 0 4px 24px var(--accent-glow);
  }
  50% {
    box-shadow:
      0 4px 28px var(--accent-glow),
      0 0 42px rgba(147, 51, 234, 0.38),
      0 0 72px rgba(59, 130, 246, 0.12);
  }
}

.hero .stat-card {
  position: relative;
}

.hero .stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0.65rem;
  right: 0.65rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(245, 158, 11, 0.45) 22%,
    rgba(250, 204, 21, 0.35) 50%,
    rgba(245, 158, 11, 0.45) 78%,
    transparent
  );
  opacity: 0.85;
  pointer-events: none;
}

[data-theme="light"] .hero .stat-card::before {
  opacity: 0.55;
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 400px);
    gap: 2rem 3rem;
    align-items: center;
  }
}

@media (min-width: 768px) and (max-width: 1099px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-featured {
    max-width: 480px;
    margin-inline: auto;
  }
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.badge {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
}

.badge-green {
  background: var(--green-dim);
  color: var(--green);
  border: 1px solid rgba(34, 197, 94, 0.45);
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.hero-title-line {
  display: block;
  color: var(--text);
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.55);
}

.hero-title-accent {
  display: block;
  font-size: clamp(1.9rem, 4.2vw, 2.85rem);
  line-height: 1.05;
  filter: drop-shadow(0 2px 20px rgba(0, 0, 0, 0.45));
}

[data-theme="light"] .hero-title-line {
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.8);
}

[data-theme="light"] .hero-title-accent {
  filter: none;
}

.text-gradient {
  background: linear-gradient(90deg, #e9d5ff 0%, #d946ef 40%, #c026d3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  color: var(--text-muted);
  max-width: 36rem;
  margin: 0 0 1.1rem;
  font-size: 1rem;
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.85rem;
  list-style: none;
  margin: 0 0 1.4rem;
  padding: 0;
  max-width: 36rem;
}

@media (min-width: 640px) {
  .trust-grid {
    flex-wrap: nowrap;
    gap: 0.35rem 0.5rem;
  }
}

@media (max-width: 420px) {
  .trust-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
  }
}

.trust-grid li {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.trust-grid li + li::before {
  content: "";
  width: 1px;
  align-self: stretch;
  min-height: 0.75rem;
  margin-right: 0.65rem;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(196, 181, 253, 0.35) 22%,
    rgba(147, 197, 253, 0.35) 78%,
    transparent
  );
  flex-shrink: 0;
}

@media (max-width: 420px) {
  .trust-grid li + li::before {
    display: none;
  }
}

.trust-ico {
  flex-shrink: 0;
}

.trust-ico--line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.trust-ico--line i {
  display: inline-block;
  font-size: 0.92rem;
  line-height: 1;
  color: transparent;
  background-image: linear-gradient(
    125deg,
    #f5f3ff 0%,
    #ddd6fe 28%,
    #a5b4fc 72%,
    #e9d5ff 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 5px rgba(139, 92, 246, 0.55))
    drop-shadow(0 0 12px rgba(59, 130, 246, 0.28));
}

.trust-ico--line .fa-solid {
  font-weight: 900;
}

.trust-ico--line .fa-regular {
  font-weight: 400;
}

.trust-label {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
}

[data-theme="light"] .trust-label {
  color: var(--text);
}

[data-theme="light"] .trust-ico--line i {
  background-image: linear-gradient(
    125deg,
    #5b21b6 0%,
    #6d28d9 40%,
    #4338ca 100%
  );
  filter: drop-shadow(0 0 6px rgba(139, 92, 246, 0.35));
}

[data-theme="light"] .trust-grid li + li::before {
  background: linear-gradient(
    180deg,
    transparent,
    rgba(139, 92, 246, 0.22) 50%,
    transparent
  );
}

.stat-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .stat-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  background: rgba(22, 22, 37, 0.65);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

[data-theme="light"] .stat-card {
  background: var(--bg-card);
}

.stat-card strong {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.stat-ico {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0.35rem;
  line-height: 1;
}

.stat-ico i {
  font-size: 1.2rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent), var(--stat-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(147, 51, 234, 0.25));
}

[data-theme="light"] .stat-ico i {
  filter: none;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-cta .btn {
  max-width: 100%;
}

.btn-ico-play {
  font-size: 1.1rem;
  line-height: 1;
  opacity: 0.95;
}

.hero-copy {
  position: relative;
  max-width: 38rem;
}

.hero-featured {
  /* Top Rated Casino — spec palette (dark) */
  --feat-shell-bg: #161625;
  --feat-shell-border: #252530;
  --feat-inset-bg: #000000;
  --feat-inset-border: rgba(255, 255, 255, 0.08);
  --feat-rank-1: #f59e0b;
  --feat-rank-1-text: #0a0a0b;
  --feat-green: #22c55e;
  --feat-green-glow: rgba(34, 197, 94, 0.35);
  --feat-gold-star: #f59e0b;
  --feat-promo-bg: rgba(38, 30, 58, 0.92);
  --feat-promo-border: rgba(139, 92, 246, 0.32);
  --feat-promo-text: #ffffff;
  --feat-cta-start: #9333ea;
  --feat-cta-end: #3b82f6;
  --feat-link: #c4b5fd;
  --feat-link-hover: #ddd6fe;
  --feat-sidebar-bg: #12121a;
  --feat-sidebar-border: #2a2a32;
  --feat-sidebar-star: #22d3ee;
  --feat-rank-pill-bg: #2a2a32;
  --feat-rank-pill-border: rgba(255, 255, 255, 0.06);
  --feat-rank-pill-text: #f9fafb;
  --feat-nav-bg: #1a1a24;
  --feat-nav-border: #2a2a32;

  --feat-pad: 0.85rem;
  background: var(--feat-shell-bg);
  border: 1px solid var(--feat-shell-border);
  border-radius: var(--radius);
  padding: var(--feat-pad);
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 8px 44px rgba(0, 0, 0, 0.55);
}

[data-theme="light"] .hero-featured {
  --feat-shell-bg: #fafafa;
  --feat-shell-border: #e5e7eb;
  --feat-inset-bg: #ffffff;
  --feat-inset-border: #e5e7eb;
  --feat-rank-1: #f59e0b;
  --feat-rank-1-text: #0a0a0b;
  --feat-green: #16a34a;
  --feat-green-glow: rgba(22, 163, 74, 0.2);
  --feat-gold-star: #d97706;
  --feat-promo-bg: rgba(237, 233, 254, 0.98);
  --feat-promo-border: #c4b5fd;
  --feat-promo-text: #111827;
  --feat-cta-start: #9333ea;
  --feat-cta-end: #2563eb;
  --feat-link: #7c3aed;
  --feat-link-hover: #6d28d9;
  --feat-sidebar-bg: #f9fafb;
  --feat-sidebar-border: #e5e7eb;
  --feat-sidebar-star: #0891b2;
  --feat-rank-pill-bg: #e5e7eb;
  --feat-rank-pill-border: #d1d5db;
  --feat-rank-pill-text: #374151;
  --feat-nav-bg: #f3f4f6;
  --feat-nav-border: #e5e7eb;

  background: var(--feat-shell-bg);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.featured-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 0.65rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--feat-shell-border, var(--border));
}

.hero-featured .rating-hero-score {
  color: var(--feat-green);
  font-size: 1.42rem;
}

.hero-featured .rating-tag--neon {
  font-size: 0.68rem;
  letter-spacing: 0.11em;
  color: var(--feat-green);
  text-shadow: 0 0 18px var(--feat-green-glow);
}

.hero-featured .stars--featured {
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-top: 0;
  color: var(--feat-gold-star);
}

.hero-featured .bonus-excl-box {
  padding: 0.5rem 0.65rem;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--feat-promo-text);
  background: var(--feat-promo-bg);
  border-color: var(--feat-promo-border);
}

.hero-featured .bonus-excl-box strong {
  color: var(--feat-promo-text);
}

.hero-featured .feature-checks {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-featured .feature-checks--icons li + li {
  margin-top: 0.22rem;
}

.hero-featured .feature-checks--icons li i {
  font-size: 0.88rem;
  color: var(--feat-green);
}

.hero-featured .feature-checks--icons li.cr-featured-pro-li {
  position: relative;
}

.hero-featured .cr-featured-pro-wrap {
  flex: 1;
  min-width: 0;
  position: relative;
  align-self: center;
  outline: none;
}

.hero-featured .cr-featured-pro-wrap:has(.cr-featured-pro-tooltip):focus-visible {
  border-radius: 4px;
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent) 55%, transparent);
}

.hero-featured .cr-featured-pro-line {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-featured .cr-featured-pro-tooltip {
  position: absolute;
  left: 0;
  bottom: calc(100% + 8px);
  max-width: min(18rem, 78vw);
  padding: 0.45rem 0.55rem;
  font-size: 0.72rem;
  line-height: 1.38;
  font-weight: 500;
  color: var(--text);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.38);
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(4px);
  transition:
    opacity 0.14s ease,
    transform 0.14s ease,
    visibility 0.14s;
  white-space: normal;
  word-break: break-word;
}

.hero-featured .cr-featured-pro-li:hover .cr-featured-pro-tooltip,
.hero-featured .cr-featured-pro-wrap:focus-within .cr-featured-pro-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hero-featured .featured-actions {
  gap: 0.35rem;
  margin-top: 0;
  padding-top: 0.12rem;
}

.hero-featured .featured-actions .btn {
  padding: 0.5rem 0.95rem;
  font-size: 0.8125rem;
}

.hero-featured .casino-logo.lg {
  width: 48px;
  height: 48px;
  font-size: 0.72rem;
  background: linear-gradient(145deg, var(--feat-green), #16a34a);
  box-shadow: 0 0 20px var(--feat-green-glow);
}

.hero-featured .casino-logo.lg.casino-logo--bcgame {
  font-size: 1.28rem;
}

.hero-featured .link-read-review {
  font-size: 0.8125rem;
  color: var(--feat-link);
}

.hero-featured .link-read-review:hover {
  color: var(--feat-link-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-featured .featured-actions .btn-primary {
  background: linear-gradient(90deg, var(--feat-cta-start) 0%, var(--feat-cta-end) 100%);
  box-shadow: 0 6px 26px rgba(59, 130, 246, 0.22), 0 4px 20px rgba(147, 51, 234, 0.35);
}

.hero-featured .featured-actions .btn-primary:hover {
  background: linear-gradient(90deg, #a855f7 0%, #3b82f6 100%);
  color: #fff;
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.28), 0 4px 22px rgba(147, 51, 234, 0.4);
}

.hero-featured .featured-heading {
  color: #ffffff;
}

[data-theme="light"] .hero-featured .featured-heading {
  color: var(--text);
}

.featured-heading {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.featured-nav {
  display: flex;
  gap: 0.4rem;
}

.hero-featured .featured-nav-btn {
  width: 28px;
  height: 28px;
  border-color: var(--feat-nav-border);
  background: var(--feat-nav-bg);
}

.hero-featured .featured-nav-btn:hover {
  color: #ffffff;
  border-color: var(--feat-cta-start);
  background: rgba(255, 255, 255, 0.06);
}

.featured-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.featured-nav-btn:hover {
  color: var(--text);
  border-color: var(--accent);
  background: var(--bg-card);
}

.featured-nav-btn i {
  font-size: 0.65rem;
}

.featured-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  min-width: 0;
}

@media (min-width: 640px) {
  .featured-body {
    grid-template-columns: minmax(0, 1.68fr) minmax(104px, 0.78fr);
    gap: 0.65rem 1rem;
    align-items: start;
  }
}

.featured-body.featured-body--solo {
  grid-template-columns: 1fr;
}

.hero.cr-review-hero .cr-review-hero-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero.cr-review-hero .cr-review-hero-featured .featured-header {
  justify-content: flex-start;
}

.featured-main {
  display: flex;
  flex-direction: column;
  gap: 0.68rem;
  min-width: 0;
}

.featured-main.featured-main-inset {
  gap: 0.62rem;
  padding: 0.72rem 0.82rem 0.82rem;
  background: var(--feat-inset-bg, #16161d);
  border: 1px solid var(--feat-inset-border, rgba(255, 255, 255, 0.06));
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

[data-theme="light"] .hero-featured .featured-main-inset {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.featured-hero-head {
  display: flex;
  align-items: flex-start;
  gap: 0.72rem;
  padding-bottom: 0;
}

.featured-rank-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 900;
  color: var(--feat-rank-1-text, #0a0a0b);
  background: var(--feat-rank-1, #f59e0b);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.22), 0 4px 14px rgba(245, 158, 11, 0.38);
}

.featured-hero-head-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.58rem;
}

.featured-brand-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.featured-brand-row .featured-hero-logo {
  height: 38px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.featured-sidebar-logo {
  height: 26px;
  width: auto;
  max-width: 88px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.featured-name-inline {
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.rating-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.32rem;
}

.rating-score-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-featured .rating-star-green {
  color: var(--feat-green);
}

.rating-star-green {
  color: var(--green);
  font-size: 0.95rem;
}

.rating-hero-score {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text);
}

.rating-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
}

.rating-num {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text);
}

.rating-num.sm {
  font-size: 0.95rem;
}

.rating-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green);
  background: var(--green-dim);
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  border: 1px solid rgba(34, 197, 94, 0.45);
}

.rating-tag--neon {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4ade80;
  text-shadow: 0 0 20px rgba(74, 222, 128, 0.4);
}

.rating-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-faint);
  background: var(--bg-elevated);
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.rating-label--excellent {
  color: var(--green);
  background: var(--green-dim);
  border-color: rgba(34, 197, 94, 0.35);
}

.stars {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 2px;
  line-height: 1;
  color: var(--gold);
}

.stars--featured {
  font-size: 0.95rem;
  letter-spacing: 3px;
  margin-top: 0.05rem;
}

.stars.sm {
  font-size: 0.75rem;
}

.stars[data-rating="5"]::before {
  content: "★★★★★";
}

.stars[data-rating="4"]::before {
  content: "★★★★☆";
}

.stars[data-rating="3"]::before {
  content: "★★★☆☆";
}

.stars[data-rating="2"]::before {
  content: "★★☆☆☆";
}

.stars[data-rating="1"]::before {
  content: "★☆☆☆☆";
}

.bonus-excl-box {
  margin: 0;
  padding: 0.85rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.96);
  background: rgba(55, 20, 90, 0.55);
  border: 1px solid rgba(167, 139, 250, 0.42);
  border-radius: var(--radius-sm);
}

.bonus-excl-box strong {
  font-weight: 800;
  color: var(--text);
}

[data-theme="light"] .bonus-excl-box {
  background: rgba(237, 233, 254, 0.95);
  border-color: #c4b5fd;
  color: var(--text);
}

[data-theme="light"] .hero-featured .bonus-excl-box,
[data-theme="light"] .hero-featured .bonus-excl-box strong {
  color: var(--feat-promo-text);
  background: var(--feat-promo-bg);
  border-color: var(--feat-promo-border);
}

[data-theme="light"] .hero-featured .feature-checks {
  color: var(--text-muted);
}

.feature-checks {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.8125rem;
  color: rgba(243, 244, 246, 0.88);
}

[data-theme="light"] .feature-checks {
  color: var(--text-muted);
}

.feature-checks--icons li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 0;
  line-height: 1.45;
}

.feature-checks--icons li::before {
  display: none;
}

.feature-checks--icons li i {
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--green);
}

.feature-checks--icons li + li {
  margin-top: 0.35rem;
}

.feature-checks:not(.feature-checks--icons) li + li {
  margin-top: 0.4rem;
}

.feature-checks:not(.feature-checks--icons) li {
  padding-left: 1.15rem;
  position: relative;
  line-height: 1.45;
}

.feature-checks:not(.feature-checks--icons) li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.featured-actions {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 0.15rem;
  padding-top: 0.25rem;
}

.btn-arrow {
  margin-left: 0.25rem;
  font-weight: 400;
  opacity: 0.95;
}

.link-read-review {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: #c4b5fd;
  text-decoration: none;
}

.link-read-review:hover {
  color: #e9d5ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.casino-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.65rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.casino-logo.lg {
  width: 56px;
  height: 56px;
  font-size: 0.8rem;
  background: linear-gradient(145deg, #4ade80, var(--green-deep));
  color: #111827;
  border: none;
  box-shadow: 0 0 22px rgba(34, 197, 94, 0.4);
}

.casino-logo.lg.casino-logo--bcgame {
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: lowercase;
  border-radius: 12px;
}

.casino-logo.sm {
  width: 36px;
  height: 36px;
  margin-right: 0.5rem;
  vertical-align: middle;
}

.featured-rank-card-inner .casino-logo.sm {
  margin-right: 0;
  width: 26px;
  height: 26px;
  font-size: 0.55rem;
  border-radius: 6px;
}

.casino-logo.sm[data-name="ST"] {
  background: #1a1a24;
  color: #fff;
}

.casino-logo.sm[data-name="1x"] {
  background: #f59e0b;
  color: #111;
}

.casino-logo.sm[data-name="BW"] {
  background: #000;
  color: var(--green);
}

.casino-logo.sm[data-name="RB"] {
  background: #0ea5e9;
  color: #fff;
}

.featured-col-right {
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
  min-width: 0;
}

.featured-sidebar {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.26rem;
  min-width: 0;
}

.featured-sidebar.featured-sidebar--icons-all {
  gap: 0.2rem;
}

.featured-sidebar--icons-all .featured-sidebar-logo {
  height: 24px;
  max-width: 76px;
}

.featured-sidebar--icons-all .featured-rank-meta {
  font-size: 0.58rem;
}

.cr-featured-side-btn.is-active,
.cr-featured-side--active .cr-featured-side-btn {
  border-color: color-mix(in srgb, #fbbf24 70%, var(--feat-sidebar-border, #2a2a32));
  background: color-mix(in srgb, #fbbf24 18%, var(--feat-sidebar-bg, #16161d));
  box-shadow:
    0 0 0 1px rgba(251, 191, 36, 0.4),
    0 4px 18px rgba(251, 191, 36, 0.14);
  transform: translateY(0);
}

.cr-featured-side--active .rank-pill {
  background: color-mix(in srgb, #fbbf24 38%, var(--feat-rank-pill-bg, #2a2a32));
  border-color: rgba(251, 191, 36, 0.5);
  color: #fffaf0;
}

[data-theme="light"] .cr-featured-side-btn.is-active,
[data-theme="light"] .cr-featured-side--active .cr-featured-side-btn {
  background: color-mix(in srgb, #fbbf24 22%, var(--feat-sidebar-bg, #16161d));
  box-shadow:
    0 0 0 1px rgba(217, 119, 6, 0.35),
    0 4px 14px rgba(251, 191, 36, 0.2);
}

.cr-featured-side-btn.is-active:hover,
.cr-featured-side--active .cr-featured-side-btn:hover {
  border-color: color-mix(in srgb, #fbbf24 85%, var(--feat-sidebar-border, #2a2a32));
  background: color-mix(in srgb, #fbbf24 26%, var(--feat-sidebar-bg, #16161d));
  transform: translateY(-1px);
}

.featured-rank-card {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.38rem;
  background: var(--feat-sidebar-bg, #16161d);
  border: 1px solid var(--feat-sidebar-border, #2a2a32);
  border-radius: 8px;
  min-width: 0;
}

.featured-rank-card.cr-featured-side-card {
  padding: 0;
  border: none;
  background: transparent;
}

.cr-featured-side-btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  width: 100%;
  min-width: 0;
  padding: 0.28rem 0.38rem;
  margin: 0;
  border: 1px solid var(--feat-sidebar-border, #2a2a32);
  border-radius: 8px;
  background: var(--feat-sidebar-bg, #16161d);
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-align: left;
  transition:
    border-color 0.16s ease,
    background 0.16s ease,
    transform 0.16s ease,
    box-shadow 0.16s ease;
}

.cr-featured-side-btn:hover {
  border-color: color-mix(in srgb, var(--accent) 42%, var(--feat-sidebar-border, #2a2a32));
  background: color-mix(in srgb, var(--accent) 10%, var(--feat-sidebar-bg, #16161d));
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
  transform: translateY(-1px);
}

.cr-featured-side-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.cr-featured-side-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent) 55%, transparent);
}

[data-theme="light"] .cr-featured-side-btn:hover {
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
}

.rank-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  font-size: 0.58rem;
  font-weight: 800;
  color: var(--feat-rank-pill-text, #f9fafb);
  background: var(--feat-rank-pill-bg, #2a2a32);
  border: 1px solid var(--feat-rank-pill-border, rgba(255, 255, 255, 0.08));
}

.featured-rank-card-inner {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.12rem;
  text-align: center;
}

.featured-rank-meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.18rem;
  font-size: 0.62rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--text);
}

.hero-featured .featured-rank-meta i {
  font-size: 0.55rem;
  color: var(--feat-sidebar-star);
}

.btn-view-top10 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  margin-top: 0.02rem;
  padding: 0.34rem 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.btn-view-top10:hover {
  color: var(--text);
  border-color: rgba(147, 51, 234, 0.45);
  background: rgba(147, 51, 234, 0.12);
}

.hero-featured .btn-view-top10 {
  background: var(--feat-sidebar-bg);
  border-color: var(--feat-sidebar-border);
  color: rgba(255, 255, 255, 0.62);
}

.hero-featured .btn-view-top10:hover {
  color: #ffffff;
  border-color: rgba(147, 51, 234, 0.5);
  background: rgba(147, 51, 234, 0.14);
}

[data-theme="light"] .hero-featured .btn-view-top10 {
  color: var(--text-muted);
  background: var(--feat-sidebar-bg);
  border-color: var(--feat-sidebar-border);
}

[data-theme="light"] .hero-featured .btn-view-top10:hover {
  color: var(--text);
}

.btn-view-top10 i {
  font-size: 0.85rem;
  opacity: 0.85;
}

/* Homepage sponsored spotlight — theme-aligned promo card */
.cr-sponsored-spotlight {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px));
  top: 42%;
  transform: translateY(-50%);
  z-index: 9000;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  width: min(26rem, calc(100vw - 2rem));
  padding: 0.55rem 2.15rem 0.55rem 0.55rem;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--accent) 42%, var(--border));
  background: linear-gradient(
    148deg,
    color-mix(in srgb, var(--accent-deep) 38%, var(--bg-card)) 0%,
    var(--bg-card) 42%,
    color-mix(in srgb, var(--bg-elevated) 88%, #0f172a) 100%
  );
  color: var(--text);
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--accent) 14%, transparent),
    0 12px 32px rgba(0, 0, 0, 0.48),
    0 0 40px color-mix(in srgb, var(--accent) 22%, transparent);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  animation: cr-sponsored-spotlight-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 5s both;
  pointer-events: none;
}

.cr-sponsored-spotlight.is-spotlight-interactive {
  pointer-events: auto;
}

@keyframes cr-sponsored-spotlight-in {
  from {
    transform: translateY(-50%) translateX(calc(100% + 1.5rem));
  }
  to {
    transform: translateY(-50%) translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cr-sponsored-spotlight {
    animation: none;
  }
}

.cr-sponsored-spotlight[hidden] {
  display: none !important;
}

.cr-sponsored-spotlight-dismiss {
  position: absolute;
  top: 0.28rem;
  right: 0.28rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 8px;
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  transition:
    color 0.15s ease,
    background 0.15s ease;
}

.cr-sponsored-spotlight-dismiss:hover {
  color: var(--text);
  background: color-mix(in srgb, var(--accent) 18%, transparent);
}

.cr-sponsored-spotlight-hit {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.72rem;
  min-width: 0;
  text-decoration: none;
  color: inherit;
  border-radius: 10px;
  outline-offset: 2px;
}

.cr-sponsored-spotlight-hit:focus-visible {
  outline: 2px solid rgba(124, 58, 237, 0.55);
}

.cr-sponsored-spotlight-hit:hover .cr-sponsored-spotlight-promo {
  color: #faf5ff;
}

.cr-sponsored-spotlight-hit:hover .cr-sponsored-spotlight-promo-lead {
  color: var(--gold);
}

.cr-sponsored-spotlight-visual {
  flex-shrink: 0;
  width: 4.35rem;
  height: 4.35rem;
  border-radius: 11px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  background: linear-gradient(155deg, #7c3aed 0%, #5b21b6 48%, #4c1d95 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 4px 14px rgba(91, 33, 182, 0.35);
  overflow: hidden;
  position: relative;
}

.cr-sponsored-spotlight-visual--logo {
  flex-direction: row;
  padding: 0.38rem;
  background: linear-gradient(155deg, #312e81 0%, #1e1b4b 38%, #0f172a 100%);
  border: 1px solid rgba(167, 139, 250, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 4px 16px rgba(0, 0, 0, 0.38);
}

.cr-sponsored-spotlight-visual-logo {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.cr-sponsored-spotlight-visual-badge {
  font-size: 0.52rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #fde047;
  text-shadow:
    0 1px 0 rgba(120, 53, 15, 0.45),
    0 2px 8px rgba(0, 0, 0, 0.25);
  line-height: 1;
}

.cr-sponsored-spotlight-visual-ico {
  font-size: 1.55rem;
  line-height: 1;
  color: #faf5ff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
}

.cr-sponsored-spotlight-copy {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.cr-sponsored-spotlight-promo {
  margin: 0;
  font-size: 0.888rem;
  font-weight: 600;
  line-height: 1.38;
  color: color-mix(in srgb, var(--text) 92%, var(--nav-link));
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.cr-sponsored-spotlight-promo-lead {
  font-weight: 800;
  color: var(--gold);
}

.cr-sponsored-spotlight-promo-detail {
  font-weight: 700;
  color: #e9d5ff;
}

.cr-sponsored-spotlight-partner {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

.cr-sponsored-spotlight-review {
  align-self: flex-end;
  margin-right: 0.15rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--nav-link) 90%, var(--text-muted));
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cr-sponsored-spotlight-review:hover {
  color: var(--accent-hover);
}

[data-theme="light"] .cr-sponsored-spotlight {
  border-color: color-mix(in srgb, var(--accent) 28%, var(--border));
  background: linear-gradient(
    148deg,
    #f5f3ff 0%,
    #ffffff 45%,
    #ede9fe 100%
  );
  color: var(--text);
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--accent) 12%, transparent),
    0 12px 28px rgba(15, 23, 42, 0.12);
}

[data-theme="light"] .cr-sponsored-spotlight-promo {
  color: #1f2937;
}

[data-theme="light"] .cr-sponsored-spotlight-promo-lead {
  color: var(--accent-deep);
}

[data-theme="light"] .cr-sponsored-spotlight-promo-detail {
  color: #4b5563;
}

[data-theme="light"] .cr-sponsored-spotlight-hit:hover .cr-sponsored-spotlight-promo {
  color: #111827;
}

[data-theme="light"] .cr-sponsored-spotlight-hit:hover .cr-sponsored-spotlight-promo-lead {
  color: var(--accent-deep);
}

[data-theme="light"] .cr-sponsored-spotlight-partner,
[data-theme="light"] .cr-sponsored-spotlight-review {
  color: var(--text-muted);
}

[data-theme="light"] .cr-sponsored-spotlight-review:hover {
  color: var(--accent-deep);
}

[data-theme="light"] .cr-sponsored-spotlight-dismiss {
  color: var(--text-muted);
}

[data-theme="light"] .cr-sponsored-spotlight-dismiss:hover {
  color: var(--accent-deep);
  background: color-mix(in srgb, var(--accent) 12%, transparent);
}

@media (max-width: 899px) {
  .cr-sponsored-spotlight {
    top: auto;
    bottom: max(1rem, env(safe-area-inset-bottom, 0px));
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(26rem, calc(100vw - 2rem));
    animation: cr-sponsored-spotlight-in-mobile 0.6s cubic-bezier(0.22, 1, 0.36, 1) 5s both;
  }
}

@keyframes cr-sponsored-spotlight-in-mobile {
  from {
    transform: translateX(-50%) translateY(calc(100% + 1.25rem));
  }
  to {
    transform: translateX(-50%) translateY(0);
  }
}

@media (max-width: 899px) and (prefers-reduced-motion: reduce) {
  .cr-sponsored-spotlight {
    animation: none;
  }
}

/* Press */
.featured-in {
  background: #06060f;
  border-block: 1px solid var(--border);
}

[data-theme="light"] .featured-in {
  background: #e8e8f0;
}

.featured-in-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2rem;
  padding: 1.25rem 0;
}

.featured-in-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.press-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.press-logos li {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.press-logo-img {
  display: block;
  height: 1.65rem;
  width: auto;
  max-width: min(9.5rem, 30vw);
  object-fit: contain;
  object-position: center;
  opacity: 0.92;
}

.press-logo-img--wide {
  max-width: min(10.5rem, 34vw);
}

@media (min-width: 768px) {
  .press-logo-img {
    height: 1.85rem;
  }
}

[data-theme="light"] .press-logo-img {
  opacity: 0.88;
  filter: brightness(0.42);
}

/* Rankings */
.rankings {
  padding: 2.25rem 0 0.75rem;
}

.rankings-toolbar {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .rankings-toolbar {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
}

/* Casino & bingo catalog pages */
.catalog-datatable-page,
.bingo-catalog-page {
  padding-bottom: 3rem;
  background: var(--bg-deep);
  overflow-x: clip;
}

/* Catalog hero (casino + bingo) */
.hero.catalog-hero,
.hero.catalog-hero.bingo-catalog-hero {
  min-height: 0;
  padding: 1.15rem 0 1.75rem;
  border-bottom: none;
}

@media (min-width: 768px) {
  .hero.catalog-hero,
  .hero.catalog-hero.bingo-catalog-hero {
    min-height: min(340px, 48vh);
    padding: 1.35rem 0 2.25rem;
  }
}

.catalog-hero-accent-glow {
  position: absolute;
  right: -8%;
  top: 5%;
  width: min(52%, 520px);
  height: 75%;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(251, 191, 36, 0.14), transparent 68%);
}

.catalog-hero-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5.5rem;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, var(--bg-deep));
}

.catalog-hero-inner {
  position: relative;
  z-index: 3;
}

.catalog-hero-breadcrumb {
  margin-bottom: 0.75rem;
}

.catalog-hero-breadcrumb .cr-inner-breadcrumb-list {
  color: rgba(255, 255, 255, 0.72);
}

.catalog-hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.88);
}

.catalog-hero-breadcrumb a:hover {
  color: #fff;
}

[data-theme="light"] .catalog-hero-breadcrumb .cr-inner-breadcrumb-list,
[data-theme="light"] .catalog-hero-breadcrumb a {
  color: var(--text-muted);
}

[data-theme="light"] .catalog-hero-breadcrumb a:hover {
  color: var(--text);
}

.catalog-hero-card {
  display: grid;
  gap: 1.5rem 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .catalog-hero-card {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
    gap: 2rem 2.5rem;
  }
}

.catalog-hero-badges {
  margin-bottom: 0.75rem;
}

.catalog-hero-title.hero-title {
  margin-bottom: 0.65rem;
}

.catalog-hero-lead.hero-lead {
  margin-bottom: 0.9rem;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.82);
}

[data-theme="light"] .catalog-hero-lead.hero-lead {
  color: var(--text-muted);
}

.catalog-hero-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.catalog-hero-perks li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}

.catalog-hero-perk-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 8px;
  font-size: 0.65rem;
  color: var(--gold);
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.28);
}

[data-theme="light"] .catalog-hero-perks li {
  color: var(--text-muted);
}

[data-theme="light"] .catalog-hero-perk-ico {
  background: rgba(251, 191, 36, 0.1);
}

.catalog-hero-side {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.9rem;
}

@media (min-width: 900px) {
  .catalog-hero-side {
    align-items: stretch;
  }
}

.catalog-hero-stats-panel {
  position: relative;
  padding: 0.85rem 0.9rem 0.9rem;
  border-radius: 16px;
  background: rgba(8, 12, 22, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 16px 44px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.catalog-hero-stats-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0.85rem;
  right: 0.85rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(245, 158, 11, 0.55) 22%,
    rgba(250, 204, 21, 0.45) 50%,
    rgba(245, 158, 11, 0.55) 78%,
    transparent
  );
  pointer-events: none;
}

[data-theme="light"] .catalog-hero-stats-panel {
  background: rgba(255, 255, 255, 0.82);
  border-color: var(--border);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
}

.catalog-hero-stats-label {
  margin: 0 0 0.65rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

[data-theme="light"] .catalog-hero-stats-label {
  color: var(--text-muted);
}

.catalog-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}

.catalog-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  min-height: 4.25rem;
  padding: 0.5rem 0.35rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.catalog-hero-stat-ico {
  font-size: 0.7rem;
  color: rgba(196, 181, 253, 0.9);
  line-height: 1;
}

.catalog-hero-stat strong {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.catalog-hero-stat span:last-child {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.catalog-hero-stat.catalog-hero-stat-chase-lit {
  border-color: rgba(234, 179, 8, 0.55);
  background: rgba(234, 179, 8, 0.14);
  box-shadow: 0 0 0 1px rgba(234, 179, 8, 0.22), 0 10px 24px rgba(234, 179, 8, 0.14);
  transform: translateY(-2px);
}

.catalog-hero-stat.catalog-hero-stat-chase-lit .catalog-hero-stat-ico {
  color: var(--gold);
}

.catalog-hero-stat.catalog-hero-stat-chase-lit strong {
  color: var(--gold);
}

.catalog-hero-stat.catalog-hero-stat-chase-trail {
  border-color: rgba(234, 179, 8, 0.28);
  background: rgba(234, 179, 8, 0.07);
}

[data-theme="light"] .catalog-hero-stat {
  background: var(--bg-card);
  border-color: var(--border);
}

[data-theme="light"] .catalog-hero-stat strong {
  color: var(--text);
}

[data-theme="light"] .catalog-hero-stat span:last-child {
  color: var(--text-muted);
}

.catalog-hero-cta {
  width: 100%;
  justify-content: center;
  white-space: nowrap;
}

@media (min-width: 900px) {
  .catalog-hero-cta {
    width: 100%;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .catalog-hero-cta.btn-primary {
    animation: hero-cta-jackpot-glow 3.2s ease-in-out infinite;
  }
}

@media (prefers-reduced-motion: reduce) {
  .catalog-hero-cta.btn-primary {
    animation: none;
  }
}

@media (max-width: 640px) {
  .catalog-hero .hero-fx-suit--c,
  .catalog-hero .hero-fx-suit--d {
    opacity: 0.08;
  }
}

/* Bingo catalog (/bingo-catalog) — ball caller gimmick */
.bingo-hero-accent-glow {
  background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.16), transparent 68%);
}

.bingo-hero-fx {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.bingo-float-ball {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(2.5rem, 8vw, 4rem);
  height: clamp(2.5rem, 8vw, 4rem);
  border-radius: 50%;
  font-weight: 800;
  font-size: clamp(1rem, 3vw, 1.35rem);
  color: #fff;
  opacity: 0.16;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.2), 0 8px 24px rgba(0, 0, 0, 0.25);
}

.bingo-float-ball--b {
  top: 14%;
  right: 10%;
  background: radial-gradient(circle at 32% 28%, #93c5fd, #1d4ed8);
}

.bingo-float-ball--i {
  bottom: 20%;
  left: 6%;
  background: radial-gradient(circle at 32% 28%, #fda4af, #be123c);
}

.bingo-float-ball--n {
  top: 36%;
  right: 24%;
  background: radial-gradient(circle at 32% 28%, #e2e8f0, #64748b);
}

.bingo-float-ball--g {
  bottom: 10%;
  right: 14%;
  background: radial-gradient(circle at 32% 28%, #86efac, #15803d);
}

.bingo-float-ball--o {
  top: 22%;
  left: 12%;
  background: radial-gradient(circle at 32% 28%, #fde68a, #ca8a04);
}

@media (prefers-reduced-motion: no-preference) {
  .bingo-float-ball--b {
    animation: bingo-float-drift 20s ease-in-out infinite;
  }

  .bingo-float-ball--i {
    animation: bingo-float-drift 24s ease-in-out infinite reverse;
  }

  .bingo-float-ball--n {
    animation: bingo-float-drift 18s ease-in-out infinite;
  }

  .bingo-float-ball--g {
    animation: bingo-float-drift 26s ease-in-out infinite reverse;
  }

  .bingo-float-ball--o {
    animation: bingo-float-drift 22s ease-in-out infinite;
  }
}

@keyframes bingo-float-drift {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-2%, 3%) rotate(8deg);
  }
}

.bingo-last-called {
  text-align: center;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.28);
}

.bingo-last-called-label {
  margin: 0 0 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.bingo-last-called-hint {
  margin: 0.55rem 0 0;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
}

.bingo-last-called-ball {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  color: #fff;
  box-shadow:
    inset 0 -4px 0 rgba(0, 0, 0, 0.2),
    0 12px 28px rgba(0, 0, 0, 0.35),
    0 0 0 3px rgba(255, 255, 255, 0.12);
  transition: background 0.2s ease, transform 0.2s ease;
}

.bingo-last-called-ball .bingo-ball-letter {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  opacity: 0.92;
  line-height: 1;
}

.bingo-last-called-ball .bingo-ball-num {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.bingo-last-called-ball--b {
  background: radial-gradient(circle at 32% 28%, #93c5fd, #1d4ed8);
}

.bingo-last-called-ball--i {
  background: radial-gradient(circle at 32% 28%, #fda4af, #be123c);
}

.bingo-last-called-ball--n {
  background: radial-gradient(circle at 32% 28%, #e2e8f0, #64748b);
}

.bingo-last-called-ball--g {
  background: radial-gradient(circle at 32% 28%, #86efac, #15803d);
}

.bingo-last-called-ball--o {
  background: radial-gradient(circle at 32% 28%, #fde68a, #ca8a04);
}

.rank-hex.bingo-rank-hex {
  width: 2.65rem;
  height: 2.65rem;
  min-width: 2.65rem;
  padding: 0;
  clip-path: none;
  border-radius: 50%;
  background: transparent !important;
  box-shadow: none;
  overflow: visible;
}

.bingo-ball {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 50%;
  color: #fff;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.22), 0 4px 12px rgba(0, 0, 0, 0.28);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.rank-hex.bingo-rank-hex--b .bingo-ball {
  background: radial-gradient(circle at 32% 28%, #93c5fd, #1d4ed8);
}

.rank-hex.bingo-rank-hex--i .bingo-ball {
  background: radial-gradient(circle at 32% 28%, #fda4af, #be123c);
}

.rank-hex.bingo-rank-hex--n .bingo-ball {
  background: radial-gradient(circle at 32% 28%, #e2e8f0, #64748b);
}

.rank-hex.bingo-rank-hex--g .bingo-ball {
  background: radial-gradient(circle at 32% 28%, #86efac, #15803d);
}

.rank-hex.bingo-rank-hex--o .bingo-ball {
  background: radial-gradient(circle at 32% 28%, #fde68a, #ca8a04);
}

.bingo-ball-letter {
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1;
  opacity: 0.9;
}

.bingo-ball-num {
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.bingo-rank-table tbody tr.bingo-caller-lit td {
  box-shadow:
    inset 4px 0 0 #fbbf24,
    inset 0 0 22px rgba(251, 191, 36, 0.14);
  filter: brightness(1.1);
}

.bingo-rank-table tbody tr.bingo-caller-lit .bingo-ball {
  transform: scale(1.12);
  box-shadow:
    inset 0 -2px 0 rgba(0, 0, 0, 0.2),
    0 0 0 2px rgba(251, 191, 36, 0.65),
    0 8px 20px rgba(251, 191, 36, 0.35);
}

.bingo-rank-table tbody tr.bingo-caller-trail td {
  box-shadow: inset 3px 0 0 rgba(251, 191, 36, 0.35);
  filter: brightness(1.04);
}

.bingo-rank-table tbody tr.rank-row-sponsored.bingo-caller-lit td,
.bingo-rank-table tbody tr.rank-row-sponsored.bingo-caller-trail td {
  box-shadow:
    inset 4px 0 0 #fde047,
    inset 0 0 18px rgba(253, 224, 71, 0.12);
}

@media (prefers-reduced-motion: reduce) {
  .bingo-float-ball,
  .bingo-last-called-ball,
  .bingo-ball {
    animation: none !important;
    transition: none;
  }

  .bingo-rank-table tbody tr.bingo-caller-lit td,
  .bingo-rank-table tbody tr.bingo-caller-trail td {
    box-shadow: none;
    filter: none;
  }
}

.catalog-datatable-section.rankings {
  padding: 0 0 0.5rem;
}

.catalog-datatable-section .container {
  min-width: 0;
}

.catalog-layout {
  display: grid;
  gap: 1.25rem;
  align-items: start;
  min-width: 0;
}

@media (min-width: 1100px) {
  .catalog-layout {
    grid-template-columns: minmax(268px, 288px) minmax(0, 1fr);
    gap: 1.25rem;
    align-items: start;
  }
}

.catalog-main {
  min-width: 0;
}

.catalog-main-panel {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bg-card);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

[data-theme="light"] .catalog-main-panel {
  border-color: var(--border);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}

.catalog-sidebar {
  min-width: 0;
}

@media (min-width: 1100px) {
  .catalog-sidebar {
    position: sticky;
    top: calc(var(--header-h) + 0.75rem);
    max-height: calc(100vh - var(--header-h) - 1.25rem);
    overflow-y: auto;
  }
}

.catalog-sidebar-panel {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bg-card);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

[data-theme="light"] .catalog-sidebar-panel {
  border-color: var(--border);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}

.catalog-side-section {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.catalog-side-section:last-child {
  border-bottom: none;
}

[data-theme="light"] .catalog-side-section {
  border-bottom-color: var(--border);
}

.catalog-side-section--gold {
  background: color-mix(in srgb, #fbbf24 12%, var(--bg-card));
  border-bottom-color: rgba(251, 191, 36, 0.15);
}

[data-theme="light"] .catalog-side-section--gold {
  background: color-mix(in srgb, #fbbf24 14%, var(--bg-card));
}

.catalog-side-section--footer {
  background: rgba(0, 0, 0, 0.12);
}

[data-theme="light"] .catalog-side-section--footer {
  background: var(--bg-elevated);
}

.catalog-side-heading {
  margin: 0 0 0.6rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.catalog-side-section--gold .catalog-side-heading {
  color: rgba(251, 191, 36, 0.85);
}

.catalog-side-rows {
  list-style: none;
  margin: 0;
  padding: 0;
}

.catalog-side-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.45rem;
  margin: 0 -0.45rem;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s ease;
}

.catalog-side-rows li + li .catalog-side-row {
  margin-top: 0.15rem;
}

.catalog-side-row:hover {
  background: rgba(147, 51, 234, 0.1);
}

.catalog-side-row--gold {
  background: color-mix(in srgb, #fbbf24 14%, transparent);
  box-shadow: inset 3px 0 0 rgba(251, 191, 36, 0.7);
}

.catalog-side-row--gold:hover {
  background: color-mix(in srgb, #fbbf24 22%, rgba(147, 51, 234, 0.06));
}

[data-theme="light"] .catalog-side-row--gold {
  background: color-mix(in srgb, #fbbf24 18%, transparent);
}

.catalog-side-rank {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.06);
}

.catalog-side-row--gold .catalog-side-rank {
  color: #1a1004;
  background: linear-gradient(145deg, #fbbf24, #d97706);
}

.catalog-side-logo {
  flex-shrink: 0;
  max-height: 26px;
  width: auto;
  max-width: 5.5rem;
  object-fit: contain;
}

.catalog-side-logo-fallback {
  flex-shrink: 0;
  width: 2.1rem;
  height: 2.1rem;
  font-size: 0.65rem;
}

.catalog-side-row-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  flex: 1 1 auto;
}

.catalog-side-row-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}

.catalog-side-row-meta .stars.sm {
  transform: scale(0.92);
  transform-origin: left center;
}

.catalog-side-filter-group {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.35rem;
}

.catalog-side-filter {
  padding: 0.45rem 0.3rem;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.catalog-side-filter:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.16);
}

.catalog-side-filter.is-active {
  border-color: rgba(147, 51, 234, 0.5);
  background: rgba(147, 51, 234, 0.25);
  color: var(--text);
}

[data-theme="light"] .catalog-side-filter {
  background: var(--bg-card);
  border-color: var(--border);
}

[data-theme="light"] .catalog-side-filter.is-active {
  background: rgba(124, 58, 237, 0.12);
  border-color: rgba(124, 58, 237, 0.35);
}

.catalog-side-hint {
  margin: 0.45rem 0 0;
  font-size: 0.68rem;
  color: var(--text-faint);
}

.catalog-side-section--browse {
  background: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .catalog-side-section--browse {
  background: rgba(124, 58, 237, 0.04);
}

.catalog-side-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.catalog-side-nav-link {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.55rem;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(0, 0, 0, 0.22);
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

[data-theme="light"] .catalog-side-nav-link {
  border-color: var(--border);
  background: var(--bg-card);
}

.catalog-side-nav-link:hover {
  border-color: rgba(167, 139, 250, 0.45);
  background: rgba(147, 51, 234, 0.14);
  box-shadow: 0 4px 14px rgba(147, 51, 234, 0.12);
  transform: translateX(2px);
}

.catalog-side-nav-link:focus-visible {
  outline: 2px solid var(--accent-hover);
  outline-offset: 2px;
}

.catalog-side-nav-ico {
  flex-shrink: 0;
  width: 1.85rem;
  height: 1.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  font-size: 0.75rem;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 3px 10px rgba(147, 51, 234, 0.3);
}

.catalog-side-nav-ico--gift {
  background: linear-gradient(135deg, #a855f7, #7e22ce);
}

.catalog-side-nav-ico--shield {
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  box-shadow: 0 3px 10px rgba(34, 197, 94, 0.28);
}

.catalog-side-nav-ico--mail {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  box-shadow: 0 3px 10px rgba(59, 130, 246, 0.28);
}

.catalog-side-nav-ico--bingo {
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  box-shadow: 0 3px 10px rgba(245, 158, 11, 0.28);
}

.catalog-side-nav-label {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text);
}

.catalog-side-nav-link:hover .catalog-side-nav-label {
  color: var(--text);
}

.catalog-side-nav-arrow {
  flex-shrink: 0;
  font-size: 0.62rem;
  color: var(--text-faint);
  opacity: 0.35;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    color 0.18s ease;
}

.catalog-side-nav-link:hover .catalog-side-nav-arrow {
  opacity: 1;
  color: var(--accent-hover);
  transform: translateX(2px);
}

.catalog-side-trust {
  list-style: none;
  margin: 0 0 0.55rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.catalog-side-trust li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.76rem;
  line-height: 1.4;
  color: var(--text-muted);
}

.catalog-side-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.5);
}

.catalog-side-footnote {
  margin: 0;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.72rem;
  color: var(--text-faint);
}

.catalog-side-footnote strong {
  color: var(--text-muted);
  font-weight: 700;
}

[data-theme="light"] .catalog-side-footnote {
  border-top-color: var(--border);
}


.catalog-main-panel .catalog-datatable-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .catalog-main-panel .catalog-datatable-toolbar {
  border-bottom-color: var(--border);
  background: var(--bg-elevated);
}

.catalog-search-wrap {
  flex: 1 1 auto;
  max-width: none;
}

.catalog-main-panel .catalog-search-wrap .input-search {
  background: rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .catalog-main-panel .catalog-search-wrap .input-search {
  background: var(--bg-card);
  border-color: var(--border);
}

.catalog-datatable-count {
  margin: 0;
  padding: 0;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-faint);
  border: none;
  background: transparent;
  white-space: nowrap;
}

.catalog-datatable-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 2.5rem 1rem !important;
  font-size: 0.9375rem;
}

.catalog-datatable-shell {
  position: relative;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.catalog-datatable-shell .catalog-table-wrap {
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow-x: hidden;
  max-width: 100%;
}

.catalog-datatable-shell .rank-table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
}

.catalog-datatable-shell .rank-table th,
.catalog-datatable-shell .rank-table td {
  padding: 0.5rem 0.5rem;
  overflow: hidden;
}

.catalog-datatable-shell .rank-table th:nth-child(1),
.catalog-datatable-shell .rank-table td:nth-child(1) {
  width: 11%;
}

.catalog-datatable-shell .rank-table th:nth-child(2),
.catalog-datatable-shell .rank-table td:nth-child(2) {
  width: 30%;
}

.catalog-datatable-shell .rank-table th:nth-child(3),
.catalog-datatable-shell .rank-table td:nth-child(3) {
  width: 14%;
}

.catalog-datatable-shell .rank-table th:nth-child(4),
.catalog-datatable-shell .rank-table td:nth-child(4) {
  width: 25%;
}

.catalog-datatable-shell .rank-table th:nth-child(5),
.catalog-datatable-shell .rank-table td:nth-child(5) {
  width: 20%;
}

.catalog-datatable-page .casino-cell-inner {
  min-width: 0;
}

.catalog-datatable-page .rank-table .casino-logo-img {
  height: 40px;
  max-height: 40px;
  max-width: 120px;
}

.catalog-datatable-page .rank-table .casino-cell-inner .casino-logo.sm {
  width: 40px;
  height: 40px;
  font-size: 0.68rem;
}

.catalog-datatable-page .casino-name-inline {
  max-width: 100%;
}

.catalog-datatable-shell .rank-table tbody td:nth-child(4) {
  font-size: inherit;
  font-weight: normal;
  color: inherit;
}

.catalog-datatable-page .cr-bonus-tip-wrap {
  display: block;
  max-width: 100%;
  min-width: 0;
}

.catalog-datatable-page .cr-bonus-offer {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  max-width: 100%;
  min-width: 0;
  padding: 0.18rem 0.38rem 0.18rem 0.22rem;
  border-radius: 6px;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(147, 51, 234, 0.12);
  box-shadow: none;
}

.catalog-datatable-page .cr-bonus-offer-ico {
  width: 18px;
  height: 18px;
  font-size: 0.55rem;
  border-radius: 5px;
  box-shadow: none;
}

.catalog-datatable-page .cr-bonus-offer-text {
  display: block;
  min-width: 0;
  font-size: 0.625rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.catalog-datatable-page .rank-table-actions-inner {
  justify-content: flex-end;
}

.catalog-datatable-page .btn-table {
  padding: 0.4rem 0.55rem;
  font-size: 0.7rem;
  white-space: nowrap;
}

.catalog-main-panel .catalog-datatable-toolbar {
  gap: 0.65rem;
}

.catalog-datatable-count {
  white-space: normal;
  text-align: right;
}

@media (max-width: 767px) {
  .catalog-datatable-count {
    text-align: left;
  }

  .catalog-main-panel .catalog-datatable-toolbar {
    padding: 0.75rem 0.85rem;
  }

  .catalog-pager-mount {
    padding: 0.75rem 0.85rem 0.9rem;
  }

  .catalog-datatable-shell .rank-table th,
  .catalog-datatable-shell .rank-table td {
    padding: 0.45rem 0.35rem;
  }

  .catalog-datatable-page .casino-logo-img {
    max-width: 96px;
    max-height: 36px;
    height: 36px;
  }

  .catalog-datatable-page .btn-table {
    padding: 0.35rem 0.45rem;
    font-size: 0.65rem;
  }
}

.catalog-datatable-shell .rank-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: color-mix(in srgb, var(--bg-card) 96%, #000);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-faint);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

[data-theme="light"] .catalog-datatable-shell .rank-table thead th {
  background: var(--bg-card);
  color: var(--text-muted);
  border-bottom-color: var(--border);
}

.catalog-pager-mount {
  margin: 0;
  padding: 0.85rem 1rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

[data-theme="light"] .catalog-pager-mount {
  border-top-color: var(--border);
}

.catalog-pager-mount .cr-pager--catalog {
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
}

.catalog-datatable-shell .rank-table .rank-table-rating {
  text-align: center;
}

.catalog-datatable-page .rank-table-rating--stars-only .rank-table-rating-inner {
  justify-content: center;
  gap: 0;
}

.catalog-datatable-page .rank-table-rating--stars-only .stars.sm {
  margin: 0;
}

.catalog-datatable-shell.is-catalog-loading .catalog-table-wrap {
  opacity: 0.42;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.catalog-table-loading {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 20, 0.55);
  backdrop-filter: blur(3px);
}

.catalog-table-loading[hidden] {
  display: none !important;
}

.catalog-table-spinner {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.12);
  border-top-color: var(--accent);
  animation: catalog-spinner-rot 0.72s linear infinite;
}

@keyframes catalog-spinner-rot {
  to {
    transform: rotate(360deg);
  }
}

[data-theme="light"] .catalog-table-loading {
  background: rgba(255, 255, 255, 0.75);
}

[data-theme="light"] .catalog-table-spinner {
  border-color: rgba(0, 0, 0, 0.08);
  border-top-color: var(--accent);
}

.tabs {
  display: inline-flex;
  padding: 4px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.tab {
  padding: 0.5rem 1.1rem;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--tab-inactive);
  cursor: pointer;
}

a.tab {
  display: inline-block;
  text-decoration: none;
  line-height: 1.25;
}

a.tab:not(.active):hover {
  color: var(--text);
}

.catalog-type-tabs {
  flex: 0 0 auto;
}

.tab.active {
  background: linear-gradient(to right, var(--accent), var(--accent-deep));
  color: #fff;
  box-shadow: 0 2px 12px var(--accent-glow);
}

.toolbar-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.search-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-muted);
  min-width: 180px;
  flex: 1 1 200px;
}

.input-search {
  flex: 1;
  border: none;
  background: transparent;
  color: var(--text);
  font: inherit;
  min-width: 0;
}

.input-search::placeholder {
  color: var(--text-muted);
}

.input-search:focus {
  outline: none;
}

.select {
  padding: 0.5rem 0.75rem;
  font: inherit;
  font-size: 0.8125rem;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
}

.rank-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
  min-width: 920px;
}

.rank-table th,
.rank-table td {
  padding: 0.55rem 0.65rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.rank-table tbody tr:nth-child(odd) td {
  background: var(--bg-table-row);
}

.rank-table tbody tr:nth-child(even) td {
  background: var(--bg-table-row-alt);
}

.rank-table tbody tr:nth-child(odd):hover td {
  background: color-mix(in srgb, var(--accent) 14%, var(--bg-table-row));
}

.rank-table tbody tr:nth-child(even):hover td {
  background: color-mix(in srgb, var(--accent) 14%, var(--bg-table-row-alt));
}

.rank-table tbody tr.cr-rank-chase-trail td {
  box-shadow:
    inset 3px 0 0 rgba(251, 191, 36, 0.42),
    inset 0 0 18px rgba(251, 191, 36, 0.1);
  filter: brightness(1.07);
  transition:
    box-shadow 0.16s cubic-bezier(0.33, 1, 0.68, 1),
    filter 0.16s cubic-bezier(0.33, 1, 0.68, 1);
}

.rank-table tbody tr.rank-row-sponsored.cr-rank-chase-trail td {
  box-shadow:
    inset 3px 0 0 rgba(253, 224, 71, 0.35),
    inset 0 0 16px rgba(253, 224, 71, 0.08);
  filter: brightness(1.05);
}

.rank-table tbody tr.cr-rank-chase-lit td {
  box-shadow:
    inset 5px 0 0 #fbbf24,
    inset 0 0 26px rgba(251, 191, 36, 0.22);
  filter: brightness(1.16);
  transition:
    box-shadow 0.16s cubic-bezier(0.33, 1, 0.68, 1),
    filter 0.16s cubic-bezier(0.33, 1, 0.68, 1);
}

.rank-table tbody tr.rank-row-sponsored.cr-rank-chase-lit td {
  box-shadow:
    inset 5px 0 0 #fde047,
    inset 0 0 28px rgba(253, 224, 71, 0.28);
  filter: brightness(1.12);
}

[data-theme="light"] .rank-table tbody tr.cr-rank-chase-trail td {
  box-shadow:
    inset 3px 0 0 rgba(217, 119, 6, 0.55),
    inset 0 0 14px rgba(251, 191, 36, 0.08);
}

[data-theme="light"] .rank-table tbody tr.cr-rank-chase-lit td {
  box-shadow:
    inset 5px 0 0 #d97706,
    inset 0 0 22px rgba(251, 191, 36, 0.2);
}

@media (prefers-reduced-motion: reduce) {
  .rank-table tbody tr.cr-rank-chase-trail td,
  .rank-table tbody tr.cr-rank-chase-lit td {
    box-shadow: none;
    filter: none;
  }
}

.rank-table th {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-elevated);
}

.rank-table tbody td:nth-child(2) {
  font-weight: 600;
  color: var(--text);
}

.rank-table .casino-cell-inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.rank-table .casino-cell-inner .casino-logo.sm {
  margin-right: 0;
}

.rank-table .casino-logo-img {
  flex-shrink: 0;
  height: 32px;
  width: auto;
  max-width: 100px;
  max-height: 32px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.rank-table .casino-name-inline {
  font-weight: 600;
  color: var(--text);
  min-width: 0;
  max-width: 11rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-table tbody td:nth-child(4) {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

[data-theme="light"] .rank-table tbody td:nth-child(4) {
  color: var(--text);
}

.rank-table tbody tr.hidden {
  display: none;
}

.rank-table-rating-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.45rem;
}

.rank-table-actions-inner {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.cr-payment-cell {
  vertical-align: middle;
}

.cr-payment-icons {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.35rem;
  max-width: 200px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 2px;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

.cr-payment-ico-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

[data-theme="light"] .cr-payment-ico-wrap {
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.cr-payment-ico {
  max-width: 40px;
  max-height: 24px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.cr-payment-empty {
  color: var(--muted);
  opacity: 0.75;
}

.cr-payment-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 28px;
  padding: 0 0.35rem;
  margin: 0;
  border-radius: 6px;
  border: 1px solid rgba(251, 191, 36, 0.45);
  background: rgba(251, 191, 36, 0.1);
  color: var(--gold);
  cursor: pointer;
  font: inherit;
  line-height: 1;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.cr-payment-more:hover {
  background: rgba(251, 191, 36, 0.18);
  border-color: rgba(251, 191, 36, 0.65);
}

.cr-payment-more-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.7rem;
  font-weight: 700;
}

.cr-payment-more-total {
  font-variant-numeric: tabular-nums;
}

.cr-payment-dialog {
  padding: 0;
  border: none;
  max-width: min(520px, 94vw);
  width: 100%;
  border-radius: 16px;
  background: var(--bg-card);
  color: var(--text);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.cr-payment-dialog::backdrop {
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
}

.cr-payment-dialog-panel {
  padding: 1rem 1.1rem 1.15rem;
}

.cr-payment-dialog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.cr-payment-dialog-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

.cr-payment-dialog-close {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}

.cr-payment-dialog-close:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
}

.cr-payment-dialog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
  gap: 0.65rem;
  max-height: min(60vh, 420px);
  overflow-y: auto;
  padding-right: 0.15rem;
}

.cr-payment-dialog-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.35rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  text-align: center;
}

[data-theme="light"] .cr-payment-dialog-item {
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.cr-payment-dialog-item img {
  max-width: 72px;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.cr-payment-dialog-name {
  font-size: 0.68rem;
  line-height: 1.25;
  color: #334155;
  word-break: break-word;
}

.cr-payment-dialog-item--text .cr-game-dialog-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 40px;
  font-size: 1.35rem;
  color: #64748b;
}

[data-theme="dark"] .cr-payment-dialog-item--text .cr-game-dialog-ico {
  color: #94a3b8;
}

.cr-bonus-cell {
  vertical-align: middle;
  max-width: 19rem;
  overflow: visible;
}

.cr-bonus-tip-wrap {
  position: relative;
  display: inline-flex;
  max-width: 100%;
  outline: none;
}

.cr-bonus-tip-wrap:focus-visible .cr-bonus-offer {
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 0 2px rgba(167, 139, 250, 0.65);
}

.rank-table tbody tr.rank-row-sponsored .cr-bonus-tip-wrap:focus-visible .cr-bonus-offer {
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 2px rgba(251, 191, 36, 0.55);
}

.cr-bonus-tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%);
  z-index: 300;
  box-sizing: border-box;
  width: max-content;
  max-width: min(22rem, calc(100vw - 2rem));
  padding: 0.55rem 0.72rem;
  border-radius: 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.01em;
  white-space: normal;
  word-break: break-word;
  color: rgba(248, 250, 252, 0.96);
  background: linear-gradient(165deg, rgba(30, 27, 55, 0.98), rgba(15, 23, 42, 0.99));
  border: 1px solid rgba(167, 139, 250, 0.55);
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.14s ease,
    visibility 0.14s ease,
    transform 0.14s ease;
}

.cr-bonus-tooltip::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  margin-left: -7px;
  border-width: 7px 7px 0 7px;
  border-style: solid;
  border-color: rgba(30, 27, 55, 0.98) transparent transparent transparent;
  filter: drop-shadow(0 1px 0 rgba(167, 139, 250, 0.35));
}

.cr-bonus-tip-wrap:hover .cr-bonus-tooltip,
.cr-bonus-tip-wrap:focus-within .cr-bonus-tooltip {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(-2px);
}

[data-theme="light"] .cr-bonus-tooltip {
  color: var(--text);
  background: linear-gradient(165deg, #ffffff, rgba(237, 233, 254, 0.98));
  border-color: rgba(124, 58, 237, 0.38);
  box-shadow:
    0 12px 32px rgba(99, 56, 242, 0.18),
    0 0 0 1px rgba(15, 23, 42, 0.06);
}

[data-theme="light"] .cr-bonus-tooltip::after {
  border-top-color: #ffffff;
  filter: drop-shadow(0 1px 0 rgba(124, 58, 237, 0.25));
}

.cr-bonus-offer {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  max-width: 100%;
  padding: 0.28rem 0.52rem;
  border-radius: 10px;
  border: 1px solid rgba(167, 139, 250, 0.42);
  background: linear-gradient(
    145deg,
    rgba(124, 58, 237, 0.22),
    rgba(15, 23, 42, 0.55)
  );
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.cr-bonus-offer-ico {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  font-size: 0.72rem;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 4px 14px rgba(147, 51, 234, 0.42);
}

.cr-bonus-offer-text {
  flex: 1;
  min-width: 0;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: normal;
  word-break: normal;
  color: rgba(255, 255, 255, 0.94);
}

.cr-bonus-offer--empty {
  gap: 0;
  padding: 0.28rem 0.55rem;
  justify-content: center;
  border-style: dashed;
  border-color: rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.35);
  box-shadow: none;
}

.cr-bonus-offer--empty .cr-bonus-offer-text {
  font-weight: 600;
  font-size: 0.8rem;
  color: rgba(148, 163, 184, 0.85);
  text-align: center;
  display: block;
  overflow: visible;
}

.rank-table tbody tr.rank-row-sponsored .cr-bonus-offer:not(.cr-bonus-offer--empty) {
  border-color: rgba(251, 191, 36, 0.42);
  background: linear-gradient(
    145deg,
    rgba(251, 191, 36, 0.14),
    rgba(124, 58, 237, 0.18)
  );
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .cr-bonus-offer:not(.cr-bonus-offer--empty) {
  border-color: rgba(124, 58, 237, 0.35);
  background: linear-gradient(165deg, rgba(237, 233, 254, 0.95), rgba(255, 255, 255, 0.98));
  box-shadow: 0 6px 20px rgba(99, 56, 242, 0.08);
}

[data-theme="light"] .cr-bonus-offer-text {
  color: var(--text);
}

[data-theme="light"] .cr-bonus-offer--empty {
  border-color: rgba(148, 163, 184, 0.45);
  background: rgba(248, 250, 252, 0.9);
}

[data-theme="light"] .cr-bonus-offer--empty .cr-bonus-offer-text {
  color: var(--text-muted);
}

[data-theme="light"] .rank-table tbody tr.rank-row-sponsored .cr-bonus-offer:not(.cr-bonus-offer--empty) {
  border-color: rgba(217, 119, 6, 0.35);
  background: linear-gradient(165deg, rgba(254, 243, 199, 0.55), rgba(237, 233, 254, 0.9));
}

/* Legacy name — home rankings used .cr-games-cell before bonus column */
.cr-games-cell {
  vertical-align: middle;
}

.cr-game-title-icons {
  max-width: 220px;
}

.cr-game-title-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  max-width: 4.5rem;
  height: 28px;
  padding: 0 0.35rem;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
  color: var(--text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

[data-theme="light"] .cr-game-title-chip {
  background: rgba(0, 0, 0, 0.04);
}

.rank-hex {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 40px;
  line-height: 1;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: #2d2d44;
  color: var(--text-muted);
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.35);
}

.rank-hex-1 {
  background: linear-gradient(145deg, var(--green), var(--green-deep));
  color: #0a0a14;
  box-shadow: 0 0 16px rgba(34, 197, 94, 0.35);
}

.rank-hex--sponsored {
  background: linear-gradient(145deg, #fbbf24, #d97706);
  color: #1a1004;
  box-shadow: 0 0 14px rgba(251, 191, 36, 0.45);
}

.rank-hex--sponsored .rank-hex-sponsored-ico {
  font-size: 0.78rem;
  line-height: 1;
}

.rank-table tbody tr.rank-row-sponsored td {
  background: color-mix(in srgb, #fbbf24 12%, var(--bg-table-row));
}

.rank-table tbody tr.rank-row-sponsored:nth-child(even) td {
  background: color-mix(in srgb, #fbbf24 12%, var(--bg-table-row-alt));
}

.rank-table tbody tr.rank-row-sponsored:hover td {
  background: color-mix(in srgb, #fbbf24 22%, var(--bg-table-row));
}

.rank-table tbody tr.rank-row-sponsored:nth-child(even):hover td {
  background: color-mix(in srgb, #fbbf24 22%, var(--bg-table-row-alt));
}

[data-theme="light"] .rank-table tbody tr.rank-row-sponsored td {
  background: color-mix(in srgb, #fbbf24 18%, var(--bg-table-row));
}

[data-theme="light"] .rank-table tbody tr.rank-row-sponsored:nth-child(even) td {
  background: color-mix(in srgb, #fbbf24 18%, var(--bg-table-row-alt));
}

[data-theme="light"] .rank-table tbody tr.rank-row-sponsored:hover td {
  background: color-mix(in srgb, #fbbf24 28%, var(--bg-table-row));
}

[data-theme="light"] .rank-table tbody tr.rank-row-sponsored:nth-child(even):hover td {
  background: color-mix(in srgb, #fbbf24 28%, var(--bg-table-row-alt));
}

.bonus-primary {
  display: block;
  font-weight: 700;
  color: var(--text);
}

.bonus-primary--empty {
  color: var(--muted);
  font-weight: 600;
}

.bonus-sub {
  display: block;
  font-size: 0.7rem;
  color: var(--text-faint);
  margin-top: 0.15rem;
}

.payout {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
}

.payout--instant {
  color: var(--green);
}

.payout--instant .bolt {
  filter: drop-shadow(0 0 6px rgba(34, 197, 94, 0.55));
}

.payout--gold {
  color: var(--gold-payout);
}

.payout--gold .bolt {
  filter: drop-shadow(0 0 5px rgba(251, 191, 36, 0.35));
}

.table-footer {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.cr-pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
  margin-top: 1rem;
  padding: 0.65rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.18);
}

[data-theme="light"] .cr-pager {
  background: rgba(0, 0, 0, 0.03);
}

.cr-pager-meta {
  font-size: 0.875rem;
  color: var(--muted);
  text-align: center;
}

.cr-pager-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  border: 1px solid rgba(34, 197, 94, 0.35);
  transition: background 0.15s ease, color 0.15s ease;
}

.cr-pager-link:hover {
  background: rgba(34, 197, 94, 0.12);
}

.cr-pager-link--disabled {
  color: var(--muted);
  border-color: var(--border);
  cursor: not-allowed;
  pointer-events: none;
}

.cr-pager--catalog {
  flex-direction: column;
  align-items: stretch;
  gap: 0.65rem;
}

.cr-pager-row--controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.65rem;
}

.cr-pager-pages {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cr-pager-pages li {
  margin: 0;
}

.cr-pager-num {
  display: inline-flex;
  min-width: 2.1rem;
  height: 2.1rem;
  align-items: center;
  justify-content: center;
  padding: 0 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-muted);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.cr-pager-num:hover {
  color: var(--text);
  border-color: rgba(34, 197, 94, 0.45);
  background: rgba(34, 197, 94, 0.08);
}

.cr-pager-num--current {
  color: #fff;
  background: linear-gradient(to right, var(--accent), var(--accent-deep));
  border-color: transparent;
  box-shadow: 0 2px 10px var(--accent-glow);
  pointer-events: none;
}

.cr-pager-ellipsis {
  display: inline-flex;
  align-items: center;
  padding: 0 0.2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  user-select: none;
}

.cr-pager-meta--block {
  margin: 0;
  width: 100%;
}

.cr-pager-jump {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.65rem;
  margin: 0;
  padding: 0.35rem 0 0;
}

.cr-pager-jump-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
}

.cr-pager-jump-input {
  width: 4.5rem;
  padding: 0.4rem 0.5rem;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  color: var(--text);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.cr-pager-jump-input:focus {
  outline: none;
  border-color: rgba(34, 197, 94, 0.55);
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.15);
}

.cr-pager-jump-btn {
  padding: 0.4rem 0.85rem;
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  background: linear-gradient(to right, var(--accent), var(--accent-deep));
  box-shadow: 0 2px 10px var(--accent-glow);
}

.cr-pager-jump-btn:hover {
  filter: brightness(1.06);
}

.cr-pager-link--edge {
  font-size: 0.8125rem;
}

[data-theme="light"] .cr-pager-jump-input {
  background: #fff;
}

/* Home trio: wider bonuses column (~44% · ~28% · ~28%) */
.home-trio {
  padding: 0.75rem 0 2.5rem;
}

.home-trio-grid {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

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

  .home-trio-card--bonuses {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1200px) {
  .home-trio-grid {
    grid-template-columns: minmax(0, 11fr) minmax(0, 7fr) minmax(0, 7fr);
    gap: 1.1rem;
  }

}

.home-trio-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem 1rem 1.05rem;
  display: flex;
  flex-direction: column;
  min-height: 0;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.22);
}

[data-theme="light"] .home-trio-card {
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.06);
}

.home-trio-card--bonuses {
  container-type: inline-size;
  container-name: bonuscard;
}

/* Homepage NetEnt grid (third column in home trio) */
.home-trio-card--netent {
  min-width: 0;
}

.home-trio-card--netent {
  padding: 0.85rem 0.8rem 0.9rem;
}

.home-trio-card--netent .home-card-header {
  margin-bottom: 0.45rem;
  padding-bottom: 0.4rem;
}

.home-trio-card--netent .home-card-title {
  font-size: 0.95rem;
}

.home-netent-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.3rem;
  flex: 1;
  align-content: start;
  min-width: 0;
}

.home-netent-grid__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  padding: 0.22rem;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: color-mix(in srgb, var(--bg-deep) 45%, var(--bg-card));
  color: inherit;
  text-decoration: none;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

[data-theme="light"] .home-netent-grid__link {
  border-color: var(--border);
  background: var(--bg-deep);
}

.home-netent-grid__link:hover,
.home-netent-grid__link:focus-visible {
  border-color: color-mix(in srgb, var(--accent) 38%, var(--border));
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.home-netent-grid__img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 5px;
  display: block;
}

.home-netent-grid__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.7rem;
}

.home-netent-grid__name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 0.2rem;
  font-size: 0.54rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
}

.home-netent-grid__rtp {
  margin-top: 0.05rem;
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--gold);
}

.home-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  margin-bottom: 0.7rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.home-card-title {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.2;
}

.home-card-all {
  font-size: 0.75rem;
  font-weight: 600;
  color: #9333ea;
  text-decoration: none;
  white-space: nowrap;
}

.home-card-all:hover {
  color: #a855f7;
  text-decoration: underline;
  text-underline-offset: 3px;
}

[data-theme="light"] .home-card-all {
  color: #7c3aed;
}

.exclusive-bonuses-grid {
  display: grid;
  gap: 0.6rem;
  min-width: 0;
  flex: 1;
  align-content: start;
}

@container bonuscard (min-width: 400px) {
  .exclusive-bonuses-grid {
    grid-template-columns: minmax(0, 1.62fr) minmax(0, 1fr);
    gap: 0.55rem 0.65rem;
    align-items: stretch;
  }
}

@supports not (container-type: inline-size) {
  @media (min-width: 720px) {
    .home-trio-card--bonuses .exclusive-bonuses-grid {
      grid-template-columns: minmax(0, 1.62fr) minmax(0, 1fr);
      gap: 0.55rem 0.65rem;
      align-items: stretch;
    }
  }
}

.exclusive-featured {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(139, 92, 246, 0.22);
  min-height: 0;
}

.exclusive-featured-bg {
  position: absolute;
  inset: 0;
  background-color: #0c111d;
  background-image: url("../exclusive-bonus-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 52% center;
  pointer-events: none;
}

.exclusive-featured-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(12, 17, 29, 0.96) 0%,
    rgba(12, 17, 29, 0.82) 32%,
    rgba(12, 17, 29, 0.45) 52%,
    rgba(12, 17, 29, 0.12) 70%,
    transparent 88%
  );
  pointer-events: none;
}

.exclusive-featured-inner {
  position: relative;
  z-index: 1;
  padding: 0.7rem 0.85rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
  min-height: 100%;
}

.exclusive-featured-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.55rem;
}

.exclusive-featured-tagline {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(156, 163, 175, 0.95);
}

.exclusive-pill-badge {
  flex-shrink: 0;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #9333ea 0%, #6366f1 50%, #2563eb 100%);
  box-shadow: 0 4px 16px rgba(147, 51, 234, 0.35);
}

.exclusive-offer-lines {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.exclusive-offer-primary {
  font-size: clamp(0.95rem, 2.6vw, 1.38rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--text);
}

.exclusive-offer-secondary {
  font-size: clamp(0.82rem, 2.1vw, 1.1rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: rgba(243, 244, 246, 0.95);
}

.exclusive-expires-label {
  margin: 0;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(156, 163, 175, 0.9);
}

.exclusive-countdown {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.28rem;
}

.exclusive-cd-cell {
  flex: 1;
  min-width: 0;
  text-align: center;
  padding: 0.32rem 0.15rem 0.28rem;
  background: rgba(10, 10, 18, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.exclusive-cd-cell strong {
  display: block;
  font-size: clamp(0.8rem, 1.8vw, 1.05rem);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  color: var(--text);
}

.exclusive-cd-cell small {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: capitalize;
  color: var(--text-muted);
}

.btn-exclusive-code {
  align-self: flex-start;
  margin-top: auto;
  padding: 0.42rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(90deg, #9333ea 0%, #3b82f6 100%);
  box-shadow: 0 5px 18px rgba(59, 130, 246, 0.22), 0 3px 14px rgba(147, 51, 234, 0.32);
  transition: transform 0.15s, box-shadow 0.2s, filter 0.2s;
}

.btn-exclusive-code:hover {
  color: #fff;
  filter: brightness(1.06);
  box-shadow: 0 8px 28px rgba(59, 130, 246, 0.32), 0 4px 22px rgba(147, 51, 234, 0.42);
}

.exclusive-bonus-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}

.exclusive-bonus-row {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.48rem 0.55rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  transition: border-color 0.2s, background 0.2s;
}

.exclusive-bonus-row:hover {
  border-color: rgba(139, 92, 246, 0.35);
  background: rgba(255, 255, 255, 0.04);
}

[data-theme="light"] .exclusive-bonus-row {
  background: rgba(0, 0, 0, 0.03);
  border-color: var(--border);
}

[data-theme="light"] .exclusive-bonus-row:hover {
  background: var(--bg-elevated);
}

.exclusive-bonus-row .casino-logo.sm {
  margin-right: 0;
  flex-shrink: 0;
}

.exclusive-logo-bc {
  font-size: 0.5rem;
  text-transform: lowercase;
  letter-spacing: -0.03em;
  background: linear-gradient(145deg, #4ade80, #16a34a) !important;
  color: #0a0a0f !important;
  border: none !important;
}

.exclusive-logo-roo {
  background: linear-gradient(145deg, #fbbf24, #b45309) !important;
  color: #1a1008 !important;
  border: none !important;
}

.exclusive-bonus-row-body {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}

.exclusive-row-brand {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
}

.exclusive-row-brand--green {
  color: #22c55e;
}

.exclusive-row-brand--gold {
  color: #fbbf24;
}

.exclusive-row-offer {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
}

.exclusive-row-extra {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.exclusive-diamond {
  font-size: 0.45rem;
  color: rgba(167, 139, 250, 0.85);
  line-height: 1;
}

[data-theme="light"] .exclusive-featured-bg {
  background-color: #f1f5f9;
  background-image: url("../exclusive-bonus-bg.png");
}

[data-theme="light"] .exclusive-featured-bg::after {
  background: linear-gradient(
    105deg,
    rgba(248, 250, 252, 0.95) 0%,
    rgba(248, 250, 252, 0.82) 34%,
    rgba(248, 250, 252, 0.48) 54%,
    rgba(248, 250, 252, 0.14) 74%,
    transparent 92%
  );
}

[data-theme="light"] .exclusive-cd-cell {
  background: rgba(255, 255, 255, 0.95);
  border-color: #e5e7eb;
}

[data-theme="light"] .exclusive-offer-primary,
[data-theme="light"] .exclusive-offer-secondary {
  color: var(--text);
}

[data-theme="light"] .exclusive-featured {
  border-color: rgba(139, 92, 246, 0.2);
}

/* Guides & news cards (home trio) */
.guide-rows,
.news-rows {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
  min-height: 0;
}

.guide-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.38rem 0;
  border-bottom: 1px solid var(--border);
}

.guide-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.guide-row-ico {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.2) inset,
    0 0 22px rgba(0, 0, 0, 0.45);
}

.guide-row-ico i {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

.guide-row-ico--green {
  background: linear-gradient(145deg, #16a34a, #15803d);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.2) inset,
    0 0 20px rgba(34, 197, 94, 0.45);
}

.guide-row-ico--purple {
  background: linear-gradient(145deg, #a855f7, #7c3aed);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.2) inset,
    0 0 22px rgba(168, 85, 247, 0.42);
}

.guide-row-ico--indigo {
  background: linear-gradient(145deg, #4338ca, #312e81);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.2) inset,
    0 0 22px rgba(99, 102, 241, 0.4);
}

.guide-row-text {
  flex: 1;
  min-width: 0;
}

.guide-row-title {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  line-height: 1.3;
}

.guide-row-title:hover {
  color: #a855f7;
}

.guide-row-desc {
  margin: 0.12rem 0 0;
  font-size: 0.72rem;
  line-height: 1.35;
  color: var(--text-muted);
}

.guide-row-chev {
  flex-shrink: 0;
  color: rgba(167, 139, 250, 0.7);
  font-size: 0.7rem;
}

.guide-row-chev i {
  display: block;
}

.news-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.38rem 0;
  border-bottom: 1px solid var(--border);
}

.news-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.news-row-ico {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.2) inset,
    0 0 22px rgba(0, 0, 0, 0.45);
}

.news-row-ico i {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

.news-row-ico--navy {
  background: linear-gradient(145deg, #0f2744, #1e3a8a);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.2) inset,
    0 0 20px rgba(37, 99, 235, 0.38);
}

.news-row-ico--sky {
  background: linear-gradient(145deg, #1d4ed8, #3b82f6);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.2) inset,
    0 0 22px rgba(59, 130, 246, 0.45);
}

.news-row-ico--orange {
  background: linear-gradient(145deg, #c2410c, #ea580c);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.2) inset,
    0 0 20px rgba(234, 88, 12, 0.38);
}

.news-row-text {
  flex: 1;
  min-width: 0;
}

.news-row-title {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  line-height: 1.3;
}

.news-row-title:hover {
  color: #a855f7;
}

.news-row-desc {
  margin: 0.12rem 0 0.18rem;
  font-size: 0.72rem;
  line-height: 1.35;
  color: var(--text-muted);
}

.news-row-date {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* Trust bar (scoped grid — do not reuse .trust-grid; hero uses that class) */
.trust-bar {
  padding: 0 0 1.25rem;
  background: transparent;
}

.trust-bar-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.1rem 1.15rem;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.22);
}

[data-theme="light"] .trust-bar-panel {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.trust-bar-grid {
  display: grid;
  gap: 1.1rem 1.25rem;
  grid-template-columns: 1fr;
}

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

@media (min-width: 1100px) {
  .trust-bar-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem 1.5rem;
    align-items: start;
  }
}

.trust-item {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  min-width: 0;
}

.trust-ico-tile {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  font-size: 1.05rem;
  color: #fff;
  background: rgba(8, 10, 18, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35) inset,
    0 0 22px rgba(0, 0, 0, 0.45);
}

.trust-ico-tile i {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.45));
}

.trust-ico-tile--green {
  color: #4ade80;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35) inset,
    0 0 20px rgba(34, 197, 94, 0.42);
}

.trust-ico-tile--purple {
  color: #c4b5fd;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35) inset,
    0 0 22px rgba(147, 51, 234, 0.45);
}

.trust-ico-tile--blue {
  color: #7dd3fc;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35) inset,
    0 0 20px rgba(59, 130, 246, 0.4);
}

.trust-item-body {
  min-width: 0;
}

.trust-item-body strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
  line-height: 1.25;
}

.trust-item-body p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--text-muted);
}

/* Newsletter — footer band + home-style card; optional dice column */
.newsletter {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
  margin-bottom: 0;
  padding: clamp(1rem, 3vw, 1.35rem) clamp(1rem, 3vw, 1.35rem);
  border-radius: 18px;
  background-color: #0c111d;
  background-image: linear-gradient(
    105deg,
    rgba(46, 16, 80, 0.35) 0%,
    rgba(12, 17, 29, 0.98) 48%,
    #0c111d 100%
  );
  border: 1px solid rgba(139, 92, 246, 0.42);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35), 0 8px 32px rgba(88, 28, 135, 0.18);
}

.newsletter--footer {
  margin-bottom: 0;
}

[data-theme="light"] .newsletter {
  background: linear-gradient(105deg, #f3e8ff, #f8fafc 50%, #f1f5f9);
  border-color: #c4b5fd;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.newsletter-bg-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../newsletter-hero.png") no-repeat center center;
  background-size: cover;
  opacity: 0.32;
  pointer-events: none;
}

[data-theme="light"] .newsletter-bg-photo {
  opacity: 0.12;
}

.newsletter-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(12, 17, 29, 0.97) 0%, rgba(12, 17, 29, 0.82) 38%, rgba(12, 17, 29, 0.35) 62%, transparent 82%),
    radial-gradient(ellipse 50% 80% at 12% 50%, rgba(147, 51, 234, 0.22), transparent 55%),
    radial-gradient(ellipse 40% 55% at 92% 45%, rgba(59, 130, 246, 0.1), transparent 50%);
  pointer-events: none;
}

[data-theme="light"] .newsletter-glow {
  background: linear-gradient(90deg, rgba(248, 250, 252, 0.96) 0%, rgba(248, 250, 252, 0.75) 45%, rgba(248, 250, 252, 0.35) 70%, transparent 88%);
}

.newsletter-layout {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.85rem 1.25rem;
  align-items: center;
  grid-template-columns: 1fr;
}

.newsletter-layout--footer {
  align-items: center;
}

.newsletter-dice {
  display: none;
  position: relative;
  justify-self: end;
  align-self: center;
  width: 120px;
  height: 88px;
  flex-shrink: 0;
}

.newsletter-die {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.newsletter-die--a {
  left: 0;
  top: 8px;
  transform: rotate(-12deg);
  background: linear-gradient(145deg, #6366f1 0%, #4338ca 45%, #312e81 100%);
  box-shadow:
    0 0 24px rgba(99, 102, 241, 0.55),
    0 12px 28px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.newsletter-die--b {
  right: 0;
  bottom: 0;
  transform: rotate(14deg);
  background: linear-gradient(145deg, #a855f7 0%, #7c3aed 48%, #5b21b6 100%);
  box-shadow:
    0 0 26px rgba(168, 85, 247, 0.5),
    0 12px 28px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.newsletter-die::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 6px;
  opacity: 0.35;
  background-image: radial-gradient(circle at 30% 35%, #fff 0, #fff 2.5px, transparent 3px),
    radial-gradient(circle at 70% 40%, #fff 0, #fff 2.5px, transparent 3px),
    radial-gradient(circle at 45% 70%, #fff 0, #fff 2.5px, transparent 3px);
}

@media (prefers-reduced-motion: no-preference) {
  .newsletter-die--a {
    animation: cr-newsletter-die-a 5s ease-in-out infinite;
  }

  .newsletter-die--b {
    animation: cr-newsletter-die-b 5.5s ease-in-out infinite;
  }

  @keyframes cr-newsletter-die-a {
    0%,
    100% {
      transform: rotate(-12deg) translateY(0);
    }
    50% {
      transform: rotate(-8deg) translateY(-4px);
    }
  }

  @keyframes cr-newsletter-die-b {
    0%,
    100% {
      transform: rotate(14deg) translateY(0);
    }
    50% {
      transform: rotate(10deg) translateY(3px);
    }
  }
}

.newsletter-intro {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  min-width: 0;
}

.newsletter-ico-tile {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1rem;
  color: #e9d5ff;
  background: rgba(8, 10, 18, 0.88);
  border: 1px solid rgba(167, 139, 250, 0.35);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35) inset,
    0 0 18px rgba(147, 51, 234, 0.4);
}

.newsletter-ico-tile i {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
}

[data-theme="light"] .newsletter-ico-tile {
  background: rgba(255, 255, 255, 0.85);
  color: #6d28d9;
  border-color: rgba(124, 58, 237, 0.35);
  box-shadow: 0 0 16px rgba(124, 58, 237, 0.18);
}

.newsletter-intro-copy {
  min-width: 0;
}

.newsletter-title {
  margin: 0 0 0.25rem;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 800;
  line-height: 1.2;
}

.newsletter-lead {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--text-muted);
}

.newsletter-form-col {
  min-width: 0;
}

.newsletter-form {
  margin: 0;
}

.newsletter-form-shell {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  width: 100%;
  max-width: 100%;
  padding: 3px 4px 3px 12px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 8, 14, 0.92);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35) inset;
}

[data-theme="light"] .newsletter-form-shell {
  background: #fff;
  border-color: #e5e7eb;
  box-shadow: none;
}

.newsletter-form-shell:focus-within {
  border-color: rgba(167, 139, 250, 0.55);
  box-shadow: 0 0 0 1px rgba(147, 51, 234, 0.25), 0 0 20px rgba(147, 51, 234, 0.1);
}

.input-email {
  flex: 1 1 auto;
  min-width: 0;
  max-width: none;
  padding: 0.5rem 0.35rem 0.5rem 0;
  font: inherit;
  font-size: 0.8125rem;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--text);
}

.input-email--inline {
  flex: 1;
}

[data-theme="light"] .input-email {
  background: transparent;
}

.input-email::placeholder {
  color: var(--text-muted);
}

.input-email:focus {
  outline: none;
}

.btn-newsletter-submit {
  flex-shrink: 0;
  margin: 2px 2px 2px 0;
  padding: 0.48rem 1.05rem;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background: linear-gradient(135deg, #9333ea 0%, #7c3aed 55%, #6d28d9 100%);
  box-shadow: 0 3px 14px rgba(124, 58, 237, 0.4);
  transition: filter 0.15s, transform 0.12s;
}

.btn-newsletter-submit:hover {
  filter: brightness(1.06);
}

.btn-newsletter-submit:active {
  transform: scale(0.98);
}

.newsletter--footer .btn-newsletter-submit {
  padding: 0.52rem 1.2rem;
  font-size: 0.8125rem;
  border-radius: 10px;
}

.form-msg {
  margin: 0.45rem 0 0;
  min-height: 1.1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.form-msg--ok {
  color: var(--green);
}

.form-msg--error {
  color: #fca5a5;
}

.newsletter-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.newsletter-unavailable {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--text-muted);
}

@media (min-width: 720px) {
  .newsletter {
    padding: clamp(1.05rem, 2.5vw, 1.25rem) clamp(1.15rem, 2.5vw, 1.5rem);
  }

  .newsletter-layout:not(.newsletter-layout--footer) {
    grid-template-columns: minmax(0, 1.25fr) minmax(200px, 1fr);
    gap: 0.75rem 1.5rem;
    align-items: center;
  }

  .newsletter-layout--footer {
    grid-template-columns: minmax(0, 1.15fr) minmax(220px, 1fr);
    gap: 1rem 1.75rem;
  }

  .newsletter-bg-photo {
    background-size: cover;
    background-position: center 42%;
  }
}

@media (min-width: 1100px) {
  .newsletter-layout--footer {
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.95fr) minmax(100px, 140px);
    align-items: center;
  }

  .newsletter-dice {
    display: block;
  }

  .newsletter-bg-photo {
    opacity: 0.36;
    background-position: center 40%;
  }
}

.site-footer {
  position: relative;
  margin-top: 2rem;
  padding-top: 2.25rem;
  border-top: 1px solid rgba(139, 92, 246, 0.22);
  background:
    linear-gradient(180deg, rgba(10, 10, 20, 0.4) 0%, var(--bg-deep) 28%),
    var(--bg-deep);
}

[data-theme="light"] .site-footer {
  border-top-color: rgba(124, 58, 237, 0.18);
  background: linear-gradient(180deg, rgba(250, 245, 255, 0.85) 0%, var(--bg-deep) 32%);
}

.site-footer__top {
  margin-bottom: 0.5rem;
}

.footer-inner {
  padding-top: 2.25rem;
  padding-bottom: 2rem;
}

.footer-nav {
  display: grid;
  gap: 2rem 2.5rem;
  align-items: start;
}

@media (min-width: 960px) {
  .footer-nav {
    grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
    gap: 2.5rem 3rem;
    align-items: start;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.footer-brand-img {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(147, 51, 234, 0.25));
}

.footer-wordmark {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  line-height: 1.08;
}

.footer-wordmark-top {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

.footer-wordmark-bottom {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
}

[data-theme="light"] .footer-wordmark-bottom {
  color: var(--text-muted);
}

.footer-columns-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 1.75rem;
  min-width: 0;
}

@media (min-width: 640px) {
  .footer-columns-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem 1.5rem;
  }
}

.footer-col {
  min-width: 0;
}

.footer-col--follow .footer-social {
  justify-content: flex-start;
}

.footer-heading {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

[data-theme="light"] .footer-heading {
  color: var(--text);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s ease;
}

[data-theme="light"] .footer-links a {
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--text);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.28);
  font-size: 1.05rem;
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.footer-social-link i.fa-brands {
  transition: transform 0.15s ease, filter 0.15s ease;
}

/* Brand colours on icons (anchor stays neutral so FA / inherit does not flatten glyphs). */
.site-footer .footer-social-link .fa-facebook-f {
  color: #1877f2;
}

.site-footer .footer-social-link .fa-x-twitter {
  color: #e7e9ea;
}

.site-footer .footer-social-link .fa-instagram {
  display: inline-block;
  color: transparent;
  background: linear-gradient(45deg, #f58533 0%, #dd2a7b 40%, #8134af 70%, #515bd4 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.site-footer .footer-social-link .fa-youtube {
  color: #ff0033;
}

.site-footer .footer-social-link .fa-telegram {
  color: #26a5e4;
}

.footer-social-link:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transform: translateY(-1px);
}

.footer-social-link:hover i.fa-brands {
  transform: scale(1.08);
  filter: brightness(1.08);
}

.footer-social-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.15);
  font-size: 1.05rem;
  pointer-events: none;
}

.site-footer .footer-social-placeholder .fa-facebook-f {
  color: rgba(24, 119, 242, 0.55);
}

.site-footer .footer-social-placeholder .fa-x-twitter {
  color: rgba(231, 233, 234, 0.45);
}

.site-footer .footer-social-placeholder .fa-instagram {
  display: inline-block;
  color: transparent;
  opacity: 0.55;
  background: linear-gradient(45deg, #f58533 0%, #dd2a7b 45%, #8134af 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.site-footer .footer-social-placeholder .fa-youtube {
  color: rgba(255, 0, 51, 0.55);
}

.site-footer .footer-social-placeholder .fa-telegram {
  color: rgba(38, 165, 228, 0.55);
}

[data-theme="light"] .footer-social-link {
  border-color: var(--border);
  background: var(--bg-card);
}

[data-theme="light"] .footer-social-link:hover {
  border-color: rgba(124, 58, 237, 0.35);
  background: rgba(124, 58, 237, 0.06);
  box-shadow: 0 4px 14px rgba(99, 56, 242, 0.12);
}

[data-theme="light"] .site-footer .footer-social-link .fa-x-twitter {
  color: #0f1419;
}

[data-theme="light"] .footer-social-placeholder {
  border-color: rgba(124, 58, 237, 0.2);
  background: rgba(255, 255, 255, 0.6);
}

[data-theme="light"] .site-footer .footer-social-placeholder .fa-x-twitter {
  color: rgba(15, 20, 25, 0.4);
}

.footer-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .footer-meta-row {
  border-top-color: var(--border);
}

.footer-bottom {
  margin: 0;
  padding: 0;
  border: none;
  flex: 1 1 12rem;
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.45);
  text-align: left;
}

[data-theme="light"] .footer-bottom {
  color: var(--text-muted);
}

.footer-disclaimer {
  margin: 0;
  flex: 0 1 22rem;
  max-width: 26rem;
  font-size: 0.72rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.48);
  text-align: right;
}

[data-theme="light"] .footer-disclaimer {
  color: var(--text-muted);
}

@media (max-width: 720px) {
  .footer-meta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-disclaimer {
    text-align: left;
    max-width: none;
  }
}

/* Casino inner review layout (/casino-review/{slug}) */
.cr-review-page.cr-inner-page {
  padding: 0 0 3.5rem;
  background: radial-gradient(ellipse 85% 42% at 50% -8%, rgba(99, 56, 242, 0.07), transparent 58%);
}

.cr-inner-hero {
  position: relative;
  padding: 2rem 0 3rem;
  margin-bottom: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(14, 17, 29, 0.96) 0%, rgba(6, 8, 14, 0.99) 100%),
    linear-gradient(155deg, #0e1422 0%, #080a12 42%, #14102a 100%);
  border-bottom: 1px solid rgba(139, 92, 246, 0.28);
}

.cr-inner-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 92% 58% at 86% 24%, rgba(99, 56, 242, 0.45), transparent 54%),
    radial-gradient(ellipse 58% 48% at 10% 78%, rgba(59, 130, 246, 0.2), transparent 50%),
    radial-gradient(circle at 50% 118%, rgba(251, 191, 36, 0.07), transparent 42%);
  opacity: 1;
}

.cr-inner-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 88% 72% at 48% 38%, black 15%, transparent 68%);
  -webkit-mask-image: radial-gradient(ellipse 88% 72% at 48% 38%, black 15%, transparent 68%);
  opacity: 0.55;
}

[data-theme="light"] .cr-inner-hero {
  background: linear-gradient(185deg, #f8f8fd 0%, #ebebf5 55%, #e4e4ef 100%);
  border-bottom-color: rgba(139, 92, 246, 0.14);
}

[data-theme="light"] .cr-inner-hero-bg {
  background:
    radial-gradient(ellipse 82% 52% at 82% 16%, rgba(147, 51, 234, 0.14), transparent 54%),
    radial-gradient(ellipse 48% 42% at 12% 82%, rgba(59, 130, 246, 0.07), transparent 50%);
}

[data-theme="light"] .cr-inner-hero-bg::after {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px);
  opacity: 0.4;
}

.cr-inner-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 960px) {
  .cr-inner-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
    gap: 2.75rem 3.25rem;
  }
}

.cr-inner-hero-copy {
  min-width: 0;
}

.cr-inner-breadcrumb {
  margin-bottom: 1rem;
}

.cr-inner-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.cr-inner-breadcrumb-list a {
  padding: 0.2rem 0.55rem;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none;
  transition:
    background 0.15s,
    color 0.15s;
}

.cr-inner-breadcrumb-list a:hover {
  color: #fff;
  background: rgba(147, 51, 234, 0.22);
}

.cr-inner-breadcrumb-list li:last-child {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  letter-spacing: 0.01em;
}

[data-theme="light"] .cr-inner-breadcrumb-list {
  color: var(--text-muted);
}

[data-theme="light"] .cr-inner-breadcrumb-list a {
  color: var(--text-muted);
}

[data-theme="light"] .cr-inner-breadcrumb-list a:hover {
  color: var(--accent-deep);
  background: rgba(147, 51, 234, 0.1);
}

[data-theme="light"] .cr-inner-breadcrumb-list li:last-child {
  color: var(--text);
}

.cr-inner-bc-sep {
  opacity: 0.35;
  user-select: none;
}

.cr-inner-badge-rec {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.85rem;
  padding: 0.32rem 0.75rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #86efac;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.22), rgba(22, 163, 74, 0.12));
  border: 1px solid rgba(74, 222, 128, 0.45);
  border-radius: 999px;
  box-shadow:
    0 0 24px rgba(34, 197, 94, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

[data-theme="light"] .cr-inner-badge-rec {
  color: var(--green-deep);
  box-shadow: none;
}

.cr-inner-brand-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
  margin-bottom: 1rem;
}

.cr-inner-logo {
  width: clamp(96px, 26vw, 148px);
  height: auto;
  border-radius: 18px;
  border: 1px solid rgba(196, 181, 253, 0.28);
  background: rgba(0, 0, 0, 0.35);
  padding: 0.45rem;
  object-fit: contain;
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.42),
    0 0 32px rgba(99, 56, 242, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .cr-inner-logo {
  border-color: var(--border);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.cr-inner-logo-fallback.lg {
  flex-shrink: 0;
  width: clamp(96px, 26vw, 148px);
  height: clamp(96px, 26vw, 148px);
  font-size: clamp(0.95rem, 3.2vw, 1.2rem);
  border-radius: 18px;
}

.cr-inner-brand-text {
  min-width: 0;
}

.cr-inner-title {
  margin: 0 0 0.45rem;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fafafa;
  text-shadow:
    0 2px 20px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(99, 56, 242, 0.12);
}

[data-theme="light"] .cr-inner-title {
  color: var(--text);
  text-shadow: none;
}

.cr-inner-rating-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
  width: fit-content;
  max-width: 100%;
  padding: 0.38rem 0.62rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
}

[data-theme="light"] .cr-inner-rating-row {
  background: rgba(255, 255, 255, 0.68);
  border-color: var(--border);
}

.cr-inner-stars {
  transform: translateY(1px);
}

.cr-inner-rating-num {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
}

.cr-inner-label.rating-label--excellent,
.cr-inner-label {
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.cr-inner-lead {
  margin: 0 0 1.25rem;
  font-size: 0.97rem;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.76);
  max-width: 42rem;
}

[data-theme="light"] .cr-inner-lead {
  color: var(--text-muted);
}

.cr-inner-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.55rem;
  list-style: none;
  margin: 0 0 1.45rem;
  padding: 0;
}

.cr-inner-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.38rem 0.72rem 0.38rem 0.55rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.015em;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

[data-theme="light"] .cr-inner-trust li {
  color: var(--text);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(139, 92, 246, 0.14);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.cr-inner-trust-ico {
  display: inline-flex;
  line-height: 0;
  color: transparent;
  background-image: linear-gradient(135deg, #ddd6fe, #93c5fd);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 6px rgba(147, 51, 234, 0.5));
}

.cr-inner-trust-ico i {
  font-size: 0.9rem;
  font-weight: 400;
}

.cr-inner-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
}

.cr-inner-btn-main.btn-primary {
  min-height: 46px;
  padding-inline: 1.35rem;
  border-radius: 12px;
  box-shadow:
    0 6px 32px rgba(147, 51, 234, 0.55),
    0 0 56px rgba(99, 56, 242, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.cr-inner-btn-second.btn-outline {
  min-height: 46px;
  padding-inline: 1.15rem;
  border-radius: 12px;
  border-color: rgba(196, 181, 253, 0.55);
  background: rgba(99, 56, 242, 0.1);
}

.cr-inner-btn-second.btn-outline:hover {
  border-color: rgba(233, 213, 255, 0.75);
  background: rgba(147, 51, 234, 0.16);
}

.cr-inner-disclaimer {
  margin: 0;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.42);
}

[data-theme="light"] .cr-inner-disclaimer {
  color: var(--text-faint);
}

.cr-inner-no-url {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Decorative hero art */
.cr-inner-hero-art {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 960px) {
  .cr-inner-hero-art {
    min-height: 280px;
  }
}

.cr-inner-phone {
  position: relative;
  width: min(200px, 42vw);
  aspect-ratio: 10 / 19;
  border-radius: 30px;
  padding: 11px;
  background: linear-gradient(148deg, rgba(255, 255, 255, 0.2), rgba(40, 36, 72, 0.92));
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(167, 139, 250, 0.4),
    0 0 50px rgba(99, 56, 242, 0.38);
  transform: rotate(-8deg);
}

.cr-inner-phone-screen {
  height: 100%;
  border-radius: 22px;
  background:
    radial-gradient(ellipse 120% 80% at 50% 10%, rgba(59, 130, 246, 0.12), transparent 45%),
    radial-gradient(circle at 50% 100%, rgba(147, 51, 234, 0.18), transparent 55%),
    linear-gradient(165deg, #1e293b, #020617);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  text-align: center;
  padding: 1rem;
}

.cr-inner-phone-win {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #fde047;
}

.cr-inner-phone-amt {
  font-size: clamp(1rem, 4vw, 1.35rem);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 0 18px rgba(250, 204, 21, 0.45);
}

.cr-inner-float {
  position: absolute;
  pointer-events: none;
}

.cr-inner-float--coin {
  top: 12%;
  left: 6%;
  font-size: 2rem;
  color: rgba(251, 191, 36, 0.85);
  filter: drop-shadow(0 0 12px rgba(251, 191, 36, 0.55));
  animation: cr-float-y 5s ease-in-out infinite;
}

.cr-inner-float--chip {
  bottom: 14%;
  right: 8%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: conic-gradient(#faf5ff 0deg 45deg, #7c3aed 45deg 90deg, #faf5ff 90deg 135deg, #7c3aed 135deg 180deg, #faf5ff 180deg 225deg, #7c3aed 225deg 270deg, #faf5ff 270deg 315deg, #7c3aed 315deg 360deg);
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.35), 0 0 28px rgba(147, 51, 234, 0.35);
  animation: cr-float-spin 42s linear infinite;
}

.cr-inner-float--gift {
  top: 22%;
  right: 4%;
  font-size: 1.65rem;
  color: #c4b5fd;
  filter: drop-shadow(0 0 14px rgba(167, 139, 250, 0.55));
  animation: cr-float-y 6.5s ease-in-out infinite reverse;
}

@media (prefers-reduced-motion: reduce) {
  .cr-inner-float--coin,
  .cr-inner-float--chip,
  .cr-inner-float--gift {
    animation: none;
  }
}

@keyframes cr-float-y {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes cr-float-spin {
  to {
    transform: rotate(360deg);
  }
}

.cr-inner-body {
  padding-top: 1.5rem;
}

.cr-inner-tabs {
  position: sticky;
  top: calc(var(--header-h) + env(safe-area-inset-top, 0px));
  z-index: 40;
  margin: 0 0 1.5rem;
  padding: 0.55rem 0.45rem;
  background: color-mix(in srgb, var(--bg-deep) 92%, transparent);
  backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(139, 92, 246, 0.14);
  border-radius: 14px;
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

[data-theme="light"] .cr-inner-tabs {
  background: color-mix(in srgb, var(--bg-deep) 94%, #ffffff);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.06);
}

.cr-inner-tabs-scroll {
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.1rem 0.15rem 0.25rem;
  scroll-padding-inline: 8px;
}

.cr-inner-tabs-scroll::-webkit-scrollbar {
  display: none;
}

.cr-inner-tab {
  flex-shrink: 0;
  padding: 0.52rem 0.92rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    color 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.cr-inner-tab:hover {
  color: var(--text);
  background: rgba(147, 51, 234, 0.1);
  transform: translateY(-1px);
}

.cr-inner-tab.is-active {
  color: #fff;
  border-color: rgba(196, 181, 253, 0.45);
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.78), rgba(99, 102, 241, 0.42));
  box-shadow:
    0 8px 28px rgba(99, 56, 242, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

[data-theme="light"] .cr-inner-tab.is-active {
  color: #fff;
}

.cr-inner-tab-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.15rem;
  padding: 0 0.28rem;
  margin-left: 0.15rem;
  font-size: 0.62rem;
  font-weight: 800;
  border-radius: 999px;
  background: rgba(147, 51, 234, 0.35);
  color: #fff;
}

.cr-inner-tab-badge--soft {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
}

[data-theme="light"] .cr-inner-tab-badge--soft {
  background: rgba(0, 0, 0, 0.06);
  color: var(--text-muted);
}

.cr-inner-tab-muted {
  font-weight: 600;
  opacity: 0.65;
}

@media (prefers-reduced-motion: reduce) {
  .cr-inner-tab:hover {
    transform: none;
  }

  .cr-inner-stat:hover {
    transform: none;
  }

  .cr-inner-provider-tile:hover {
    transform: none;
  }
}

.cr-inner-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 1100px) {
  .cr-inner-layout {
    grid-template-columns: minmax(0, 1fr) 312px;
    gap: 2.25rem;
  }
}

.cr-inner-card {
  position: relative;
  padding: 1.45rem 1.35rem 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(
    168deg,
    color-mix(in srgb, var(--bg-card) 94%, #1a1530),
    color-mix(in srgb, var(--bg-card) 100%, transparent)
  );
  box-shadow:
    0 8px 36px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.cr-inner-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.35rem;
  right: 1.35rem;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(167, 139, 250, 0.65) 24%,
    rgba(59, 130, 246, 0.45) 52%,
    rgba(251, 191, 36, 0.35) 76%,
    transparent
  );
  opacity: 0.88;
  pointer-events: none;
}

[data-theme="light"] .cr-inner-card {
  border-color: var(--border);
  background: var(--bg-card);
  box-shadow:
    0 4px 22px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

[data-theme="light"] .cr-inner-card::before {
  opacity: 0.55;
}

.cr-inner-card + .cr-inner-card {
  margin-top: 1.35rem;
}

.cr-inner-section {
  scroll-margin-top: calc(var(--header-h) + env(safe-area-inset-top, 0px) + 76px);
}

.cr-inner-card--muted {
  opacity: 0.96;
  border-style: dashed;
  border-color: rgba(139, 92, 246, 0.28);
}

.cr-inner-card--muted::before {
  opacity: 0.35;
}

.cr-inner-h2 {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.85rem;
  padding-bottom: 0.65rem;
  font-size: 1.14rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cr-inner-h2::before {
  content: "";
  width: 4px;
  height: 1.25rem;
  border-radius: 6px;
  flex-shrink: 0;
  background: linear-gradient(180deg, #c084fc, var(--stat-blue));
  box-shadow: 0 0 14px rgba(147, 51, 234, 0.45);
}

[data-theme="light"] .cr-inner-h2 {
  border-bottom-color: var(--border);
}

.cr-inner-h2 + .cr-inner-h3 {
  margin-top: 0;
}

.cr-inner-h3 {
  margin: 0 0 0.5rem;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--text);
}

.cr-inner-h3--sp {
  margin-top: 1.5rem;
  padding-top: 0.25rem;
}

.cr-inner-muted {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.cr-inner-mt {
  margin-top: 0.75rem;
}

.cr-inner-prose {
  font-size: 0.92rem;
  line-height: 1.72;
  color: var(--text-muted);
}

.cr-inner-prose p {
  margin: 0 0 0.75rem;
}

.cr-inner-prose p:last-child {
  margin-bottom: 0;
}

.cr-inner-prose--review {
  font-size: 0.985rem;
  line-height: 1.78;
  color: var(--text-muted);
  max-width: 52rem;
}

.cr-inner-prose--review > p {
  margin: 0 0 1.05rem;
}

.cr-inner-prose--review > p:first-of-type {
  font-size: 1.04rem;
  line-height: 1.74;
  color: var(--text);
}

.cr-inner-review-aside {
  margin: 0 0 1.35rem;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  border: 1px solid rgba(251, 191, 36, 0.38);
  background: linear-gradient(
    145deg,
    rgba(251, 191, 36, 0.14),
    rgba(0, 0, 0, 0.12)
  );
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

[data-theme="light"] .cr-inner-review-aside {
  background: linear-gradient(
    145deg,
    rgba(251, 191, 36, 0.16),
    rgba(255, 252, 245, 0.95)
  );
  border-color: rgba(217, 119, 6, 0.3);
  box-shadow: none;
}

.cr-inner-review-aside-kicker {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(180, 83, 9, 0.95);
}

[data-theme="light"] .cr-inner-review-aside-kicker {
  color: rgba(146, 64, 14, 0.95);
}

.cr-inner-review-aside p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.cr-inner-prose--review > .cr-inner-review-aside:last-child {
  margin-bottom: 0;
}

.cr-inner-stats {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fill, minmax(11.5rem, 1fr));
}

.cr-inner-stat {
  padding: 0.82rem 0.88rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.18);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.cr-inner-stat:hover {
  transform: translateY(-3px);
  border-color: rgba(147, 51, 234, 0.35);
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.28),
    0 0 24px rgba(99, 56, 242, 0.08);
}

[data-theme="light"] .cr-inner-stat {
  background: rgba(0, 0, 0, 0.02);
  border-color: var(--border);
}

[data-theme="light"] .cr-inner-stat:hover {
  border-color: rgba(147, 51, 234, 0.35);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
}

.cr-inner-stat-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.cr-inner-stat strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
}

.cr-inner-stat-body {
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.35;
}

.cr-inner-stat-details {
  margin-top: 0.35rem;
}

.cr-inner-stat-details summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--text-muted);
  user-select: none;
  list-style: none;
}

.cr-inner-stat-details summary::-webkit-details-marker {
  display: none;
}

.cr-inner-stat-details summary::before {
  content: "▸ ";
  display: inline-block;
  margin-right: 0.35rem;
  transition: transform 0.15s ease;
}

.cr-inner-stat-details[open] summary::before {
  transform: rotate(90deg);
}

.cr-inner-stat--payout-span {
  grid-column: 1 / -1;
}

.cr-inner-stat--payout {
  padding: 0.95rem 1rem;
}

.cr-payout-display {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.cr-inner-stat--payout .cr-payout-display {
  gap: 0.65rem;
}

.cr-payout-display-facts {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.015em;
  color: var(--text);
}

.cr-inner-stat--payout .cr-payout-display-facts {
  font-size: 0.875rem;
  line-height: 1.5;
}

.cr-payout-display-facts--solo {
  margin: 0;
}

.cr-inner-security-block .cr-payout-display-facts {
  font-size: 0.9375rem;
  line-height: 1.5;
}

.cr-payout-display-note {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.62rem 0.72rem;
  border-radius: 12px;
  border: 1px solid rgba(147, 51, 234, 0.28);
  background:
    linear-gradient(145deg, rgba(99, 56, 242, 0.14) 0%, rgba(0, 0, 0, 0.18) 55%);
  border-left: 3px solid rgba(167, 139, 250, 0.95);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
}

[data-theme="light"] .cr-payout-display-note {
  background: linear-gradient(145deg, rgba(147, 51, 234, 0.1) 0%, rgba(255, 255, 255, 0.92) 60%);
  border-color: rgba(147, 51, 234, 0.28);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.cr-payout-display-note-label {
  flex-shrink: 0;
  margin-top: 0.12rem;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #ddd6fe;
  line-height: 1.2;
}

[data-theme="light"] .cr-payout-display-note-label {
  color: var(--accent-deep);
}

.cr-payout-display-note-text {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.58;
  color: rgba(230, 226, 252, 0.88);
}

[data-theme="light"] .cr-payout-display-note-text {
  color: var(--text-muted);
}

.cr-inner-stat-details-panel {
  margin-top: 0.5rem;
  padding-top: 0.25rem;
}

.cr-inner-stat-details--payout summary {
  font-size: 0.8rem;
  color: rgba(196, 181, 253, 0.95);
}

[data-theme="light"] .cr-inner-stat-details--payout summary {
  color: var(--accent-deep);
}

.cr-inner-stat-details--payout[open] summary {
  margin-bottom: 0.15rem;
}

.cr-inner-security-block .cr-payout-display {
  margin-top: 0.35rem;
}

/* Pros: row-major two columns so long and short bullets balance visually */
.cr-inner-checklist--pros-balanced {
  display: grid;
  gap: 0.55rem 1.5rem;
  grid-template-columns: 1fr;
  align-items: start;
}

@media (min-width: 640px) {
  .cr-inner-checklist--pros-balanced {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.cr-inner-checklist--pros-balanced li {
  margin-bottom: 0;
  min-height: 0;
}

.cr-inner-checklist--pros-balanced .cr-inner-pros-text {
  flex: 1;
  min-width: 0;
  font-weight: 500;
  color: rgba(230, 226, 252, 0.94);
}

[data-theme="light"] .cr-inner-checklist--pros-balanced .cr-inner-pros-text {
  color: var(--text);
}

.cr-inner-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cr-inner-checklist li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.875rem;
  line-height: 1.48;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  padding: 0.35rem 0 0.35rem 0.35rem;
  border-radius: 10px;
  transition: background 0.15s ease;
}

.cr-inner-checklist li:hover {
  background: rgba(147, 51, 234, 0.06);
}

.cr-inner-checklist i {
  margin-top: 0.15rem;
  color: var(--green);
  flex-shrink: 0;
}

.cr-inner-bonus-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .cr-inner-bonus-grid:not(.cr-inner-bonus-grid--triplet) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Three offers: stack on small/medium so cards stay full-width; equal row on large screens */
@media (min-width: 560px) and (max-width: 991px) {
  .cr-inner-bonus-grid--triplet {
    grid-template-columns: 1fr;
    max-width: 26rem;
    margin-inline: auto;
    gap: 1rem;
  }
}

@media (min-width: 992px) {
  .cr-inner-bonus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .cr-inner-bonus-grid--triplet {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: none;
    margin-inline: 0;
  }
}

.cr-inner-bonus-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.35rem 1.2rem 1.15rem;
  border-radius: 18px;
  border: 1px solid rgba(167, 139, 250, 0.45);
  background: linear-gradient(155deg, rgba(124, 58, 237, 0.25), rgba(15, 23, 42, 0.78));
  overflow: hidden;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.35),
    0 0 48px rgba(99, 56, 242, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.cr-inner-bonus-card-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.cr-inner-bonus-actions {
  flex-shrink: 0;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cr-inner-bonus-card::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -25%;
  width: 55%;
  height: 90%;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.12), transparent 65%);
  pointer-events: none;
}

[data-theme="light"] .cr-inner-bonus-card {
  background: linear-gradient(165deg, rgba(237, 233, 254, 0.98), #ffffff);
  box-shadow: 0 10px 32px rgba(99, 56, 242, 0.08);
}

.cr-inner-bonus-card--hero {
  border-color: rgba(196, 181, 253, 0.72);
  box-shadow:
    0 14px 44px rgba(0, 0, 0, 0.38),
    0 0 56px rgba(139, 92, 246, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

[data-theme="light"] .cr-inner-bonus-card--hero {
  box-shadow:
    0 12px 36px rgba(99, 56, 242, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

[data-theme="light"] .cr-inner-bonus-actions {
  border-top-color: rgba(124, 58, 237, 0.14);
}

.cr-inner-bonus-card--secondary {
  border-color: rgba(167, 139, 250, 0.28);
  background: linear-gradient(155deg, rgba(124, 58, 237, 0.14), rgba(15, 23, 42, 0.55));
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

[data-theme="light"] .cr-inner-bonus-card--secondary {
  background: linear-gradient(165deg, rgba(245, 243, 255, 0.96), #ffffff);
  box-shadow: 0 6px 22px rgba(99, 56, 242, 0.06);
}

.cr-inner-bonus-pill {
  display: inline-block;
  margin-bottom: 0.45rem;
  padding: 0.22rem 0.55rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

[data-theme="light"] .cr-inner-bonus-pill {
  color: var(--accent-deep);
  background: rgba(124, 58, 237, 0.1);
  border-color: rgba(124, 58, 237, 0.2);
}

.cr-inner-bonus-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.65rem;
  font-size: 1.15rem;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 6px 22px rgba(147, 51, 234, 0.45);
}

.cr-inner-bonus-title {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
}

.cr-inner-bonus-desc,
.cr-inner-bonus-headline {
  margin: 0 0 0.85rem;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

.cr-inner-bonus-card--hero .cr-inner-bonus-headline {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: -0.02em;
}

[data-theme="light"] .cr-inner-bonus-desc,
[data-theme="light"] .cr-inner-bonus-headline {
  color: var(--text);
}

.cr-inner-bonus-headline:has(+ .cr-inner-bonus-details-fold) {
  margin-bottom: 0.72rem;
}

.cr-inner-bonus-details-fold {
  margin: 0 0 0.35rem;
  margin-top: auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.28);
}

[data-theme="light"] .cr-inner-bonus-details-fold {
  border-color: rgba(124, 58, 237, 0.2);
  background: rgba(255, 255, 255, 0.72);
}

.cr-inner-bonus-details-summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 0.72rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  color: rgba(230, 226, 252, 0.88);
  list-style: none;
  user-select: none;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.cr-inner-bonus-details-summary:hover {
  background: rgba(147, 51, 234, 0.12);
  color: rgba(255, 255, 255, 0.95);
}

[data-theme="light"] .cr-inner-bonus-details-summary:hover {
  background: rgba(124, 58, 237, 0.08);
}

.cr-inner-bonus-details-summary::-webkit-details-marker {
  display: none;
}

.cr-inner-bonus-details-summary::after {
  content: "";
  flex-shrink: 0;
  width: 0.42rem;
  height: 0.42rem;
  margin-left: 0.35rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  opacity: 0.65;
  transform: rotate(45deg) translateY(-0.08rem);
  transition: transform 0.2s ease;
}

.cr-inner-bonus-details-fold[open] .cr-inner-bonus-details-summary::after {
  transform: rotate(225deg) translateY(0.08rem);
}

[data-theme="light"] .cr-inner-bonus-details-summary {
  color: var(--accent-deep);
}

.cr-inner-bonus-details-body {
  padding: 0 0.75rem 0.72rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-height: min(22rem, 52vh);
  overflow-y: auto;
}

[data-theme="light"] .cr-inner-bonus-details-body {
  border-top-color: rgba(124, 58, 237, 0.12);
}

.cr-inner-bonus-details-p {
  margin: 0 0 0.58rem;
  font-size: 0.8125rem;
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.7);
}

.cr-inner-bonus-details-p:last-child {
  margin-bottom: 0;
}

[data-theme="light"] .cr-inner-bonus-details-p {
  color: var(--text-muted);
}

@media (prefers-reduced-motion: reduce) {
  .cr-inner-bonus-details-summary::after {
    transition: none;
  }
}

.cr-inner-bonus-btn {
  margin-bottom: 0.45rem;
}

.cr-inner-bonus-tc {
  margin: 0;
  font-size: 0.68rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.45);
}

[data-theme="light"] .cr-inner-bonus-tc {
  color: var(--text-faint);
}

.cr-inner-bonus-tc a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cr-inner-provider-grid {
  display: grid;
  gap: 0.55rem;
  grid-template-columns: repeat(auto-fill, minmax(7.5rem, 1fr));
}

.cr-inner-provider-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.45rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.14);
  text-align: center;
  transition:
    border-color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.cr-inner-provider-tile:hover {
  border-color: rgba(147, 51, 234, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .cr-inner-provider-tile {
  background: rgba(0, 0, 0, 0.02);
  border-color: var(--border);
}

.cr-inner-provider-name {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cr-inner-pay-grid {
  display: grid;
  gap: 0.55rem;
  grid-template-columns: repeat(auto-fill, minmax(8rem, 1fr));
}

.cr-inner-pay-item {
  min-height: 44px;
}

.cr-inner-security-grid {
  display: grid;
  gap: 1rem;
}

.cr-inner-security-block .cr-review-h3 {
  margin-bottom: 0.35rem;
}

.cr-inner-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
}

.cr-inner-table {
  min-width: 280px;
}

.cr-inner-faq {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.cr-inner-faq-item {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.12);
  padding: 0 0.85rem;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.cr-inner-faq-item[open] {
  border-color: rgba(147, 51, 234, 0.35);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .cr-inner-faq-item {
  background: rgba(0, 0, 0, 0.02);
  border-color: var(--border);
}

[data-theme="light"] .cr-inner-faq-item[open] {
  border-color: rgba(147, 51, 234, 0.28);
}

.cr-inner-faq-item summary {
  cursor: pointer;
  padding: 0.75rem 0;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text);
  list-style: none;
}

.cr-inner-faq-item summary::-webkit-details-marker {
  display: none;
}

.cr-inner-faq-item summary::after {
  content: "+";
  float: right;
  font-weight: 800;
  color: var(--accent);
}

.cr-inner-faq-item[open] summary::after {
  content: "–";
}

.cr-inner-faq-item p {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.cr-inner-reviews-head {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.cr-inner-reviews-score {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: flex-start;
}

.cr-inner-reviews-score .cr-inner-stars {
  margin: 0;
}

.cr-inner-reviews-score strong {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
}

.cr-inner-reviews-score span {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.cr-inner-reviews-note {
  flex: 1 1 12rem;
  margin: 0;
}

.cr-inner-carousel {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.35rem;
  -webkit-overflow-scrolling: touch;
}

.cr-inner-review-card {
  flex: 0 0 min(280px, 85vw);
  scroll-snap-align: start;
  padding: 1.1rem 1.05rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(165deg, rgba(22, 24, 40, 0.95), rgba(12, 14, 24, 0.92));
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.25);
}

[data-theme="light"] .cr-inner-review-card {
  background: var(--bg-card);
  border-color: var(--border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.cr-inner-review-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.65rem;
}

.cr-inner-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--accent), var(--stat-blue));
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(147, 51, 234, 0.35);
}

.cr-inner-review-name {
  display: block;
  font-size: 0.875rem;
  color: var(--text);
}

.cr-inner-review-badge {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
}

.cr-inner-stars--sm {
  margin-left: auto;
}

.cr-inner-stars--center {
  display: block;
  text-align: center;
  margin: 0.35rem 0 0.85rem;
}

.cr-inner-review-quote {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.cr-inner-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 1100px) {
  .cr-inner-sidebar {
    position: sticky;
    top: calc(var(--header-h) + env(safe-area-inset-top, 0px) + 52px);
  }
}

.cr-inner-side-card {
  padding: 1.15rem 1.05rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(175deg, color-mix(in srgb, var(--bg-card) 96%, #1e1436), var(--bg-card));
  box-shadow:
    0 10px 36px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

[data-theme="light"] .cr-inner-side-card {
  border-color: var(--border);
  background: var(--bg-card);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
}

.cr-inner-score-card {
  text-align: center;
  border-color: rgba(74, 222, 128, 0.4);
  background:
    radial-gradient(ellipse 80% 55% at 50% -15%, rgba(34, 197, 94, 0.2), transparent 58%),
    linear-gradient(180deg, rgba(34, 197, 94, 0.1), rgba(15, 23, 42, 0.68));
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 0 1px rgba(34, 197, 94, 0.15);
}

[data-theme="light"] .cr-inner-score-card {
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.14), #ffffff);
  box-shadow: 0 10px 32px rgba(34, 197, 94, 0.08);
}

.cr-inner-score-big {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--text);
  text-shadow:
    0 0 36px rgba(34, 197, 94, 0.42),
    0 2px 16px rgba(0, 0, 0, 0.35);
}

.cr-inner-score-label {
  margin: 0.35rem 0 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}

.cr-inner-breakdown {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
  text-align: left;
}

.cr-inner-breakdown li {
  display: grid;
  grid-template-columns: minmax(0, 5.25rem) 1fr 2.25rem;
  gap: 0.35rem;
  align-items: center;
  margin-bottom: 0.45rem;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.cr-inner-breakdown strong {
  font-size: 0.78rem;
  color: var(--text);
  text-align: right;
}

.cr-inner-bar {
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

[data-theme="light"] .cr-inner-bar {
  background: rgba(0, 0, 0, 0.06);
}

.cr-inner-bar > span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--stat-blue));
}

.cr-inner-side-cta {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.cr-inner-side-h {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.cr-inner-facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.cr-inner-facts li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
}

.cr-inner-facts i {
  margin-top: 0.12rem;
  color: var(--accent);
  width: 1rem;
  text-align: center;
  flex-shrink: 0;
}

.cr-inner-facts span {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.cr-inner-facts strong {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}

.cr-inner-fact-clip {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.cr-inner-fact-clip a {
  color: var(--green);
  font-weight: 700;
}

.cr-inner-payout-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.cr-inner-payout-list li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
}

.cr-inner-payout-name {
  flex: 1;
  min-width: 0;
  font-weight: 600;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cr-inner-payout-speed {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--green);
}

.cr-inner-secure-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.cr-inner-secure-list li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.cr-inner-secure-list i {
  color: var(--accent);
  width: 1.1rem;
}

.cr-inner-pill {
  margin-left: auto;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.18rem 0.42rem;
  border-radius: 6px;
  background: rgba(147, 51, 234, 0.18);
  color: #e9d5ff;
}

[data-theme="light"] .cr-inner-pill {
  color: var(--accent-deep);
}

/* Shared catalog utilities (same class names as legacy review page) */
.cr-review-payout {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
  white-space: pre-wrap;
}

.cr-review-pay-intro {
  margin: 0 0 0.65rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.cr-review-pay-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
  padding: 0.4rem 0.45rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .cr-review-pay-item {
  background: rgba(0, 0, 0, 0.02);
}

.cr-review-pay-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.cr-review-procon-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .cr-review-procon-grid--split {
    grid-template-columns: 1fr 1fr;
  }
}

.cr-review-procon-col {
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .cr-review-procon-col {
  background: rgba(0, 0, 0, 0.02);
}

.cr-review-procon-col--pros {
  border-color: rgba(34, 197, 94, 0.35);
}

.cr-review-procon-col--cons {
  border-color: rgba(248, 113, 113, 0.35);
}

.cr-review-bullet-list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.cr-review-bullet-list li {
  margin-bottom: 0.35rem;
}

/* Inner review page: stronger pros/cons layout */
.cr-inner-page .cr-inner-procon.cr-review-procon-grid {
  gap: 1.25rem;
}

.cr-inner-page .cr-inner-procon .cr-review-procon-col {
  padding: 1rem 1rem 1rem 1.35rem;
  position: relative;
  overflow: hidden;
}

.cr-inner-page .cr-inner-procon .cr-review-procon-col::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 4px 0 0 4px;
}

.cr-inner-page .cr-inner-procon .cr-review-procon-col--pros::before {
  background: linear-gradient(180deg, rgb(34, 197, 94), rgb(22, 163, 74));
}

.cr-inner-page .cr-inner-procon .cr-review-procon-col--cons::before {
  background: linear-gradient(180deg, rgb(248, 113, 113), rgb(239, 68, 68));
}

.cr-inner-page .cr-inner-procon .cr-review-procon-col--pros {
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.12),
    rgba(0, 0, 0, 0.06)
  );
}

.cr-inner-page .cr-inner-procon .cr-review-procon-col--cons {
  background: linear-gradient(
    135deg,
    rgba(248, 113, 113, 0.1),
    rgba(0, 0, 0, 0.06)
  );
}

[data-theme='light'] .cr-inner-page .cr-inner-procon .cr-review-procon-col--pros {
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.08),
    rgba(0, 0, 0, 0.02)
  );
}

[data-theme='light'] .cr-inner-page .cr-inner-procon .cr-review-procon-col--cons {
  background: linear-gradient(
    135deg,
    rgba(248, 113, 113, 0.06),
    rgba(0, 0, 0, 0.02)
  );
}

.cr-inner-page .cr-inner-procon .cr-review-h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.85rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

.cr-inner-page .cr-inner-procon .cr-review-procon-col--pros .cr-review-h3::before {
  content: '';
  width: 1.625rem;
  height: 1.625rem;
  flex-shrink: 0;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(34, 197, 94, 0.35);
  background-color: rgba(34, 197, 94, 0.22);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath stroke='%2316a34a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M3.5 8.5 6.5 11.5 13 5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.85rem;
}

.cr-inner-page .cr-inner-procon .cr-review-procon-col--cons .cr-review-h3::before {
  content: '';
  width: 1.625rem;
  height: 1.625rem;
  flex-shrink: 0;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(248, 113, 113, 0.35);
  background-color: rgba(248, 113, 113, 0.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath stroke='%23dc2626' stroke-width='2' stroke-linecap='round' d='M5 5l6 6M11 5 5 11'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.75rem;
}

.cr-inner-page .cr-inner-procon .cr-review-bullet-list {
  list-style: none;
  padding-left: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.cr-inner-page .cr-inner-procon .cr-review-bullet-list li {
  position: relative;
  margin-bottom: 0.5rem;
  padding-left: 1.35rem;
}

.cr-inner-page .cr-inner-procon .cr-review-procon-col--pros .cr-review-bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgb(34, 197, 94);
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.25);
}

.cr-inner-page .cr-inner-procon .cr-review-procon-col--cons .cr-review-bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgb(248, 113, 113);
  box-shadow: 0 0 0 2px rgba(248, 113, 113, 0.22);
}

.cr-review-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.cr-review-table th,
.cr-review-table td {
  padding: 0.45rem 0.55rem;
  text-align: left;
  border: 1px solid var(--border);
}

.cr-review-table th {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .cr-review-table th {
  background: rgba(0, 0, 0, 0.04);
}

/* Games catalog + live (inner review page) */
.cr-inner-page .cr-inner-games-catalog {
  overflow: hidden;
}

.cr-inner-games-catalog-top {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.65rem 1rem;
  margin-bottom: 0.35rem;
}

.cr-inner-games-catalog-title {
  margin-bottom: 0 !important;
}

.cr-inner-games-catalog-count {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.32rem 0.65rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(147, 51, 234, 0.28);
  border: 1px solid rgba(167, 139, 250, 0.35);
}

[data-theme='light'] .cr-inner-games-catalog-count {
  color: var(--text);
  background: rgba(147, 51, 234, 0.12);
  border-color: rgba(147, 51, 234, 0.25);
}

.cr-inner-games-catalog-count--live {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(248, 113, 113, 0.45);
  color: rgba(254, 226, 226, 0.95);
}

[data-theme='light'] .cr-inner-games-catalog-count--live {
  color: rgb(153, 27, 27);
  background: rgba(254, 226, 226, 0.85);
  border-color: rgba(248, 113, 113, 0.35);
}

.cr-inner-games-catalog-lead {
  margin: 0 0 1.25rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 44rem;
}

.cr-inner-games-catalog-block {
  padding: 1rem 1.05rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.14);
  margin-bottom: 1rem;
}

.cr-inner-games-catalog-block:last-child {
  margin-bottom: 0;
}

[data-theme='light'] .cr-inner-games-catalog-block {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.55);
}

.cr-inner-games-catalog-block--live {
  border-color: rgba(248, 113, 113, 0.28);
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.08),
    rgba(0, 0, 0, 0.1)
  );
}

[data-theme='light'] .cr-inner-games-catalog-block--live {
  border-color: rgba(239, 68, 68, 0.22);
  background: linear-gradient(
    135deg,
    rgba(254, 226, 226, 0.45),
    rgba(255, 255, 255, 0.7)
  );
}

.cr-inner-games-catalog-subh {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem 0.6rem;
  margin: 0 0 0.85rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.cr-inner-games-catalog-subh--live {
  color: rgba(254, 226, 226, 0.92);
}

[data-theme='light'] .cr-inner-games-catalog-subh--live {
  color: rgb(127, 29, 29);
}

.cr-inner-live-pulse {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: rgb(248, 113, 113);
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.35);
  animation: cr-inner-live-pulse 2.2s ease-in-out infinite;
}

@keyframes cr-inner-live-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.75;
    transform: scale(0.92);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cr-inner-live-pulse {
    animation: none;
  }
}

.cr-inner-game-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.55rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cr-inner-game-chip-list--live {
  gap: 0.45rem 0.5rem;
}

.cr-inner-game-chip {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}

.cr-inner-game-chip:hover {
  background: rgba(147, 51, 234, 0.18);
  border-color: rgba(167, 139, 250, 0.4);
}

[data-theme='light'] .cr-inner-game-chip {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(139, 92, 246, 0.18);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

[data-theme='light'] .cr-inner-game-chip:hover {
  border-color: rgba(147, 51, 234, 0.35);
  background: rgba(250, 245, 255, 0.98);
}

.cr-inner-game-chip--live {
  background: rgba(254, 226, 226, 0.12);
  border-color: rgba(248, 113, 113, 0.35);
}

.cr-inner-game-chip--live:hover {
  background: rgba(248, 113, 113, 0.22);
  border-color: rgba(252, 165, 165, 0.55);
}

[data-theme='light'] .cr-inner-game-chip--live {
  background: rgba(254, 242, 242, 0.95);
  border-color: rgba(248, 113, 113, 0.28);
}

[data-theme='light'] .cr-inner-game-chip--live:hover {
  background: rgba(254, 226, 226, 0.98);
  border-color: rgba(239, 68, 68, 0.35);
}

.cr-review-h3 {
  margin: 0 0 0.45rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}
