:root {
  --bg-deep: #070b12;
  --bg-card: #0f1624;
  --bg-elevated: #151f32;
  --gold: #e8c547;
  --gold-dim: #b8942a;
  --emerald: #2dd4a8;
  --emerald-dim: #1a9b7a;
  --text: #f4f7fb;
  --text-muted: #9aa8c4;
  --border: rgba(232, 197, 71, 0.18);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --radius: 14px;
  --header-h: 72px;
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --max: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-deep);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(45, 212, 168, 0.12), transparent),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(232, 197, 71, 0.08), transparent);
  min-height: 100vh;
  overflow-x: hidden;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  background: var(--gold); color: #000; padding: 0.5rem 1rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* Fixed header — sticky breaks when body uses overflow-x: hidden */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(7, 11, 18, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}
.site-main {
  min-height: 60vh;
  padding-top: var(--header-h);
}
.site-header.is-scrolled {
  background: rgba(7, 11, 18, 0.96);
  box-shadow: var(--shadow);
}
.site-header__inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 clamp(0.75rem, 2vw, 1.5rem);
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: clamp(0.35rem, 1vw, 0.85rem);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.15rem;
  flex-shrink: 0;
}
.brand__icon {
  display: block;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.brand__text em { color: var(--emerald); font-style: normal; }

.site-nav {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  align-self: stretch;
  display: flex;
  align-items: stretch;
}
.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  height: 100%;
  gap: 15px;
}
.site-nav li {
  flex: 0 1 auto;
  min-width: 0;
  text-align: center;
  display: flex;
  align-items: stretch;
}
.site-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 clamp(0.35rem, 0.5vw, 0.65rem);
  color: var(--text-muted);
  text-decoration: none;
  font-size: clamp(0.68rem, 0.95vw, 0.82rem);
  font-weight: 500;
  white-space: nowrap;
  border-radius: 0;
  transition: color 0.2s, background 0.2s;
  overflow: hidden;
  text-overflow: ellipsis;
}
.site-nav a:hover,
.site-nav a.is-active {
  color: var(--gold);
  background: rgba(232, 197, 71, 0.08);
}

.header-actions { display: flex; gap: 0.5rem; flex-shrink: 0; align-items: center; }
.language-switcher {
  position: relative;
  flex-shrink: 0;
}
.language-switcher summary {
  list-style: none;
  cursor: pointer;
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 0.88rem;
  background: rgba(255,255,255,0.03);
}
.language-switcher summary::-webkit-details-marker { display: none; }
.language-switcher__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.5rem);
  min-width: 180px;
  display: grid;
  gap: 0.15rem;
  padding: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-card);
  box-shadow: var(--shadow);
}
.language-switcher__menu a {
  color: var(--text);
  text-decoration: none;
  padding: 0.4rem 0.5rem;
  border-radius: 8px;
  font-size: 0.92rem;
}
.language-switcher__menu a:hover,
.language-switcher__menu a[aria-current="true"] {
  background: rgba(232, 197, 71, 0.08);
  color: var(--gold);
}

@media (min-width: 1025px) and (max-width: 1320px) {
  .brand { font-size: 1rem; }
  .brand__icon { width: 2rem; height: 2rem; }
  .site-nav a { font-size: 0.68rem; }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-elevated);
  cursor: pointer;
}
.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--gold);
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-sm { padding: 0.45rem 0.9rem; font-size: 0.85rem; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: #0a0f18;
  box-shadow: 0 8px 24px rgba(232, 197, 71, 0.25);
}
.btn-secondary {
  background: var(--bg-elevated);
  color: var(--emerald);
  border: 1px solid rgba(45, 212, 168, 0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn-purple {
  background: linear-gradient(135deg, #8b2a9a, #640573);
  color: #f8f0fa;
  border: 1px solid rgba(139, 42, 154, 0.55);
  box-shadow: 0 8px 24px rgba(100, 5, 115, 0.45);
}
.btn-purple:hover {
  background: linear-gradient(135deg, #9a35ab, #640573);
  box-shadow: 0 10px 28px rgba(100, 5, 115, 0.6);
  color: #fff;
}


/* Hero homepage */
.hero {
  position: relative;
  min-height: min(72vh, 720px);
  padding: 4rem 1.25rem 5rem;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("/img/misc/hero2.png") center center / cover no-repeat;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(7, 17, 26, 0.92) 0%,
    rgba(7, 17, 26, 0.78) 18%,
    rgba(7, 17, 26, 0.48) 32%,
    rgba(7, 17, 26, 0.2) 42%,
    transparent 50%
  );
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}
.hero__badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(45, 212, 168, 0.12);
  color: var(--emerald);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  font-weight: 800;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.55);
}
.hero h1 span { color: var(--gold); }
.hero__lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 32rem;
  margin: 0 0 1.75rem;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.5);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* Sections */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.25rem;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: normal;
}
.section__sub {
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: none;
  margin: 0 0 1.5rem;
  white-space: nowrap;
}

.card-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  align-items: stretch;
}
.card-grid .casino-card {
  height: 100%;
}
.casino-card__actions {
  margin-top: auto;
  padding-top: 0.85rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.casino-card__actions .btn {
  min-width: 10.5rem;
  justify-content: center;
}
.card-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .card-grid--3 { grid-template-columns: 1fr; }
}
.casino-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.casino-card:hover {
  border-color: rgba(232, 197, 71, 0.45);
  transform: translateY(-4px);
}
.casino-card--has-shot {
  padding: 0;
  overflow: hidden;
  gap: 0;
}
.casino-card--has-shot-lg {
  overflow: hidden;
}
.casino-card--has-shot .casino-card__shot-wrap {
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
}
.casino-card--has-shot .casino-card__shot-link,
.casino-card--has-shot .casino-card__shot {
  border-radius: inherit;
}
.casino-card--has-shot-lg:hover {
  z-index: 20;
  transform: none;
}
.card-grid .casino-card--has-shot-lg:hover {
  z-index: 25;
}
.casino-card__shot-wrap {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 2 / 1;
  background: var(--bg-elevated);
  flex-shrink: 0;
  z-index: 1;
}
.casino-card__shot-rating {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 3;
  pointer-events: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}
.casino-card__shot-overlay {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.casino-card__shot-overlay .review-save-btn--card {
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.45));
}
.casino-card__shot-lg {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  width: min(800px, calc(100vw - 2rem));
  max-width: 800px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 1000;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(232, 197, 71, 0.45);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.55);
  background: var(--bg-card);
}
.casino-card__shot-lg-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100vh - 2rem);
  object-fit: contain;
  object-position: center center;
}
.casino-card__shot-lg--visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
@media (hover: none) {
  .casino-card__shot-lg {
    display: none;
  }
}
.casino-card__shot-link {
  display: block;
  width: 100%;
  height: 100%;
}
.casino-card__shot {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
}
.casino-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
  padding: 1.5rem;
}
.casino-card--has-shot .casino-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
}
.casino-card--has-shot .casino-card__body > h3:first-child {
  margin-top: 0;
}
.casino-card__top {
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
}
.casino-card__top-end {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}
.strategy-save-btn--card {
  padding: 0.15rem;
  flex-shrink: 0;
}
.strategy-save-btn--card .strategy-save-btn__icon {
  width: 26px;
  height: 26px;
}
.casino-card__avatar {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--emerald));
  color: #071018; font-weight: 800; font-family: var(--font-display);
  display: flex; align-items: center; justify-content: center; font-size: 1.25rem;
}
.rating-badge {
  font-size: 0.8rem; font-weight: 700; padding: 0.35rem 0.65rem;
  border-radius: 999px; white-space: nowrap;
}
.rating-badge--high { background: #16a34a; color: #fff; }
.rating-badge--mid { background: #f97316; color: #111; }
.rating-badge--low { background: #dc2626; color: #fff; }
.rating-badge--neutral { background: var(--bg-elevated); color: var(--text-muted); }
.casino-card h3 { margin: 0; font-family: var(--font-display); font-size: 1.1rem; }
.casino-card h3 a { color: var(--text); text-decoration: none; }
.casino-card h3 a:hover { color: var(--gold); }
.casino-card p { margin: 0; color: var(--text-muted); font-size: 0.92rem; line-height: 1.5; }
.casino-card__meta { font-size: 0.82rem !important; color: var(--emerald) !important; }
.casino-card__bonus-tag {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
}
/* Strategy cards */
.casino-card--strategy {
  min-height: 100%;
}
.casino-card--strategy.casino-card--has-shot .casino-card__shot-wrap,
.casino-card__shot-wrap--400x250 {
  aspect-ratio: 400 / 250;
}
.strategy-gametype-pill {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0.4rem 0.55rem;
  border-radius: 8px;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
  letter-spacing: -0.02em;
  font-family: var(--font-display);
}
.strategy-gametype-pill--blackjack {
  background: linear-gradient(180deg, #e0f2fe 0%, #93c5fd 50%, #60a5fa 100%);
  color: #075985;
  box-shadow: 0 1px 6px rgba(96, 165, 250, 0.35);
}
.strategy-gametype-pill--roulette {
  background: linear-gradient(180deg, #fce7f3 0%, #f9a8d4 50%, #ec4899 100%);
  color: #9d174d;
  box-shadow: 0 1px 6px rgba(236, 72, 153, 0.35);
}
.strategy-gametype-pill--baccarat {
  background: linear-gradient(180deg, #ecfdf5 0%, #86efac 50%, #4ade80 100%);
  color: #14532d;
  box-shadow: 0 1px 6px rgba(74, 222, 128, 0.35);
}
.strategy-gametype-pill--slots {
  background: linear-gradient(180deg, #ffedd5 0%, #fdba74 50%, #f97316 100%);
  color: #9a3412;
  box-shadow: 0 1px 6px rgba(249, 115, 22, 0.35);
}
.strategy-gametype-pill--craps {
  background: linear-gradient(180deg, #fef9c3 0%, #fde047 50%, #eab308 100%);
  color: #713f12;
  box-shadow: 0 1px 6px rgba(234, 179, 8, 0.35);
}
.strategy-gametype-pill--texas-holdem {
  background: linear-gradient(180deg, #f5f0eb 0%, #d4a574 50%, #92400e 100%);
  color: #451a03;
  box-shadow: 0 1px 6px rgba(146, 64, 14, 0.35);
  font-size: 0.58rem;
  letter-spacing: -0.03em;
}
.strategy-gametype-pill--ultimate-holdem {
  background: linear-gradient(180deg, #f4f4f5 0%, #d4d4d8 50%, #a1a1aa 100%);
  color: #3f3f46;
  box-shadow: 0 1px 6px rgba(113, 113, 122, 0.35);
  font-size: 0.58rem;
  letter-spacing: -0.03em;
}
/* Strategies list */
.strategy-list-section { padding-top: 0; }
.strategy-card-grid {
  gap: 1.25rem;
}
.strategy-card-grid .casino-card--strategy {
  height: 100%;
}
.strategy-card-grid .casino-card--strategy.casino-card--has-shot .casino-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
}
.gametype-card-grid {
  display: grid;
  gap: 1.75rem;
}
.gametype-card {
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}
.gametype-card--blackjack,
.gametype-card--default {
  background: transparent;
  border: none;
  box-shadow: none;
}
.gametype-card__strategies {
  margin: 0;
  align-items: stretch;
}
.gametype-card__strategies .casino-card--strategy {
  height: 100%;
}
.strategy-filters .casino-filters__grid {
  grid-template-columns: 1.4fr repeat(3, minmax(140px, 1fr)) auto;
}
.cr-panel .strategy-detail__risk--high { color: #ff9a9a; }
.cr-panel .strategy-detail__risk--medium { color: #ffb450; }
.cr-panel .strategy-detail__risk--low { color: var(--emerald); }
/* Strategy detail (View page — /strategies/{slug}/) */
.strategy-detail-page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
}
.strategy-detail-page__hero {
  margin-bottom: 1.75rem;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.strategy-detail-page.gametype-card--blackjack .strategy-detail-page__hero {
  background: linear-gradient(
    145deg,
    rgba(186, 230, 253, 0.28) 0%,
    rgba(125, 211, 252, 0.16) 45%,
    rgba(56, 189, 248, 0.1) 100%
  );
  border-color: rgba(147, 197, 253, 0.4);
}
.strategy-detail-page__num {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.strategy-detail-page__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  line-height: 1.15;
}
.strategy-detail-page.gametype-card--blackjack .strategy-detail-page__title {
  color: #e0f2fe;
}
.strategy-detail-page__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}
.strategy-detail-page__author {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.strategy-detail__chip {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.85rem;
  background: rgba(45, 212, 168, 0.15);
  color: var(--emerald);
  border: 1px solid rgba(45, 212, 168, 0.35);
}
.strategy-detail-page__body { padding: 0; }
.strategy-detail__heading {
  margin: 0 0 1.15rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
}
.strategy-detail__panel {
  max-width: 48rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.strategy-detail__list {
  margin: 0 0 1.25rem;
  display: grid;
  gap: 1rem;
}
.strategy-detail__row dt {
  margin: 0 0 0.3rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}
.strategy-detail__row dd {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}
.strategy-detail__risk--high dd { color: #ff9a9a; }
.strategy-detail__risk--medium dd { color: #ffb450; }
.strategy-detail__risk--low dd { color: var(--emerald); }
.strategy-detail__warning {
  margin: 0 0 1.25rem;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted);
  background: rgba(255, 180, 80, 0.08);
  border: 1px solid rgba(255, 180, 80, 0.25);
  border-radius: 8px;
}
.strategy-detail__warning strong { color: #ffb450; }
.strategy-detail-page .cr-breadcrumb,
.page-intro .cr-breadcrumb {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.strategy-detail-page .cr-breadcrumb a,
.page-intro .cr-breadcrumb a { color: var(--emerald); }
/* Casino list — PVH Top Casino Picks */
.casino-top-picks {
  margin: 0 0 2rem;
  padding: 1.35rem 1.25rem 1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(232, 197, 71, 0.25);
}
.casino-top-picks__title {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}
.card-grid--top-picks {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 1100px) {
  .card-grid--top-picks { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .card-grid--top-picks { grid-template-columns: 1fr; }
}

/* Casino list filters */
.casino-list-section { padding-top: 0; }
.casino-list-section .casino-card {
  border: 2px solid var(--gold);
}
.casino-list-section .casino-card:hover {
  border-color: var(--gold);
}
.casino-list-section .casino-card--has-shot .casino-card__shot-wrap {
  border-radius: calc(var(--radius) - 2px) calc(var(--radius) - 2px) 0 0;
}
.casino-filters {
  margin-bottom: 1.25rem; padding: 1.15rem 1.25rem;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius);
}
.casino-filters__grid {
  display: grid; gap: 1rem;
  grid-template-columns: 1.4fr repeat(3, minmax(140px, 1fr)) auto;
  align-items: end;
}
.casino-filters__field { display: flex; flex-direction: column; gap: 0.35rem; min-width: 0; }
.casino-filters__label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text-muted);
}
.casino-filters__field input,
.casino-filters__field select {
  width: 100%; padding: 0.6rem 0.75rem; border-radius: 8px;
  border: 1px solid var(--border); background: var(--bg-elevated);
  color: var(--text); font: inherit; font-size: 0.92rem;
}
.casino-filters__field input:focus,
.casino-filters__field select:focus {
  outline: none; border-color: var(--emerald);
  box-shadow: 0 0 0 2px rgba(45, 212, 168, 0.2);
}
.casino-filters__actions { display: flex; align-items: flex-end; padding-bottom: 0.1rem; }
.casino-results-meta {
  margin: 0 0 1.25rem; font-size: 0.9rem; color: var(--text-muted);
}
#casino-results.is-loading,
#casino-pagination.is-loading { opacity: 0.55; pointer-events: none; transition: opacity 0.2s;
}
.casino-empty {
  text-align: center; padding: 3rem 1.5rem; color: var(--text-muted);
  background: var(--bg-card); border: 1px dashed var(--border); border-radius: var(--radius);
}
@media (max-width: 960px) {
  .casino-filters__grid { grid-template-columns: 1fr 1fr; }
  .casino-filters__field--search { grid-column: 1 / -1; }
  .casino-filters__actions { grid-column: 1 / -1; justify-content: flex-start; }
}
@media (max-width: 520px) {
  .casino-filters__grid { grid-template-columns: 1fr; }
}

.pagination {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  margin-top: 2.5rem; flex-wrap: wrap;
}
.pagination__info { color: var(--text-muted); font-size: 0.9rem; }

.page-intro { padding-bottom: 0; }

/* Casino review detail */
.casino-review { max-width: var(--max); margin: 0 auto; padding: 2rem 1.25rem 4rem; }
.casino-review__hero {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2rem;
}
.casino-review__hero-main {
  display: flex; gap: 1.5rem; align-items: flex-start; flex-wrap: wrap;
}
.casino-review__logo {
  width: 100px; height: 100px; object-fit: contain;
  border-radius: 12px; background: #fff; padding: 6px;
}
.casino-review__breadcrumb { margin: 0 0 0.5rem; font-size: 0.85rem; color: var(--text-muted); }
.casino-review__breadcrumb a { color: var(--emerald); }
.casino-review__hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 0 0.75rem;
}
.casino-review__lead { color: var(--text-muted); margin: 0; max-width: 42rem; }
.casino-review__scores {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.score-box {
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
}
.score-box__label { display: block; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.35rem; }
.score-box__value { display: block; font-family: var(--font-display); font-size: 1.25rem; color: var(--gold); }
.score-box__meta { font-size: 0.8rem; color: var(--text-muted); }
.casino-review__cta { margin-top: 1.25rem; margin-bottom: 0; }

.detail-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.detail-section:last-child { border-bottom: 0; }
.detail-section h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 1.25rem;
  color: var(--gold);
}
.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem 2rem;
  margin: 0;
}
.spec-grid > div { margin: 0; }
.spec-grid dt { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin-bottom: 0.25rem; }
.spec-grid dd { margin: 0; font-weight: 500; }
.spec-grid--full { grid-column: 1 / -1; }
.detail-note { color: var(--text-muted); margin-top: 1rem; line-height: 1.6; }
.rg-list { margin: 0; padding-left: 1.25rem; color: var(--text-muted); }
.rg-list li { margin-bottom: 0.35rem; }
.tag-pill {
  display: inline-block;
  margin: 0.25rem 0.35rem 0.25rem 0;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(45, 212, 168, 0.12);
  color: var(--emerald);
  font-size: 0.8rem;
}
.detail-source { color: var(--text-muted); margin-top: 2rem; }

/* Casino review v2 */
.casino-review--v2 { max-width: var(--max); margin: 0 auto; padding: 0 0 4rem; }
.cr-back-pill {
  position: fixed;
  top: calc(var(--header-h) + 0.75rem);
  left: max(1rem, calc((100vw - var(--max)) / 2 + 1rem));
  z-index: 901;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(7, 11, 18, 0.82);
  border: 1px solid rgba(232, 197, 71, 0.35);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.cr-back-pill:hover {
  background: rgba(15, 22, 36, 0.94);
  border-color: rgba(232, 197, 71, 0.65);
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .cr-back-pill {
    left: 1rem;
    max-width: calc(100vw - 2rem);
  }
}
.casino-review--v2 .cr-hero {
  height: 400px;
}
.casino-review--v2 .cr-hero__content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-top: 0;
  padding-bottom: 2rem;
}
.casino-review--v2 .cr-hero__main {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  min-height: 0;
}
.casino-review--v2 .cr-hero__aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  margin: 0;
  padding: 0;
  gap: 0;
}
.casino-review--v2 .cr-hero__rating-col {
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
}
.cr-hero__logo-flag {
  margin: 0;
  padding: 0;
  pointer-events: none;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
  max-width: min(280px, 90vw);
}
.cr-hero__logo-flag-inner {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
  line-height: 0;
  min-width: 0;
  min-height: 0;
  transform: scale(0.8);
  transform-origin: top center;
}
.cr-hero__logo-flag-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: fill;
  object-position: center;
}
.cr-hero__logo-flag-casino {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0;
  min-width: 150px;
  width: auto;
  max-width: min(200px, 75vw);
  max-height: min(130px, 32vw);
  height: auto;
  object-fit: contain;
  object-position: center;
}
@media (max-width: 768px) {
  .cr-hero__logo-flag-casino {
    min-width: 150px;
    max-width: min(180px, 80vw);
    max-height: min(110px, 30vw);
  }
}
.casino-review--v2 .review-hero-actions {
  padding: 0.55rem 0.85rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #f7dc6f 0%, #e8c547 38%, #d4af37 72%, #c9a227 100%);
  border: 1px solid rgba(26, 18, 8, 0.15);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 4px 16px rgba(0, 0, 0, 0.2);
}
.casino-review--v2 .review-hero-actions .strategy-save-btn {
  color: #1a1208;
}
.casino-review--v2 .review-hero-actions .strategy-vote__btn {
  background: rgba(255, 255, 255, 0.45);
  border-color: rgba(26, 18, 8, 0.15);
  color: #1a1208;
}
.casino-review--v2 .review-hero-actions .strategy-vote__btn--up:hover:not(:disabled),
.casino-review--v2 .review-hero-actions .strategy-vote__btn--up.is-active {
  color: #15803d;
  border-color: rgba(21, 128, 61, 0.45);
  background: rgba(255, 255, 255, 0.72);
}
.casino-review--v2 .review-hero-actions .strategy-vote__btn--down:hover:not(:disabled),
.casino-review--v2 .review-hero-actions .strategy-vote__btn--down.is-active {
  color: #b91c1c;
  border-color: rgba(185, 28, 28, 0.45);
  background: rgba(255, 255, 255, 0.72);
}
.casino-review--v2 .review-hero-actions .strategy-vote__net {
  color: #1a1208;
}
.casino-review--v2 .review-hero-actions .strategy-vote__total {
  color: rgba(26, 18, 8, 0.75);
}
.cr-hero {
  position: relative; margin-bottom: 2rem; overflow: hidden;
  border-radius: 0 0 var(--radius) var(--radius);
}
.casino-review--has-offer-bar .cr-hero {
  margin-bottom: 0;
  border-radius: 0;
}
.cr-offer-bar {
  background: linear-gradient(135deg, #f7dc6f 0%, #e8c547 38%, #d4af37 72%, #c9a227 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 2px solid #a8841f;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 6px 24px rgba(0, 0, 0, 0.22);
  margin-bottom: 2rem;
}
.cr-offer-bar__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.55rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  text-align: center;
}
.cr-offer-bar__label {
  flex-shrink: 0;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1a1208;
  padding: 0.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  border: 1px solid rgba(26, 18, 8, 0.12);
  box-shadow: 0 1px 4px rgba(26, 18, 8, 0.08);
}
.cr-offer-bar__text {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  line-height: 1.45;
  color: #1a1208;
  letter-spacing: -0.01em;
}
.cr-hero__bg {
  position: absolute; inset: 0;
  background: linear-gradient(125deg, #0f1624 0%, #1a2740 45%, #0d1f1a 100%);
  pointer-events: none;
}
.cr-hero--has-image .cr-hero__bg {
  background: #070b12;
}
.cr-hero__bg-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.cr-hero__content {
  position: relative;
  z-index: 1;
  padding: 2.5rem 1.25rem 2rem;
  max-width: var(--max);
  margin: 0 auto;
}
.cr-breadcrumb { margin: 0 0 1rem; font-size: 0.85rem; color: var(--text-muted); }
.cr-breadcrumb a { color: var(--emerald); text-decoration: none; }
.cr-hero__main {
  display: flex; flex-wrap: wrap; gap: 2rem; align-items: flex-start; justify-content: space-between;
}
.cr-hero__brand { display: flex; gap: 1.25rem; align-items: flex-start; flex: 1; min-width: 260px; }
.cr-hero__avatar {
  width: 88px; height: 88px; flex-shrink: 0; border-radius: 18px;
  background: linear-gradient(145deg, var(--gold), var(--emerald));
  color: #071018; font-size: 2.5rem; font-weight: 800; font-family: var(--font-display);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}
.casino-card__avatar.casino-card__avatar--blackjack,
.casino-card__avatar.casino-card__avatar--roulette,
.casino-card__avatar.casino-card__avatar--baccarat,
.casino-card__avatar.casino-card__avatar--craps,
.casino-card__avatar.casino-card__avatar--texas-holdem,
.casino-card__avatar.casino-card__avatar--ultimate-holdem,
.casino-card__avatar.casino-card__avatar--slots {
  width: auto;
  height: auto;
  min-width: 0;
  padding: 0.4rem 0.55rem;
  border-radius: 8px;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
  letter-spacing: -0.02em;
}
.casino-card__avatar.casino-card__avatar--blackjack {
  background: linear-gradient(180deg, #e0f2fe 0%, #93c5fd 50%, #60a5fa 100%) !important;
  color: #075985 !important;
  box-shadow: 0 1px 6px rgba(96, 165, 250, 0.35);
}
.casino-card__avatar.casino-card__avatar--roulette {
  background: linear-gradient(180deg, #fce7f3 0%, #f9a8d4 50%, #ec4899 100%) !important;
  color: #9d174d !important;
  box-shadow: 0 1px 6px rgba(236, 72, 153, 0.35);
}
.casino-card__avatar.casino-card__avatar--baccarat {
  background: linear-gradient(180deg, #ecfdf5 0%, #86efac 50%, #4ade80 100%) !important;
  color: #14532d !important;
  box-shadow: 0 1px 6px rgba(74, 222, 128, 0.35);
}
.casino-card__avatar.casino-card__avatar--craps {
  background: linear-gradient(180deg, #fef9c3 0%, #fde047 50%, #eab308 100%) !important;
  color: #713f12 !important;
  box-shadow: 0 1px 6px rgba(234, 179, 8, 0.35);
}
.casino-card__avatar.casino-card__avatar--texas-holdem {
  background: linear-gradient(180deg, #f5f0eb 0%, #d4a574 50%, #92400e 100%) !important;
  color: #451a03 !important;
  box-shadow: 0 1px 6px rgba(146, 64, 14, 0.35);
}
.casino-card__avatar.casino-card__avatar--ultimate-holdem {
  background: linear-gradient(180deg, #f4f4f5 0%, #d4d4d8 50%, #a1a1aa 100%) !important;
  color: #3f3f46 !important;
  box-shadow: 0 1px 6px rgba(113, 113, 122, 0.35);
}
.casino-card__avatar.casino-card__avatar--slots {
  background: linear-gradient(180deg, #ffedd5 0%, #fdba74 50%, #f97316 100%) !important;
  color: #9a3412 !important;
  box-shadow: 0 1px 6px rgba(249, 115, 22, 0.35);
}
.cr-hero__avatar.cr-hero__avatar--blackjack,
.cr-hero__avatar.cr-hero__avatar--roulette,
.cr-hero__avatar.cr-hero__avatar--baccarat,
.cr-hero__avatar.cr-hero__avatar--craps,
.cr-hero__avatar.cr-hero__avatar--texas-holdem,
.cr-hero__avatar.cr-hero__avatar--ultimate-holdem,
.cr-hero__avatar.cr-hero__avatar--slots {
  width: auto;
  height: auto;
  min-width: 0;
  padding: 0.65rem 0.9rem;
  border-radius: 12px;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  line-height: 1.1;
  white-space: nowrap;
  letter-spacing: -0.02em;
}
.cr-hero__avatar.cr-hero__avatar--blackjack {
  background: linear-gradient(180deg, #e0f2fe 0%, #93c5fd 50%, #60a5fa 100%) !important;
  color: #075985 !important;
  box-shadow: 0 4px 16px rgba(96, 165, 250, 0.35);
}
.cr-hero__avatar.cr-hero__avatar--roulette {
  background: linear-gradient(180deg, #fce7f3 0%, #f9a8d4 50%, #ec4899 100%) !important;
  color: #9d174d !important;
  box-shadow: 0 4px 16px rgba(236, 72, 153, 0.35);
}
.cr-hero__avatar.cr-hero__avatar--baccarat {
  background: linear-gradient(180deg, #ecfdf5 0%, #86efac 50%, #4ade80 100%) !important;
  color: #14532d !important;
  box-shadow: 0 4px 16px rgba(74, 222, 128, 0.35);
}
.cr-hero__avatar.cr-hero__avatar--craps {
  background: linear-gradient(180deg, #fef9c3 0%, #fde047 50%, #eab308 100%) !important;
  color: #713f12 !important;
  box-shadow: 0 4px 16px rgba(234, 179, 8, 0.35);
}
.cr-hero__avatar.cr-hero__avatar--texas-holdem {
  background: linear-gradient(180deg, #f5f0eb 0%, #d4a574 50%, #92400e 100%) !important;
  color: #451a03 !important;
  box-shadow: 0 4px 16px rgba(146, 64, 14, 0.35);
}
.cr-hero__avatar.cr-hero__avatar--ultimate-holdem {
  background: linear-gradient(180deg, #f4f4f5 0%, #d4d4d8 50%, #a1a1aa 100%) !important;
  color: #3f3f46 !important;
  box-shadow: 0 4px 16px rgba(113, 113, 122, 0.35);
}
.cr-hero__avatar.cr-hero__avatar--slots {
  background: linear-gradient(180deg, #ffedd5 0%, #fdba74 50%, #f97316 100%) !important;
  color: #9a3412 !important;
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.35);
}
.cr-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 1rem;
  line-height: 1.15;
}
.cr-hero__chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
  font-size: 0.78rem; padding: 0.3rem 0.7rem; border-radius: 999px;
  background: rgba(255,255,255,0.08); border: 1px solid var(--border); color: var(--text-muted);
}
.chip--gold {
  color: var(--gold);
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(212, 175, 55, 0.12);
}
.cr-hero__rating-col {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.strategy-hero-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
  width: auto;
  max-width: none;
  flex-shrink: 0;
}
.strategy-vote {
  width: auto;
  text-align: center;
  flex-shrink: 0;
}
.strategy-vote__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.strategy-vote__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}
.strategy-vote__btn:hover:not(:disabled) {
  transform: translateY(-1px);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
}
.strategy-vote__btn:focus-visible {
  outline: 2px solid var(--emerald);
  outline-offset: 2px;
}
.strategy-vote__btn--up:hover:not(:disabled),
.strategy-vote__btn--up.is-active {
  color: #4ade80;
  border-color: rgba(74, 222, 128, 0.45);
  background: rgba(74, 222, 128, 0.12);
}
.strategy-vote__btn--down:hover:not(:disabled),
.strategy-vote__btn--down.is-active {
  color: #f87171;
  border-color: rgba(248, 113, 113, 0.45);
  background: rgba(248, 113, 113, 0.12);
}
.strategy-vote__btn:disabled {
  cursor: default;
}
.strategy-vote--locked .strategy-vote__btn:not(.is-active) {
  display: none;
}
.strategy-vote--locked .strategy-vote__btn.is-active {
  opacity: 1;
  pointer-events: none;
}
.strategy-vote__total {
  margin: 0.45rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.35rem;
}
.strategy-vote__net {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.strategy-vote__total-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.cr-score-ring {
  text-align: center; padding: 1.25rem 1.5rem;
  border: 2px solid transparent;
  border-radius: 50%; width: 120px; height: 120px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cr-score-ring__value { font-family: var(--font-display); font-size: 2rem; font-weight: 800; line-height: 1; }
.cr-hero.rating-badge--high .cr-score-ring {
  background: #16a34a;
  border-color: #16a34a;
}
.cr-hero.rating-badge--high .cr-score-ring__value { color: #fff; }
.cr-hero.rating-badge--mid .cr-score-ring {
  background: #f97316;
  border-color: #f97316;
}
.cr-hero.rating-badge--mid .cr-score-ring__value { color: #111; }
.cr-hero.rating-badge--low .cr-score-ring {
  background: #dc2626;
  border-color: #dc2626;
}
.cr-hero.rating-badge--low .cr-score-ring__value { color: #fff; }
.cr-hero.rating-badge--neutral .cr-score-ring {
  background: rgba(0, 0, 0, 0.35);
  border-color: var(--border);
}
.cr-hero.rating-badge--neutral .cr-score-ring__value { color: var(--text-muted); }
.strategy-save-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  border: none;
  background: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.15s ease, transform 0.15s ease;
}
.strategy-save-btn:hover { color: #f472b6; transform: scale(1.06); }
.strategy-save-btn:focus-visible {
  outline: 2px solid #f472b6;
  outline-offset: 3px;
  border-radius: 8px;
}
.strategy-save-btn__icon { display: block; }
.strategy-save-btn__heart-fill { display: none; }
.strategy-save-btn__heart-outline { display: block; }
.strategy-save-btn.is-saved { color: #f43f5e; }
.strategy-save-btn.is-saved .strategy-save-btn__heart-fill { display: block; }
.strategy-save-btn.is-saved .strategy-save-btn__heart-outline { display: none; }
.members-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
  margin-top: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.members-nav__item {
  border: none;
  background: none;
  padding: 0.7rem 1rem;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.members-nav__item:hover { color: var(--text); }
.members-nav__item.is-active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.members-nav__item:focus-visible {
  outline: 2px solid var(--emerald);
  outline-offset: 2px;
  border-radius: 6px;
}
.members-panels {
  margin-top: 1.75rem;
  text-align: left;
}
.members-panel { display: none; }
.members-panel.is-active { display: block; }
.members-panel__empty {
  color: var(--text-muted);
  max-width: 36rem;
  line-height: 1.55;
  margin: 0 0 1rem;
}
.members-panel__heading {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.85rem;
}
.members-panel__grid { margin-top: 0; }
.members-complaints-list { margin-bottom: 1.75rem; }
.members-complaints-list__items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.members-complaints-list__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  padding: 0.85rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.members-complaints-list__main {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.members-complaints-list__casino {
  font-size: 0.88rem;
  color: var(--text-muted);
}
.members-complaints-list__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: capitalize;
}
.members-complaints-list__status {
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: rgba(45, 212, 168, 0.12);
  color: var(--emerald);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.members-page--logged-in .members-panel .form-card {
  text-align: left;
  max-width: 520px;
}
.cr-score-ring__label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-top: 0.2rem; }
.cr-score-ring__of { font-size: 0.65rem; color: var(--text-muted); }
.cr-bonus-banner {
  margin-top: 1.5rem; padding: 1.25rem 1.5rem;
  background: linear-gradient(90deg, rgba(232,197,71,0.15), rgba(45,212,168,0.1));
  border: 1px solid rgba(232, 197, 71, 0.35); border-radius: var(--radius);
}
.cr-bonus-banner__tag {
  display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--gold); font-weight: 700; margin-bottom: 0.35rem;
}
.cr-bonus-banner p { margin: 0; font-size: 1.05rem; line-height: 1.5; }
.cr-hero__actions { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.cr-body { max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; }
.casino-review--v2 .cr-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.casino-review--v2 .cr-body > .cr-stats-row,
.casino-review--v2 .cr-body > .cr-panel,
.casino-review--v2 .cr-body > .cr-review {
  margin: 0;
}
.casino-review--v2 .cr-body > .cr-footer-note {
  margin: 0;
}
.casino-review--v2 .cr-body > .cr-disclaimer {
  margin-top: 0;
}
.cr-stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: start;
}
.casino-review--v2 .cr-stats-row {
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 0;
}
.cr-stats-row--cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.cr-stats-row--cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.cr-stats-row--cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.casino-review--v2 .cr-stats-row--cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.casino-review--v2 .cr-stats-row--cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.casino-review--v2 .cr-stats-row--cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.cr-stats-row--company {
  margin-top: 0;
}
.cr-stats-row--languages {
  margin-top: 0;
}
.cr-stats-row--proscons {
  margin-top: 0;
}
.cr-stats-row--languages .cr-stat__v {
  font-weight: 500;
  line-height: 1.5;
}
.cr-proscons-list.cr-games-checklist {
  grid-template-columns: 1fr;
  gap: 0.55rem;
}
.cr-proscons-list .cr-games-checklist__item--no .cr-games-checklist__label {
  color: inherit;
}
.cr-review {
  margin-top: 0;
  margin-bottom: 0;
}
.cr-review__body {
  position: relative;
}
.cr-review__body--collapsed {
  max-height: 300px;
  overflow: hidden;
}
.cr-review__body--collapsed .cr-review__fade {
  opacity: 1;
}
.cr-review__body--expanded {
  max-height: none;
}
.cr-review__body--expanded .cr-review__fade {
  opacity: 0;
  visibility: hidden;
}
.cr-review__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(15, 22, 36, 0), var(--bg-card) 78%);
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.cr-review__content p {
  margin: 0 0 1rem;
  line-height: 1.65;
  font-weight: 500;
}
.cr-review__content p:last-child {
  margin-bottom: 0;
}
.cr-review__subheading {
  margin: 1.35rem 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--gold);
}
.cr-review__subheading:first-child {
  margin-top: 0;
}
.cr-review__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(232, 197, 71, 0.35);
  border-radius: 12px;
  background: rgba(232, 197, 71, 0.08);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.cr-review__toggle:hover {
  background: rgba(232, 197, 71, 0.14);
  border-color: rgba(232, 197, 71, 0.55);
}
.cr-review__toggle[hidden] {
  display: none;
}
.cr-stat--wide {
  grid-column: 1 / -1;
}
.cr-stat__v--text {
  font-weight: 500;
}
.cr-stat__v--text p {
  margin: 0 0 0.85rem;
}
.cr-stat__v--text p:last-child {
  margin-bottom: 0;
}
.cr-text-lines {
  margin: 0;
  padding-left: 1.15rem;
}
.cr-text-lines li + li {
  margin-top: 0.35rem;
}
.cr-stat {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px;
  padding: 1rem 1.15rem;
  min-width: 0;
  overflow: visible;
}
.cr-stat--checklist {
  overflow: visible;
}
.cr-stat--checklist .cr-stat__v,
.cr-stat--payments .cr-stat__v,
.cr-stat--providers .cr-stat__v {
  font-weight: 500;
}
.cr-stat--checklist .cr-games-checklist-columns {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.45rem 0.75rem;
}
.cr-stat--checklist .cr-games-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.cr-stat--checklist .cr-games-checklist__label {
  font-size: 0.85rem;
}
.cr-stat--payments .cr-brand-logos-columns,
.cr-stat--providers .cr-brand-logos-columns {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.65rem 0.75rem;
  overflow: visible;
}
.cr-stat--payments,
.cr-stat--providers {
  overflow: visible;
}
.cr-brand-logos {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.cr-brand-logos__item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
  position: relative;
}
.cr-brand-logos__logo-wrap {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
}
.cr-brand-logos__logo {
  display: block;
  width: 40px;
  height: 28px;
  object-fit: contain;
  object-position: center;
  background: #fff;
  border-radius: 6px;
  padding: 2px 4px;
}
.cr-brand-logos__popup {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.5rem);
  transform: translateX(-50%);
  width: 200px;
  padding: 0.65rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease, visibility 0.15s ease, transform 0.15s ease;
  z-index: 30;
}
.cr-brand-logos__popup-img {
  display: block;
  width: 200px;
  max-width: 100%;
  height: auto;
  max-height: 140px;
  object-fit: contain;
  object-position: center;
}
.cr-brand-logos__logo-wrap:hover .cr-brand-logos__popup,
.cr-brand-logos__logo-wrap:focus-within .cr-brand-logos__popup {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-2px);
}
.cr-brand-logos__logo-wrap:hover,
.cr-brand-logos__logo-wrap:focus-within {
  z-index: 31;
}
.cr-brand-logos__label {
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.3;
}
.cr-screenshots {
  overflow: visible;
}
.cr-screenshots__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: visible;
}
.cr-screenshots__item {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.cr-screenshots__icon-wrap {
  position: relative;
  display: block;
  width: 100%;
  max-width: 120px;
  margin: 0 auto;
}
.cr-screenshots__icon {
  display: block;
  width: 100%;
  max-width: 120px;
  height: auto;
  margin: 0 auto;
}
.cr-screenshots__label {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--text-muted);
}
.cr-screenshots__item--inactive .cr-screenshots__label {
  opacity: 0.55;
}
.cr-screenshots__item--inactive .cr-screenshots__icon {
  opacity: 0.35;
  filter: grayscale(1);
}
.cr-screenshots__popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  width: min(800px, calc(100vw - 2rem));
  padding: 0;
  background: var(--bg-card);
  border: 1px solid rgba(232, 197, 71, 0.45);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 1000;
}
.cr-screenshots__popup-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  object-fit: contain;
  object-position: center center;
  background: #0a1020;
}
.cr-screenshots__popup--mobile {
  width: min(calc(90vh * 347 / 750), calc(100vw - 2rem));
}
.cr-screenshots__popup--mobile .cr-screenshots__popup-img {
  display: block;
  height: 90vh;
  width: min(calc(90vh * 347 / 750), calc(100vw - 2rem));
  max-height: 90vh;
  max-width: calc(100vw - 2rem);
  object-fit: contain;
  object-position: top center;
  background: #0a1020;
}
.cr-screenshots__icon-wrap:hover .cr-screenshots__popup,
.cr-screenshots__icon-wrap:focus-within .cr-screenshots__popup {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
.cr-screenshots__icon-wrap:hover,
.cr-screenshots__icon-wrap:focus-within {
  z-index: 1001;
}
@media (max-width: 1100px) {
  .cr-stat--checklist .cr-games-checklist-columns {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .cr-stat--payments .cr-brand-logos-columns,
  .cr-stat--providers .cr-brand-logos-columns {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .cr-screenshots__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .cr-stat--checklist .cr-games-checklist-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .cr-stat--payments .cr-brand-logos-columns,
  .cr-stat--providers .cr-brand-logos-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .cr-screenshots__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 1100px) {
  .cr-stats-row--cols-4,
  .casino-review--v2 .cr-stats-row--cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .cr-stats-row {
    grid-template-columns: 1fr;
  }
  .cr-stats-row--cols-3,
  .casino-review--v2 .cr-stats-row--cols-3,
  .cr-stats-row--cols-2,
  .casino-review--v2 .cr-stats-row--cols-2,
  .cr-stats-row--cols-4,
  .casino-review--v2 .cr-stats-row--cols-4 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .cr-stat--checklist .cr-games-checklist-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cr-stat--payments .cr-brand-logos-columns,
  .cr-stat--providers .cr-brand-logos-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.cr-stat__k { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 0.35rem; }
.cr-stat__v { display: block; font-weight: 600; font-size: 0.95rem; line-height: 1.35; }
.cr-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem;
}
.cr-panel {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem;
}
.cr-stat h2,
.cr-panel h2 {
  font-family: var(--font-display); font-size: 1.15rem; margin: 0 0 1rem;
  color: var(--gold);
}
.cr-panel--wide { grid-column: 1 / -1; }
.cr-panel__sub { font-size: 0.85rem; margin: 1rem 0 0.5rem; color: var(--text-muted); }
.cr-games-checklists { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 1.25rem; }
.cr-games-checklist-block:first-child .cr-panel__sub { margin-top: 0; }
.cr-games-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.55rem 1.25rem;
}
.cr-games-checklist__item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}
.cr-games-checklist__icon {
  flex-shrink: 0;
  width: 1.15rem;
  height: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
}
.cr-games-checklist__icon--yes {
  background: rgba(45, 212, 168, 0.14);
  color: var(--emerald);
}
.cr-games-checklist__icon--no {
  background: rgba(239, 68, 68, 0.14);
  color: #ef4444;
}
.cr-games-checklist__item--no .cr-games-checklist__label {
  color: var(--text-muted);
}
.cr-games-checklist__label {
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.35;
}
a.cr-offer-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
a.cr-offer-link:hover,
a.cr-offer-link:focus-visible {
  color: inherit;
  text-decoration: none;
}
.casino-offers-section {
  position: relative;
  padding-top: 3rem;
}
.casino-offers-header__title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 0;
}
.casino-offers-header__logo {
  flex-shrink: 0;
  width: 48px;
  height: 34px;
  object-fit: contain;
  border-radius: 4px;
}
.casino-offers-header__lead {
  margin: 0.65rem 0 0;
  color: var(--text-muted);
}
.cr-specs { margin: 0; }
.cr-specs > div { margin-bottom: 0.85rem; }
.cr-specs dt { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin-bottom: 0.2rem; }
.cr-specs dd { margin: 0; font-weight: 500; line-height: 1.45; }
.cr-specs a { color: var(--emerald); }

/* Support contact block */
.cr-support { display: flex; flex-direction: column; gap: 1.75rem; }
.cr-support__group { display: flex; flex-direction: column; gap: 0.85rem; }
.cr-support__title {
  margin: 0; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-muted);
}
.cr-support__emails {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}
.cr-support-email-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}
.cr-support-email {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(15, 22, 36, 0.6);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  transition: border-color 0.2s, background 0.2s;
}
.cr-support-email:hover {
  border-color: rgba(45, 212, 168, 0.45);
  background: rgba(45, 212, 168, 0.06);
  text-decoration: none;
}
.cr-support-email:focus-visible {
  outline: 2px solid var(--emerald);
  outline-offset: 2px;
}
.cr-support-email__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(45, 212, 168, 0.12);
  color: var(--emerald);
}
.cr-support-email__addr {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--emerald);
  white-space: nowrap;
  flex: 0 0 auto;
}
.cr-support-email-item .cr-support-email__meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  padding-left: 0.15rem;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .cr-support__emails {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .cr-support__emails {
    grid-template-columns: 1fr;
  }
}
.cr-support__chats { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cr-support-chat {
  display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.55rem 1rem;
  border-radius: 999px; background: rgba(45, 212, 168, 0.1);
  border: 1px solid rgba(45, 212, 168, 0.28); font-size: 0.9rem; color: var(--emerald);
}
.cr-support-chat__dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--emerald);
  box-shadow: 0 0 0 3px rgba(45, 212, 168, 0.25);
  animation: cr-pulse 2s ease-in-out infinite;
}
@keyframes cr-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}
.cr-support__phones {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 0.65rem;
}
.cr-support-phone {
  display: flex; flex-direction: column; gap: 0.35rem; padding: 0.85rem 1rem;
  border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--bg-elevated);
}
.cr-support-phone__region {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--gold);
}
.cr-support-phone__number {
  font-size: 0.95rem; font-weight: 600; line-height: 1.35;
  color: var(--text); text-decoration: none; word-break: break-word;
}
a.cr-support-phone__number:hover { color: var(--emerald); }
.cr-support-phone__badge {
  align-self: flex-start; font-size: 0.68rem; font-weight: 600;
  padding: 0.15rem 0.5rem; border-radius: 4px;
  background: rgba(212, 175, 55, 0.15); color: var(--gold);
  letter-spacing: 0.02em;
}
.cr-lead-line { color: var(--text-muted); margin: 0 0 1rem; }
.cr-muted { color: var(--text-muted); margin: 0; }
.pill-cloud { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.pill {
  display: inline-block; padding: 0.35rem 0.75rem; border-radius: 999px;
  background: rgba(45, 212, 168, 0.12); color: var(--emerald); font-size: 0.82rem;
  border: 1px solid rgba(45, 212, 168, 0.25);
}
.pill--outline { background: transparent; color: var(--text-muted); border-color: var(--border); }
.pill--sm { font-size: 0.75rem; padding: 0.28rem 0.6rem; }
.pill--more { background: var(--bg-elevated); color: var(--gold); border-color: var(--border); }
.cr-footer-note { color: var(--text-muted); margin: 1.5rem 0 0; }
.cr-disclaimer {
  margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border);
  font-size: 0.82rem; color: var(--text-muted); line-height: 1.5;
}
.casino-review--has-sticky-banner {
  padding-bottom: calc(4rem + 62px);
}
.cr-sticky-banner {
  z-index: 900;
}
.cr-sticky-banner--bottom {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 62px;
  max-width: 100vw;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}
.cr-sticky-banner--bottom .cr-sticky-banner__bg {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.cr-sticky-banner--bottom .cr-sticky-banner__inner--bottom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  transform: translateY(5px);
}
.cr-sticky-banner__table {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
  table-layout: fixed;
}
.cr-sticky-banner__cell {
  width: 50%;
  padding: 5px;
  vertical-align: middle;
}
.cr-sticky-banner__cell--visit {
  text-align: right;
}
.cr-sticky-banner__cell--claim {
  text-align: left;
}
.cr-sticky-banner--bottom .cr-sticky-banner__btn-img {
  display: inline-block;
  line-height: 0;
  text-decoration: none;
  vertical-align: middle;
}
.cr-sticky-banner--bottom .cr-sticky-banner__btn-img img {
  display: block;
  width: 150px;
  height: auto;
  max-width: 100%;
}
.cr-sticky-banner--bottom .cr-sticky-banner__btn-img:hover {
  opacity: 0.85;
}
.cr-sticky-banner--top {
  position: fixed;
  top: var(--header-h);
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  max-width: calc(100vw - 2rem);
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}
.cr-sticky-banner__bg {
  display: block;
  width: 100%;
  height: auto;
}
.cr-sticky-banner--top .cr-sticky-banner__inner--top {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 1.5rem;
  pointer-events: none;
  transform: translateY(-5px);
}
.cr-sticky-banner--top .cr-sticky-banner__name {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 1.45rem;
  color: #111;
  text-shadow: none;
}
.cr-sticky-banner__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-items: center;
  gap: 0.75rem;
  margin-top: 5px;
  margin-bottom: 20px;
}
.cr-sticky-banner__inner--top {
  grid-template-columns: 1fr;
}
.cr-sticky-banner__name {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  min-width: 0;
  max-width: 100%;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Strategy comments + Quill editor */
.strategy-comments__label {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}
.strategy-comments__compose {
  margin-bottom: 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}
.strategy-comments__note {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.strategy-comments__editor {
  margin-bottom: 1.25rem;
  border-radius: var(--radius);
  overflow: hidden;
}
.strategy-comments__actions {
  margin-top: 1.25rem;
}
.strategy-comments__success {
  margin-bottom: 0.85rem;
}
.strategy-comments__editor .ql-toolbar.ql-snow {
  background: var(--bg-elevated);
  border-color: var(--border);
}
.strategy-comments__editor .ql-container.ql-snow {
  background: var(--bg-deep);
  border-color: var(--border);
  color: var(--text);
  min-height: 120px;
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.strategy-comments__editor .ql-editor {
  min-height: 100px;
}
.strategy-comments__editor .ql-editor.ql-blank::before {
  color: var(--text-muted);
  font-style: normal;
}
.strategy-comments__error { margin-bottom: 0.75rem; }
.strategy-comments__list-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 1rem;
  color: var(--gold);
}
.strategy-comments__empty {
  color: var(--text-muted);
  margin: 0;
}
.strategy-comments__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.strategy-comment {
  display: grid;
  grid-template-columns: minmax(7.5rem, 11rem) 1fr;
  gap: 0.75rem 1.5rem;
  align-items: start;
  padding: 1rem 1.1rem;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.strategy-comment__meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}
.strategy-comment__author {
  font-family: var(--font-display);
  font-size: 0.95rem;
  line-height: 1.3;
  word-break: break-word;
}
.strategy-comment__date {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.strategy-comment__body {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text);
  min-width: 0;
}
.strategy-comment__body p {
  margin: 0;
  display: inline;
}
.strategy-comment__body a { color: var(--emerald); }
@media (max-width: 560px) {
  .strategy-comment {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}
@media (max-width: 768px) {
  .cr-grid { grid-template-columns: 1fr; }
  .cr-score-ring { width: 100px; height: 100px; }
  .cr-score-ring__value { font-size: 1.6rem; }
}

.feature-strip {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-top: 2rem;
}
.feature-pill {
  padding: 1rem 1.25rem;
  border-radius: 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  font-size: 0.95rem;
}
.feature-pill strong { color: var(--emerald); display: block; margin-bottom: 0.25rem; }

/* Content pages */
.page-hero img, .page-hero iframe { width: 100%; display: block; }
.page-hero iframe { aspect-ratio: 16/9; border: 0; }
.page-content { max-width: var(--max); margin: 0 auto; padding: 2rem 1.25rem 3rem; }

/* Page titles — baseline: /complaints */
.content-section > h1:first-child,
.page-header > h1,
.page-content .content-section > h1,
.page-content > h1:first-child,
.page-intro > h1,
.members-hero h1,
.about-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: normal;
}
.content-section > .lead,
.page-header .lead,
.page-intro .lead,
.page-intro .section__sub,
.page-header .section__sub {
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: none;
  margin: 0 0 1.5rem;
  white-space: nowrap;
}
.page-header .lead + .lead {
  margin-top: -0.75rem;
}
.page-header,
.complaints-page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.25rem 0;
}
.page-header--tail {
  padding-bottom: 0;
}
.complaints-page {
  padding-bottom: 3rem;
}
.page-header__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--emerald);
}
.page-header__breadcrumb {
  margin: 0 0 0.65rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.page-header__breadcrumb a {
  color: var(--emerald);
  text-decoration: none;
}
.page-header__breadcrumb a:hover {
  text-decoration: underline;
}
.page-header--centered {
  text-align: center;
}
.page-header--centered .lead {
  margin-left: auto;
  margin-right: auto;
  max-width: none;
}
.page-header + .section,
.page-header + .masterclass-page {
  padding-top: 1.5rem;
}
.page-header + .masterclass-layout,
.page-header + .free-games-page,
.page-header + .free-games-page__catalog,
.page-header + .forum-layout {
  padding-top: 1rem;
}
.forum-page__member-meta,
.page-header__meta {
  max-width: var(--max);
  margin: -0.25rem auto 1.25rem;
  padding: 0 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.forum-page__member-meta .btn {
  margin-right: 0.5rem;
}
.section.page-intro {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.25rem 0.75rem;
}
.page-intro > h1:not(.section__title) {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
}

.complaints-about {
  margin-bottom: 2rem;
  max-width: 48rem;
}
.complaints-about__lead,
.complaints-about p.complaints-about__lead {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #fff;
  margin: 0 0 1rem;
}
.complaints-about p:not(.complaints-about__lead) {
  margin: 0 0 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.complaints-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.complaints-stats__item {
  text-align: center;
  padding: 1.25rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.complaints-stats__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--emerald);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.complaints-stats__label {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.35;
}
.complaints-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.complaints-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin: 0 0 0.75rem;
}
.complaints-section__intro {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 44rem;
}
.complaints-steps,
.complaints-process {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.complaints-steps__item,
.complaints-process__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.25rem;
  align-items: start;
  padding: 1.15rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.complaints-steps__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.5rem;
  padding: 0.35rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald);
  border-radius: 8px;
  white-space: nowrap;
}
.complaints-steps__item h3,
.complaints-process__item h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
}
.complaints-steps__item p,
.complaints-process__item p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.55;
  font-size: 0.95rem;
}
.complaints-process__icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--emerald);
}
.complaints-tip {
  margin: 1.5rem 0 0;
  padding: 1rem 1.15rem;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted);
}
.complaints-tip a { color: var(--emerald); }
.complaints-note {
  margin: 1.5rem 0 0;
  padding: 1rem 1.15rem;
  background: var(--bg-deep);
  border-left: 3px solid var(--border);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.complaints-section a,
.complaints-about a {
  color: var(--emerald);
}
.complaints-intro {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem 2rem;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1.5rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.complaints-intro__lead {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 40rem;
}
.complaints-intro__action {
  display: flex;
  justify-content: flex-end;
}
.complaints-form-panel {
  margin-top: 0;
}

/* Complaint submission modal */
body.complaints-modal-open { overflow: hidden; }
.complaints-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 240000;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.complaints-modal.is-open {
  display: flex !important;
  visibility: visible !important;
}
.complaints-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 5, 10, 0.94);
}
.complaints-modal__dialog {
  --cm-bg: #060a10;
  --cm-surface: #0a1018;
  --cm-elevated: #0f1622;
  --cm-border: rgba(255, 255, 255, 0.08);
  --cm-border-accent: rgba(45, 212, 168, 0.22);
  --cm-text-muted: #7d8aa3;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 920px;
  max-height: min(92vh, 900px);
  display: flex;
  flex-direction: column;
  background: var(--cm-bg);
  border: 1px solid var(--cm-border-accent);
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.75);
}
.complaints-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  z-index: 2;
  border: none;
  background: rgba(255, 255, 255, 0.04);
  color: var(--cm-text-muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.2rem 0.5rem;
  border-radius: 8px;
}
.complaints-modal__close:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}
.complaints-modal__header {
  flex-shrink: 0;
  padding: 1.35rem 3rem 0.85rem 1.5rem;
  background: var(--cm-surface);
  border-bottom: 1px solid var(--cm-border);
}
.complaints-modal__header h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  line-height: 1.3;
  color: var(--text);
}
.complaints-modal__body {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem 1.5rem 1.5rem;
  background: var(--cm-bg);
}
.complaints-modal .complaints-guidelines {
  margin-top: 0;
  color: var(--cm-text-muted);
}
.complaints-modal .complaints-guidelines__link a {
  color: var(--emerald);
}
.complaints-modal .error-box,
.complaints-modal .success-box {
  border-radius: 10px;
}
.complaints-modal .complaints-form__private {
  background: var(--cm-surface);
  border-color: var(--cm-border);
}
.complaints-modal .complaints-form__fieldset {
  background: var(--cm-surface);
  border: 1px solid var(--cm-border);
  border-radius: 10px;
  padding: 0.85rem 1rem 0.75rem;
}
.complaints-modal .complaints-form__legend {
  color: var(--text);
}
.complaints-modal .complaints-form__field > label,
.complaints-modal .form-group label {
  color: #c5cede;
}
.complaints-modal .complaints-form select,
.complaints-modal .complaints-form textarea,
.complaints-modal .complaints-form input[type="text"],
.complaints-modal .complaints-form input[type="email"] {
  background: var(--cm-elevated);
  border-color: var(--cm-border);
  color: var(--text);
}
.complaints-modal .complaints-form select:focus,
.complaints-modal .complaints-form textarea:focus,
.complaints-modal .complaints-form input:focus {
  border-color: var(--cm-border-accent);
  outline: none;
  box-shadow: 0 0 0 2px rgba(45, 212, 168, 0.12);
}
.complaints-modal .form-hint {
  color: var(--cm-text-muted);
}
.complaints-modal .complaints-form__footer {
  border-top-color: var(--cm-border);
}
.complaints-modal .complaints-form__checkbox {
  color: var(--cm-text-muted);
}
.complaints-modal .complaints-form__checkbox a {
  color: var(--emerald);
}
.complaints-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.25rem;
  align-items: start;
}
.complaints-form__field {
  margin-bottom: 1rem;
}
.complaints-form__field--full {
  grid-column: 1 / -1;
}
.complaints-form__fieldset {
  margin-bottom: 1rem;
  min-width: 0;
}
.complaints-form__private-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.25rem;
}
.complaints-form__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
  margin-top: 0.25rem;
}
.complaints-form__footer .btn-primary {
  flex-shrink: 0;
  min-width: 11rem;
}
.complaints-form__done-actions {
  margin: 1rem 0 0;
  text-align: right;
}
.complaints-modal .form-group label,
.complaints-modal .complaints-form__field > label,
.complaints-form__field > label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}
.complaints-modal #complaint_title,
.complaints-modal #operator_account_name,
.complaints-modal #operator_email {
  width: 100%;
}
.complaints-modal .complaints-form__private-grid {
  grid-template-columns: 1fr;
  gap: 0;
}
@media (max-width: 720px) {
  .complaints-modal {
    padding: 0.5rem;
    align-items: flex-end;
  }
  .complaints-modal__dialog {
    max-height: 96vh;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .complaints-form__grid,
  .complaints-form__private-grid {
    grid-template-columns: 1fr;
  }
  .complaints-form__footer {
    flex-direction: column;
    align-items: stretch;
  }
  .complaints-form__footer .btn-primary {
    width: 100%;
  }
}
.complaints-form-panel h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 1rem;
}
.complaints-form__field > label,
.complaints-form .form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.complaints-guidelines {
  margin: 0 0 0.75rem;
  padding-left: 1.25rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}
.complaints-guidelines__link {
  margin: 0 0 1.5rem;
  font-size: 0.9rem;
}
.complaints-guidelines__link a { color: var(--emerald); }
.complaints-form__fieldset {
  border: none;
  margin: 0 0 1.25rem;
  padding: 0;
}
.complaints-form__legend {
  font-weight: 600;
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
}
.complaints-form__radios {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
.complaints-form__radio {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}
.complaints-form__private {
  margin: 1.5rem 0;
  padding: 1.25rem;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.complaints-form__private-note {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
}
.complaints-form__terms { margin-top: 1.25rem; }
.complaints-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.92rem;
  line-height: 1.45;
  cursor: pointer;
}
.complaints-form__checkbox input { margin-top: 0.2rem; flex-shrink: 0; }
.complaints-form select,
.complaints-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--bg-deep);
  color: var(--text);
  border-radius: var(--radius);
  padding: 0.65rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.complaints-form textarea { min-height: 10rem; resize: vertical; }
.form-hint {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.complaint-status {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
}
.complaint-status--open {
  background: rgba(110, 168, 255, 0.2);
  color: #9ec5ff;
}
.complaint-status--resolved {
  background: rgba(52, 211, 153, 0.2);
  color: #6ee7b7;
}
.complaint-status--unresolved {
  background: rgba(251, 191, 36, 0.2);
  color: #fcd34d;
}
@media (max-width: 720px) {
  .complaints-intro {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .complaints-intro__action {
    justify-content: flex-start;
  }
  .complaints-steps__item,
  .complaints-process__item {
    grid-template-columns: 1fr;
  }
  .complaints-steps__badge {
    justify-self: start;
  }
}
.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.info-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
}
.info-card p { margin: 0; flex: 1; color: var(--text-muted); font-size: 0.92rem; line-height: 1.5; }
.members-page {
  max-width: 1320px;
  margin: 0 auto;
  text-align: center;
}
.members-page__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 0.5rem;
  text-align: left;
}
.members-page__welcome {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
  min-width: 0;
}
.members-page__avatar {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}
.members-page__avatar--initial {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--emerald));
  color: #071018;
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
}
.members-page__intro { flex: 1; min-width: 0; }
.members-page__logout {
  flex-shrink: 0;
}
.members-page__header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex-shrink: 0;
  align-items: center;
}
.members-notifications {
  position: relative;
  flex-shrink: 0;
}
.members-notifications__bell {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
}
.members-notifications__bell:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}
.members-notifications__bell-fill { display: none; }
.members-notifications__bell-outline { display: block; }
.members-notifications__bell.has-unread {
  color: var(--emerald);
}
.members-notifications__bell.has-unread .members-notifications__bell-fill { display: block; }
.members-notifications__bell.has-unread .members-notifications__bell-outline { display: none; }
.members-notifications__badge {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 1.1rem;
  height: 1.1rem;
  padding: 0 0.25rem;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1.1rem;
  text-align: center;
  transform: translate(25%, -25%);
  box-shadow: 0 0 0 2px var(--bg, #0a1218);
}
.members-notifications__panel {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  z-index: 200;
  width: min(52rem, calc(100vw - 2rem));
  max-height: min(24rem, 70vh);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--card, #111b24);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  text-align: left;
}
.members-notifications__panel[hidden] { display: none !important; }
.members-notifications__panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}
.members-notifications__panel-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
}
.members-notifications__list {
  overflow-y: auto;
  padding: 0.35rem 0;
}
.members-notifications__empty {
  margin: 0;
  padding: 1.25rem 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.members-notification-item {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
}
.members-notification-item:last-child { border-bottom: none; }
.members-notification-item.is-unread {
  background: rgba(45, 212, 168, 0.06);
}
.members-notification-item:hover {
  background: rgba(255, 255, 255, 0.04);
}
.members-notification-item__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}
.members-notification-item__name {
  font-size: 0.88rem;
  color: var(--text);
}
.members-notification-item.is-unread .members-notification-item__name {
  color: var(--emerald);
}
.members-notification-item__date {
  font-size: 0.72rem;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.members-notification-item__body {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--text-muted);
}
.members-notification-item__body br {
  display: block;
  margin: 0;
  line-height: 1.45;
}
.members-notification-item__body a {
  color: var(--emerald);
  text-decoration: none;
  word-break: break-all;
}
.members-notification-item__body a:hover { text-decoration: underline; }
.members-notification-item.is-read .members-notification-item__body {
  opacity: 0.85;
}
.member-check-email.form-card {
  max-width: min(720px, calc(100vw - 2rem));
  padding: 2rem 2.5rem;
  text-align: center;
}
.member-check-email__text,
.member-check-email__notice {
  text-align: center;
}
.member-check-email__tips {
  margin: 0 0 1.5rem;
  padding-left: 0;
  list-style-position: inside;
  color: var(--text-muted);
  line-height: 1.55;
  text-align: center;
}
.member-check-email__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}
.member-check-email__resend {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  width: 100%;
}
.member-check-email__countdown {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.4;
  text-align: center;
}
.member-check-email__back {
  min-width: min(100%, 16rem);
  justify-content: center;
}
.member-check-email__resend .btn-primary {
  min-width: min(100%, 16rem);
  justify-content: center;
}
.member-check-email__text,
.member-verify-email__text {
  margin: 0 0 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.member-check-email__notice {
  margin: 0 0 1rem;
  color: var(--text);
  line-height: 1.55;
}
.member-verify-email__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.member-verify-email.form-card {
  max-width: min(920px, calc(100vw - 2rem));
  padding: 2rem 2.5rem;
  text-align: center;
}
.member-verify-email__explore-lead {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
  text-align: center;
}
.member-verify-email__browse {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0 0 1.75rem;
}
.member-verify-email__browse .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
}
.member-verify-email__browse .btn-secondary:hover,
.member-verify-email__browse .btn-secondary:focus-visible {
  background: var(--emerald);
  color: #0a0f18;
  border-color: var(--emerald);
  box-shadow: 0 6px 20px rgba(45, 212, 168, 0.35);
}
@media (max-width: 640px) {
  .member-verify-email__browse {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.member-verify-email--failed {
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}
.member-verify-email__failed {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.member-verify-email__text--error {
  margin: 0 0 1.5rem;
  padding: 0.85rem 1.1rem;
  border-radius: 10px;
  background: rgba(220, 60, 60, 0.15);
  border: 1px solid rgba(220, 60, 60, 0.4);
  color: #ffb4b4;
  line-height: 1.55;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}
.member-verify-email__text {
  text-align: center;
}
.member-verify-email__actions {
  justify-content: center;
  width: 100%;
}
.newsletter-unsubscribe.form-card {
  max-width: 45rem;
}
.newsletter-unsubscribe__lead {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  text-align: center;
}
.newsletter-unsubscribe__tagline {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent-gold, #e8c547);
  line-height: 1.4;
  text-align: center;
}
.newsletter-unsubscribe__text {
  margin: 0 0 1rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.newsletter-unsubscribe__text--closing {
  margin-bottom: 1.75rem;
  color: var(--text);
  font-weight: 600;
  text-align: center;
}
.newsletter-unsubscribe__notice {
  margin: 0 0 1rem;
  color: var(--text);
  line-height: 1.55;
}
.newsletter-unsubscribe__form {
  margin-top: 0.25rem;
}
.newsletter-unsubscribe__actions {
  display: grid;
  grid-template-columns: 26% 35% 35%;
  gap: 0.85rem 1rem;
  align-items: start;
}
.newsletter-unsubscribe__col {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.45rem;
  min-width: 0;
}
.newsletter-unsubscribe__col .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
  white-space: normal;
  line-height: 1.25;
}
.newsletter-unsubscribe__col--stay {
  align-items: center;
}
.newsletter-unsubscribe__col--stay .btn {
  width: 100%;
}
.newsletter-unsubscribe__actions--center {
  display: flex;
  justify-content: center;
}
.newsletter-unsubscribe__stay-hint {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.35;
  text-align: center;
}
.newsletter-unsubscribe__btn-unsub:hover,
.newsletter-unsubscribe__btn-unsub:focus-visible {
  border-color: rgba(248, 113, 113, 0.55);
  color: #fecaca;
}
@media (max-width: 640px) {
  .newsletter-unsubscribe__actions {
    grid-template-columns: 1fr;
  }
  .newsletter-unsubscribe__col--stay {
    order: -1;
  }
}
body.member-profile-page {
  overflow-y: auto;
}
body.member-profile-page .site-main {
  padding-bottom: 5rem;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  min-height: auto;
}
body.member-profile-page:not(.member-profile-page--required) .member-profile-form.form-card {
  max-height: none;
  overflow: visible;
}
body.member-profile-page .page-header--tail .lead {
  white-space: normal;
}

/* Required profile setup — centered modal with scrollable content */
body.member-profile-page--required {
  overflow: hidden;
}
body.member-profile-page--required .site-footer {
  display: none;
}
body.member-profile-page--required .site-main {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 1rem;
  min-height: 0;
}
body.member-profile-page--required .member-profile-required-shell {
  width: min(920px, calc(100vw - 2rem));
  max-height: calc(100dvh - var(--header-h) - 2rem);
  margin: auto 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
  padding: 1.35rem 2rem 1.5rem;
  scrollbar-gutter: stable;
}
body.member-profile-page--required .member-profile-required-shell::-webkit-scrollbar {
  width: 8px;
}
body.member-profile-page--required .member-profile-required-shell::-webkit-scrollbar-thumb {
  background: rgba(154, 168, 196, 0.35);
  border-radius: 4px;
}
body.member-profile-page--required .content-section.page-header {
  flex-shrink: 0;
  max-width: none;
  margin: 0;
  padding: 0 0 0.85rem;
  text-align: center;
}
body.member-profile-page--required .content-section.page-header h1 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}
body.member-profile-page--required .content-section.page-header .lead {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
}
body.member-profile-page--required .member-profile-form.member-profile-form--required.form-card {
  flex: 0 1 auto;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  max-height: none;
}
body.member-profile-page--required .member-profile-form--required .form-group {
  margin-bottom: 0.85rem;
}
body.member-profile-page--required .member-profile-form--required .form-hint {
  margin-top: 0.25rem;
  font-size: 0.78rem;
}
body.member-profile-page--required .member-profile-form--required .form-group--bio textarea {
  min-height: 2.75rem;
}
body.member-profile-page--required .member-profile-form--required .member-profile-form__submit {
  margin-top: 1rem;
  margin-left: auto;
  margin-right: auto;
}

.member-profile-form.form-card {
  max-width: min(920px, calc(100vw - 2rem));
  margin: 1.5rem auto 3rem;
  padding: 1.5rem;
  overflow: visible;
  max-height: none;
  height: auto;
}
.member-profile-form__form {
  display: block;
  overflow: visible;
  max-height: none;
}
.member-profile-form__row {
  display: grid;
  gap: 0.65rem 0.75rem;
  margin-bottom: 0.85rem;
}
.member-profile-form__row--identity {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 0.95fr);
  align-items: end;
}
.member-profile-form__layout-hint {
  margin: -0.35rem 0 0.85rem;
}
.member-profile-form__row .form-group--compact {
  margin-bottom: 0;
}
.member-profile-form__row .form-group--compact label,
.member-profile-form__row .form-group--compact .form-group__label {
  margin-bottom: 0.3rem;
  font-size: 0.82rem;
}
.member-profile-form__row .form-group--compact input,
.member-profile-form__row .form-group--compact select {
  padding: 0.55rem 0.65rem;
  font-size: 0.88rem;
  border-radius: 8px;
}
@media (max-width: 520px) {
  .member-profile-form__row--identity {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
}
.member-profile-form__submit {
  display: block;
  width: 50%;
  min-width: min(100%, 12rem);
  margin: 1.5rem auto 0;
}
.form-group--bio .form-group__label-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem 0.75rem;
  margin-bottom: 0.4rem;
}
.form-group--bio .form-group__label-row label {
  margin-bottom: 0;
}
.member-profile-bio-counter {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}
.member-profile-bio-counter--ready {
  color: var(--emerald);
}
.member-profile-form--required .member-profile-bio-counter {
  font-size: 0.88rem;
}
.member-profile-form__nav-link {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.95rem;
}
.member-profile-form--photo.form-card {
  max-width: min(920px, calc(100vw - 2rem));
}
.form-group--bio textarea {
  min-height: 2.75rem;
  resize: vertical;
}
.member-profile-form__photo-divider {
  margin: 0 0 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}
.avatar-picker-details {
  margin: 0 0 0.75rem;
}
.avatar-picker-details__summary {
  display: block;
  width: 100%;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--emerald);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  list-style: none;
  text-align: center;
}
.avatar-picker-details__summary::-webkit-details-marker {
  display: none;
}
.avatar-picker-details__summary::after {
  content: " ▾";
  color: var(--text-muted);
}
.avatar-picker-details[open] .avatar-picker-details__summary::after {
  content: " ▴";
}
.avatar-picker-details[open] .avatar-picker {
  margin-top: 0.75rem;
}
.member-profile-form__preview {
  margin-bottom: 1rem;
  text-align: center;
}
.member-profile-form__preview img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}
.member-profile-form__avatar-lead {
  margin: 0.35rem 0 0.85rem;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
  color: var(--text);
}
body.member-profile-page--required .member-profile-form--required .member-profile-form__avatar-lead {
  font-size: 1.15rem;
}
.avatar-picker {
  margin: 0.75rem 0 1rem;
  overflow: visible;
  max-height: none;
  padding: 0.25rem;
}
.avatar-picker--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1rem;
}
.avatar-picker__column {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.5rem;
  overflow: visible;
}
.avatar-picker--extra {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 0.65rem;
  margin-top: 0.75rem;
}
.avatar-picker__option {
  position: relative;
  display: block;
  margin: 0;
  cursor: pointer;
  border-radius: 10px;
  border: 2px solid transparent;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  background: var(--surface-elevated, rgba(255, 255, 255, 0.04));
  overflow: visible;
}
.avatar-picker-hover-preview {
  position: fixed;
  z-index: 10000;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid var(--gold, #c9a227);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
  background: var(--bg-card, #1a2332);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease, visibility 0.15s ease;
}
.avatar-picker-hover-preview.is-visible {
  opacity: 1;
  visibility: visible;
}
.avatar-picker-hover-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.avatar-picker__option:hover,
.avatar-picker__option.is-selected {
  border-color: var(--gold, #c9a227);
  box-shadow: 0 0 0 1px var(--gold, #c9a227);
}
.avatar-picker__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.avatar-picker__option img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
}
.avatar-picker__caption {
  display: block;
  font-size: 0.78rem;
  line-height: 1.25;
  text-align: center;
  padding: 0.25rem 0.15rem 0.35rem;
  color: var(--text-muted);
}
.form-group__label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
}
.dob-selector--profile {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  align-items: end;
  width: 100%;
}
.dob-selector__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  width: 100%;
}
@media (max-width: 420px) {
  .dob-selector--profile {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "month month"
      "day year";
  }
  .dob-selector--profile .dob-selector__field--month {
    grid-area: month;
  }
  .dob-selector--profile .dob-selector__field--day {
    grid-area: day;
  }
  .dob-selector--profile .dob-selector__field--year {
    grid-area: year;
  }
}
.dob-selector__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
  width: 100%;
}
.dob-selector__name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.dob-selector__field select,
.dob-selector__field input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-deep);
  color: var(--text);
  font: inherit;
}
.dob-selector__field select {
  cursor: pointer;
}
.dob-selector__field input {
  cursor: text;
}
.dob-selector__field select:focus,
.dob-selector__field input:focus {
  outline: none;
  border-color: var(--emerald);
}
@media (max-width: 380px) {
  .dob-selector__field select,
  .dob-selector__field input,
  .dob-selector--profile .dob-selector__field select,
  .dob-selector--profile .dob-selector__field input {
    padding: 0.65rem 0.5rem;
    font-size: 0.9rem;
  }
  .dob-selector__name {
    font-size: 0.7rem;
  }
}
.members-page .section__title,
.members-page .section__sub {
  text-align: center;
}
.members-page .section__sub {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}
.members-page--logged-in .members-page__welcome .section__title,
.members-page--logged-in .members-page__welcome .section__sub,
.members-page--logged-in .members-page__header .section__title,
.members-page--logged-in .members-page__header .section__sub,
.members-page--logged-in .members-nav {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}
.members-page--logged-in .members-nav {
  justify-content: flex-start;
}
.members-page .members-cards {
  margin: 2rem auto 0;
  max-width: 1280px;
  width: 100%;
  gap: 1.75rem;
}
.members-page .card-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.members-page .info-card {
  padding: 2.25rem 2rem;
  min-height: 220px;
  text-align: center;
  align-items: center;
}
.members-page .info-card h3 { font-size: 1.35rem; }
.members-page .info-card p { font-size: 1rem; }
.members-page .info-card .btn { align-self: center; margin-top: 0.35rem; }
@media (max-width: 900px) {
  .members-page .members-cards { max-width: 100%; }
  .members-page__header { flex-wrap: wrap; }
  .members-page__welcome {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .members-page__welcome .members-page__intro {
    flex: 1 1 100%;
    text-align: center;
  }
  .members-page__avatar,
  .members-page__avatar--initial {
    width: 120px;
    height: 120px;
  }
  .members-page__avatar--initial {
    font-size: 2.75rem;
  }
  .members-page__logout { margin-left: auto; }
}
.feature-list { padding-left: 1.25rem; color: var(--text-muted); }
.feature-list li { margin-bottom: 0.5rem; }

/* Forms */
.form-card {
  max-width: 480px;
  margin: 2rem auto 0;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-deep);
  color: var(--text);
  font: inherit;
}
.form-group textarea { min-height: 120px; resize: vertical; }
.error-box {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: rgba(220, 60, 60, 0.15);
  border: 1px solid rgba(220, 60, 60, 0.4);
  color: #ffb4b4;
  margin-bottom: 1rem;
}
.success-box {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: rgba(45, 212, 168, 0.12);
  border: 1px solid rgba(45, 212, 168, 0.35);
  color: var(--emerald);
}

/* Contact page */
.contact-intro {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.25rem 0.5rem;
  text-align: left;
}
.contact-intro .lead {
  max-width: none;
  margin: 0 0 1.5rem;
  white-space: nowrap;
}
.contact-form-section {
  max-width: 640px;
  margin: 0 auto 3rem;
  padding: 0 1.25rem 2rem;
}
.contact-form-panel {
  padding: 2rem 2.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}
.contact-form-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--emerald));
}
.contact-form-panel__header {
  margin-bottom: 1.75rem;
  text-align: center;
}
.contact-form-panel__header h2 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
}
.contact-form-panel__header p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-form__submit { width: 100%; margin-top: 0.5rem; padding: 0.85rem 1.5rem; font-size: 1rem; }
.contact-form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-success {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem 1.35rem;
  text-align: left;
}
.contact-success__icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--emerald);
  color: #071018;
  font-weight: 800;
  font-size: 1rem;
}
.contact-success p { margin: 0.15rem 0 0; line-height: 1.5; }
@media (max-width: 560px) {
  .contact-form-panel { padding: 1.5rem 1.25rem; }
  .contact-form__row { grid-template-columns: 1fr; }
}

/* Free games page */
.free-games-page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem 4rem;
}
.free-games-page__catalog {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}
.game-picker {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  width: 100%;
  max-width: 400px;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
}
@media (max-width: 1100px) {
  .free-games-page__catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .free-games-page__catalog {
    grid-template-columns: 1fr;
  }
}
.game-picker__thumb {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 18px;
  transition: transform 0.22s ease;
}
.game-picker__thumb:hover { transform: translateY(-5px); }
.game-picker__thumb:focus-visible {
  outline: 2px solid var(--emerald);
  outline-offset: 4px;
}
.game-picker__media {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-deep);
  line-height: 0;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
}
.game-picker__media img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}
.game-picker__play {
  width: 100%;
  padding: 0.68rem 0.85rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(180deg, #a855f7 0%, #7c3aed 50%, #6d28d9 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(124, 58, 237, 0.5);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}
.game-picker__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
.game-picker__play:hover {
  filter: brightness(1.1);
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.65);
  transform: translateY(-2px);
}
.game-picker__play:active { transform: translateY(0); }
.game-picker__play:focus-visible {
  outline: 2px solid #c4b5fd;
  outline-offset: 3px;
}
.game-picker__play--pbucks {
  background: linear-gradient(135deg, var(--gold), #c79317);
  color: #0a0f18;
  box-shadow: 0 6px 24px rgba(232, 197, 71, 0.4);
}
.game-picker__play--pbucks:hover {
  box-shadow: 0 8px 32px rgba(232, 197, 71, 0.55);
}
@media (max-width: 640px) {
  .game-picker__actions {
    grid-template-columns: 1fr;
  }
}
/* Free games — slide-out bankroll leaderboard (fixed overlay, no layout shift) */
body.free-games-leaderboard-open { overflow: hidden; }
.free-games-leaderboard-dock {
  --leaderboard-tab-w: 2.75rem;
  --leaderboard-max-h: min(83.6vh, 722px);
}
.free-games-leaderboard-dock__backdrop {
  position: fixed;
  inset: 0;
  z-index: 11999;
  border: none;
  margin: 0;
  padding: 0;
  background: rgba(4, 8, 14, 0.62);
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  transition: opacity 0.28s ease;
}
.free-games-leaderboard-dock.is-open .free-games-leaderboard-dock__backdrop {
  opacity: 1;
  pointer-events: auto;
}
.free-games-leaderboard-dock__rail {
  position: fixed;
  top: 55%;
  right: 0;
  z-index: 12001;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  max-height: var(--leaderboard-max-h);
  transform: translateY(-50%) translateX(calc(100% - var(--leaderboard-tab-w)));
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.free-games-leaderboard-dock.is-open .free-games-leaderboard-dock__rail {
  transform: translateY(-50%) translateX(0);
}
.free-games-leaderboard-dock__tab {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--leaderboard-tab-w);
  min-height: 11.4rem;
  padding: 1rem 0.5rem;
  border: 1px solid rgba(232, 197, 71, 0.45);
  border-right: none;
  border-radius: 14px 0 0 14px;
  background:
    linear-gradient(180deg, rgba(232, 197, 71, 0.28), rgba(124, 58, 237, 0.2)),
    linear-gradient(180deg, rgba(21, 31, 50, 0.99), rgba(10, 15, 24, 0.99));
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: -10px 0 32px rgba(0, 0, 0, 0.45);
  transition: filter 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.free-games-leaderboard-dock__tab:hover {
  filter: brightness(1.1);
  border-color: rgba(232, 197, 71, 0.65);
  box-shadow: -12px 0 36px rgba(232, 197, 71, 0.2);
}
.free-games-leaderboard-dock__tab:focus-visible {
  outline: 2px solid var(--emerald);
  outline-offset: 2px;
}
.free-games-leaderboard-dock__tab-label {
  display: block;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
}
.free-games-leaderboard-dock__panel {
  flex-shrink: 0;
  width: min(92vw, 22.5rem);
  max-height: var(--leaderboard-max-h);
  pointer-events: none;
}
.free-games-leaderboard-dock.is-open .free-games-leaderboard-dock__panel {
  pointer-events: auto;
}
.free-games-leaderboard-dock__panel-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: var(--leaderboard-max-h);
  overflow: hidden;
  border: 1px solid rgba(232, 197, 71, 0.28);
  border-left: none;
  border-radius: 0;
  background:
    radial-gradient(circle at top right, rgba(232, 197, 71, 0.24), transparent 40%),
    radial-gradient(circle at left center, rgba(45, 212, 168, 0.14), transparent 36%),
    linear-gradient(180deg, rgba(21, 31, 50, 0.98), rgba(10, 15, 24, 0.99));
  box-shadow: -18px 0 50px rgba(0, 0, 0, 0.5);
}
.free-games-leaderboard-dock__panel-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent 28%, transparent 72%, rgba(255,255,255,0.04));
  pointer-events: none;
}
.free-games-leaderboard-dock__header {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.15rem 1.15rem 0.9rem;
  border-bottom: 1px solid rgba(232, 197, 71, 0.16);
}
.free-games-leaderboard-dock__header h2 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.25;
}
.free-games-leaderboard-dock__close {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(7, 11, 18, 0.65);
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.free-games-leaderboard-dock__close:hover {
  border-color: rgba(232, 197, 71, 0.35);
  background: rgba(232, 197, 71, 0.12);
}
.free-games-leaderboard-dock__list {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0.15rem 0;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.free-games-leaderboard-dock__item {
  display: grid;
  grid-template-columns: 1.5rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.free-games-leaderboard-dock__item:last-child {
  border-bottom: none;
}
.free-games-leaderboard-dock__item.is-top-1,
.free-games-leaderboard-dock__item.is-top-2,
.free-games-leaderboard-dock__item.is-top-3 {
  background: linear-gradient(90deg, rgba(232, 197, 71, 0.12), transparent 72%);
}
.free-games-leaderboard-dock__rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(232, 197, 71, 0.26);
  background: rgba(7, 11, 18, 0.72);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  line-height: 1;
}
.free-games-leaderboard-dock__name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  transition: color 0.15s ease;
}
.free-games-leaderboard-dock__name:hover {
  color: var(--gold);
  text-decoration: underline;
}
.free-games-leaderboard-dock__amount {
  color: #fff3c1;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-align: right;
}
@media (max-width: 480px) {
  .free-games-leaderboard-dock {
    --leaderboard-tab-w: 2.4rem;
  }
  .free-games-leaderboard-dock {
    --leaderboard-max-h: min(83.6vh, 680px);
  }
  .free-games-leaderboard-dock__tab {
    min-height: 9.5rem;
    font-size: 0.66rem;
  }
  .free-games-leaderboard-dock__panel {
    width: min(94vw, 20rem);
  }
}

/* Member gate login modal (strategies, free games) */
body.member-gate-modal-open { overflow: hidden; }
.member-gate-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 250000;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.member-gate-modal.is-open {
  display: flex !important;
  visibility: visible !important;
}
.member-gate-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 14, 0.82);
}
.member-gate-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  padding: 1.75rem 1.5rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.member-gate-modal__close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  border: none;
  background: none;
  color: var(--text-muted);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.15rem 0.35rem;
}
.member-gate-modal__close:hover { color: var(--text); }
.member-gate-modal__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
}
.member-gate-modal__message {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}
.member-gate-modal__form .form-group { margin-bottom: 1rem; }
.member-gate-modal__signup {
  margin-top: 1rem;
  text-align: center;
}
.member-gate-modal__signup .btn { width: 100%; }

/* Member security (change password) modal */
body.member-security-modal-open { overflow: hidden; }
.member-security-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 12000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.member-security-modal.is-open {
  display: flex !important;
  visibility: visible !important;
}
.member-security-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 14, 0.82);
}
.member-security-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 28rem;
  max-height: min(90vh, 640px);
  overflow: auto;
  padding: 1.5rem 1.35rem 1.35rem;
  border-radius: var(--radius-lg, 12px);
  border: 1px solid var(--border);
  background: var(--bg-card, #0f1624);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.member-security-modal__close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  border: 0;
  background: transparent;
  color: var(--text-muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.member-security-modal__close:hover { color: var(--text); }
.member-security-modal__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
}
.member-security-modal__lead,
.member-security-modal__rules {
  margin: 0 0 0.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}
.member-security-modal__form .form-group { margin-bottom: 1rem; }
.member-security-modal__submit { width: 100%; }
.member-security-modal__error,
.member-security-modal__success { margin-bottom: 1rem; }

/* Member forgot password modal */
body.member-forgot-modal-open { overflow: hidden; }
.member-forgot-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 12000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.member-forgot-modal.is-open {
  display: flex !important;
  visibility: visible !important;
}
.member-forgot-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 14, 0.82);
}
.member-forgot-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 28rem;
  max-height: min(90vh, 640px);
  overflow: auto;
  padding: 1.5rem 1.35rem 1.35rem;
  border-radius: var(--radius-lg, 12px);
  border: 1px solid var(--border);
  background: var(--bg-card, #0f1624);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.member-forgot-modal__close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  border: 0;
  background: transparent;
  color: var(--text-muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.member-forgot-modal__close:hover { color: var(--text); }
.member-forgot-modal__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
}
.member-forgot-modal__lead {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}
.member-forgot-modal__form .form-group { margin-bottom: 1rem; }
.member-forgot-modal__submit { width: 100%; }
.member-forgot-modal__error,
.member-forgot-modal__success { margin-bottom: 1rem; }
.members-login-forgot { margin-top: 1rem; }

/* Never show game chrome while login gate is open */
body.member-gate-modal-open .game-modal {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Full-screen game modal (appended to body) */
body.game-modal-open { overflow: hidden; }
.game-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200000;
  align-items: stretch;
  justify-content: stretch;
}
.game-modal.is-open { display: flex; }
.game-modal__backdrop {
  position: absolute;
  inset: 0;
  background: #030508;
  opacity: 0.97;
}
.game-modal__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  max-height: 100dvh;
  background: #050a10;
}
.game-modal__stage {
  position: relative;
  flex: 1;
  min-height: 0;
  display: flex;
  background: #000;
}
.game-modal__toolbar {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  pointer-events: auto;
}

.game-modal__close,
.game-modal__sound {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(12, 18, 28, 0.88);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.game-modal__close {
  font-size: 1.6rem;
  line-height: 1;
}

.game-modal__sound-icon {
  display: block;
  pointer-events: none;
}

.game-modal__sound.is-muted {
  color: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.12);
}

.game-modal__close:hover,
.game-modal__sound:hover {
  transform: scale(1.06);
  border-color: var(--emerald);
  color: var(--emerald);
  background: rgba(12, 18, 28, 0.95);
}

.game-modal__close:focus-visible,
.game-modal__sound:focus-visible {
  outline: 2px solid var(--emerald);
  outline-offset: 2px;
}
.game-modal__frame {
  flex: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: none;
}

/* Members */
.members-hero {
  text-align: center;
  padding: 2rem 1.25rem 0;
  max-width: var(--max);
  margin: 0 auto;
}

/* Footer */
.site-footer {
  margin-top: 4rem;
  padding: 3rem 1.25rem 2rem;
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,0.35);
}
.site-footer__grid {
  max-width: var(--max);
  margin: 0 auto 2rem;
  display: grid;
  gap: 2rem 2.5rem;
  grid-template-columns: minmax(220px, 1.35fr) repeat(auto-fit, minmax(150px, 1fr));
}
.site-footer__brand {
  display: grid;
  gap: 0.85rem;
  align-content: start;
  max-width: 26rem;
}
.footer-brand {
  margin: 0;
  font-size: 1.1rem;
  color: var(--text);
}
.footer-heading { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gold); margin: 0 0 0.75rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li + li { margin-top: 0.45rem; }
.footer-links a { color: var(--text-muted); text-decoration: none; }
.footer-links a:hover { color: var(--emerald); }
.footer-note, .footer-tagline { color: var(--text-muted); font-size: 0.9rem; margin: 0; }
.footer-note--legal {
  max-width: 22rem;
}
.footer-note--link {
  margin-top: -0.25rem;
}
.footer-aux-link {
  color: var(--emerald);
  font-weight: 600;
  text-decoration: none;
}
.footer-aux-link:hover {
  color: var(--gold);
}
.site-footer__meta {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.site-footer__copy {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}
.responsible-gambling {
  max-width: var(--max);
  margin: 0 auto 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: center;
}
.responsible-gambling__location {
  max-width: var(--max);
  margin: 0 auto 1rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
  text-align: center;
}
.responsible-page {
  max-width: var(--max);
  margin: 0 auto;
}
.responsible-page__intro {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 2rem;
}
.responsible-page__summary {
  min-height: 100%;
}
.responsible-page__list {
  margin: 0;
}
.responsible-page__section {
  margin-top: 2rem;
}
.responsible-page__lead {
  margin-bottom: 1.25rem;
}
.responsible-card__eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.responsible-card__action {
  margin-top: auto;
  padding-top: 0.5rem;
}
.responsible-page__note {
  margin-top: 2rem;
}

/* Mobile nav */
@media (max-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
  .responsible-page__intro {
    grid-template-columns: 1fr;
  }
  .nav-toggle { display: flex; margin-left: auto; }
  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    width: 100%;
    flex: none;
    align-self: auto;
    display: block;
    background: rgba(7, 11, 18, 0.98);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.3s, opacity 0.3s;
  }
  .site-nav.is-open {
    max-height: 70vh;
    opacity: 1;
    pointer-events: auto;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .site-nav ul {
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    height: auto;
    align-items: stretch;
  }
  .site-nav li { flex: none; text-align: left; display: block; }
  .site-nav a {
    display: block;
    height: auto;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    overflow: visible;
    text-overflow: clip;
  }
  .language-switcher { width: 100%; }
  .language-switcher summary {
    width: 100%;
    text-align: left;
  }
  .language-switcher__menu {
    position: static;
    margin-top: 0.5rem;
    width: 100%;
    min-width: 0;
  }
  .header-actions .btn-ghost { display: none; }
}

@media (max-width: 899px) {
  .hero__overlay {
    background: linear-gradient(
      90deg,
      rgba(7, 17, 26, 0.94) 0%,
      rgba(7, 17, 26, 0.82) 22%,
      rgba(7, 17, 26, 0.55) 38%,
      rgba(7, 17, 26, 0.25) 46%,
      transparent 50%
    );
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: auto;
    padding-top: 2.5rem;
  }
  .header-actions .btn-primary span { display: none; }
}

/* Community forum */
.forum-page { padding-top: 0; }
.forum-page--home > .forum-layout {
  padding-top: 1.5rem;
}
.forum-page--home > .forum-page__member-meta {
  margin-bottom: 0.65rem;
}
.forum-page .page-header {
  position: relative;
}
.forum-page .page-header__breadcrumb {
  position: absolute;
  top: 2rem;
  right: 1.25rem;
  left: auto;
  margin: 0;
  padding: 0;
  max-width: min(48vw, 26rem);
  text-align: right;
  line-height: 1.35;
  font-size: 0.85rem;
  color: var(--text-muted);
  z-index: 2;
}
.forum-page .page-header > h1 {
  padding-right: min(46vw, 24rem);
}
.forum-page__header--topic.page-header {
  position: static;
}
.forum-page__header--topic .page-header__breadcrumb {
  position: static;
  top: auto;
  right: auto;
  left: auto;
  margin: 0 0 0.5rem;
  padding: 0;
  max-width: 100%;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.forum-page__header--topic > h1 {
  padding: 0;
  margin: 0 0 0.65rem;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.forum-pagination {
  margin: 1.5rem 0 0.5rem;
}
.forum-breadcrumb a { color: var(--emerald); text-decoration: none; }
.forum-breadcrumb a:hover { text-decoration: underline; }
.forum-page__member-meta {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.forum-page__member-meta .btn { margin-right: 0.5rem; }
.forum-layout {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 280px);
  gap: 1.5rem;
  align-items: start;
}
.forum-main { grid-column: 1; grid-row: 1; }
.forum-sidebar { grid-column: 2; grid-row: 1; }
.forum-layout--full {
  grid-template-columns: 1fr;
}
.forum-layout--full .forum-main {
  grid-column: 1;
}
.forum-sidebar__box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1rem;
}
.forum-sidebar__box--accent {
  border-color: rgba(45, 212, 168, 0.35);
}
.forum-sidebar__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1rem;
}
.forum-sidebar__text,
.forum-sidebar__stats {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.forum-sidebar__stats { list-style: none; padding: 0; }
.forum-section-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
}
.forum-category-list { display: flex; flex-direction: column; gap: 1rem; }
.forum-category-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}
.forum-category-card:hover { border-color: rgba(232, 197, 71, 0.45); }
.forum-category-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--emerald));
  color: #071018;
  font-weight: 800;
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  justify-content: center;
}
.forum-category-card__title { margin: 0 0 0.35rem; font-size: 1.1rem; }
.forum-category-card__title a { color: var(--text); text-decoration: none; }
.forum-category-card__title a:hover { color: var(--gold); }
.forum-category-card__desc,
.forum-category-card__meta {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.forum-topic-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.forum-topic-toolbar__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}
.forum-topic-table {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
}
.forum-topic-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
}
.forum-topic-row:last-child { border-bottom: none; }
.forum-topic-row__lead {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  min-width: 0;
}
.forum-topic-row__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.forum-topic-row__avatar--initial {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-deep);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
}
.forum-topic-row__main {
  min-width: 0;
  flex: 1;
}
.forum-topic-row__pin {
  display: inline-block;
  margin-right: 0.35rem;
  padding: 0.15rem 0.45rem;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(232, 197, 71, 0.2);
  color: var(--gold);
  vertical-align: middle;
}
.forum-topic-row__title { margin: 0 0 0.35rem; font-size: 1.05rem; }
.forum-topic-row__title a { color: var(--text); text-decoration: none; }
.forum-topic-row__title a:hover { color: var(--gold); }
.forum-topic-row__starter,
.forum-topic-row__stats {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.forum-topic-row__stats {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: right;
  white-space: nowrap;
}
.forum-topic-title__meta {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.forum-topic-locked { color: #ffb450; }
.forum-post {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: visible;
  scroll-margin-top: 5.5rem;
}
.forum-post--op { border-color: rgba(45, 212, 168, 0.35); }
.forum-author-link {
  color: inherit;
  text-decoration: none;
}
.forum-author-link:hover {
  color: var(--accent);
  text-decoration: underline;
}
.forum-post__mention .forum-author-link {
  font-weight: 600;
}
.forum-post__mention {
  color: var(--emerald);
  font-weight: 600;
  font-size: 0.92rem;
}
.forum-thread {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.forum-post__author-meta {
  min-width: 0;
}
.forum-post__author-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
}
.forum-post__footer {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 0.65rem 1.25rem 0.85rem;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}
.forum-post__reply-expand {
  width: 100%;
  max-width: 100%;
  text-align: right;
}
.forum-reply-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.forum-post__reply-expand .forum-inline-reply {
  display: none;
  text-align: left;
  margin-top: 0.75rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
  background: rgba(7, 16, 24, 0.35);
  border-radius: 0 0 var(--radius) var(--radius);
}
.forum-reply-toggle:checked ~ .forum-inline-reply {
  display: block;
}
.forum-post__reply-btn {
  flex-shrink: 0;
  cursor: pointer;
}
.forum-thread__hint {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.forum-inline-reply {
  padding: 0;
}
.forum-inline-reply__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.forum-thread__guest {
  margin-top: 1rem;
}
.forum-post__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
}
.forum-post__author {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.forum-post__avatar {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--emerald));
  color: #071018;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}
.forum-post__avatar--image {
  padding: 0;
  background: transparent;
  overflow: hidden;
}
.forum-post__avatar--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}
.forum-post__badge {
  margin-left: 0.35rem;
  padding: 0.1rem 0.4rem;
  border-radius: 6px;
  font-size: 0.68rem;
  background: rgba(110, 168, 255, 0.2);
  color: #93c5fd;
}
.forum-post__time { font-size: 0.78rem; color: var(--text-muted); }
.forum-post__body { padding: 1.25rem; }
.forum-reply-box {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.forum-form__label {
  display: block;
  margin-bottom: 1rem;
}
.forum-form__label span {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.forum-form__label input,
.forum-form__label textarea,
.forum-form__label select {
  width: 100%;
  border: 1px solid var(--border);
  background: rgba(7, 16, 24, 0.6);
  color: var(--text);
  border-radius: 10px;
  padding: 0.65rem 0.85rem;
  font-family: inherit;
  font-size: 0.95rem;
}
.forum-form__actions {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}
.forum-form__hint {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  color: var(--emerald);
}
.forum-form__hint--error { color: #ff9a9a; }
.forum-notice {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted);
  background: rgba(45, 212, 168, 0.08);
  border: 1px solid rgba(45, 212, 168, 0.3);
  border-radius: var(--radius);
}
.forum-notice a { color: var(--emerald); }
.forum-topic-pending { color: #ffb450; }
.forum-mod-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(45, 212, 168, 0.06);
  border: 1px solid rgba(45, 212, 168, 0.28);
  border-radius: var(--radius);
}
.forum-mod-toolbar__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-right: 0.35rem;
}
.forum-mod-toolbar__danger { color: #ff9a9a; border-color: rgba(255, 120, 120, 0.35); }
.forum-post__head-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
}
.forum-post__head-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.forum-post-heart {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.forum-post-heart__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.15rem;
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 0;
  border-radius: 4px;
  text-decoration: none;
}
.forum-post-heart__btn:hover:not(:disabled) {
  color: #f87171;
}
.forum-post-heart__btn.is-liked,
.forum-post-heart__btn.is-liked:disabled {
  color: #ef4444;
  cursor: default;
}
.forum-post-heart__fill { display: none; }
.forum-post-heart__outline { display: block; }
.forum-post-heart__btn.is-liked .forum-post-heart__fill { display: block; }
.forum-post-heart__btn.is-liked .forum-post-heart__outline { display: none; }
.forum-post-heart__count {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}
.forum-post-heart__count-label {
  font-weight: 600;
}
.forum-post-heart__count.is-liked,
.forum-post-heart__btn.is-liked + .forum-post-heart__count {
  color: #ef4444;
}
.forum-post-heart__count.is-liked .forum-post-heart__count-label,
.forum-post-heart__btn.is-liked + .forum-post-heart__count .forum-post-heart__count-label {
  color: #ef4444;
}
.members-liked-table-wrap {
  overflow-x: auto;
  margin-top: 0.5rem;
}
.members-liked-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.members-liked-table th,
.members-liked-table td {
  padding: 0.65rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.members-liked-table th {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}
.members-liked-table a {
  color: var(--emerald);
  text-decoration: none;
}
.members-liked-table a:hover { text-decoration: underline; }
.members-liked-table__actions-col {
  width: 1%;
  white-space: nowrap;
  text-align: right;
}
.forum-post__mod {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  justify-content: flex-end;
}
.forum-post__mod-danger { color: #ff9a9a !important; }
.forum-post__badge--admin {
  background: rgba(45, 212, 168, 0.15);
  color: var(--emerald);
  border: 1px solid rgba(45, 212, 168, 0.35);
}
.forum-post__badge--pending {
  background: rgba(255, 180, 80, 0.12);
  color: #ffb450;
  border: 1px solid rgba(255, 180, 80, 0.3);
}
.forum-empty { color: var(--text-muted); }
.forum-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.forum-modal[hidden] { display: none !important; }
.forum-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 10, 16, 0.75);
}
.forum-modal__panel {
  position: relative;
  width: min(560px, 100%);
  max-height: 90vh;
  overflow: auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.forum-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
}
.forum-modal__heading { margin: 0 0 1rem; font-family: var(--font-display); }
body.forum-modal-open { overflow: hidden; }
.members-forum-list { display: flex; flex-direction: column; gap: 0.85rem; }
.members-forum-item {
  padding: 1rem 1.15rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.members-forum-item__type { margin: 0 0 0.35rem; font-size: 0.78rem; color: var(--text-muted); }
.members-forum-item__status.is-approved { color: var(--emerald); }
.members-forum-item__status.is-pending { color: #ffb450; }
.members-forum-item__title { margin: 0 0 0.35rem; font-size: 1.05rem; }
.members-forum-item__title a { color: var(--text); }
.members-forum-item__meta { margin: 0; font-size: 0.82rem; color: var(--text-muted); }

@media (max-width: 900px) {
  .forum-page .page-header__breadcrumb {
    top: 1.75rem;
    right: 1rem;
    max-width: min(58vw, 18rem);
    font-size: 0.8rem;
  }
  .forum-page .page-header > h1 {
    padding-right: 0;
    padding-top: 1.85rem;
  }
  .forum-page__header--topic .page-header__breadcrumb {
    top: auto;
    right: auto;
    max-width: 100%;
    font-size: 0.8rem;
  }
  .forum-page__header--topic > h1 {
    padding-top: 0;
    font-size: 1.15rem;
  }
  .forum-layout { grid-template-columns: 1fr; }
  .forum-main,
  .forum-sidebar { grid-column: 1; }
  .forum-topic-row { grid-template-columns: 1fr; }
  .forum-topic-row__stats {
    flex-direction: row;
    flex-wrap: wrap;
    text-align: left;
  }
  .forum-category-card { grid-template-columns: auto 1fr; }
  .forum-category-card__link { grid-column: 1 / -1; justify-self: start; }
  .news-hero__link { grid-template-columns: 1fr; }
  .news-hero__body { padding: 1.5rem; }
}

/* News RSS feed page */
.news-page { padding-top: 0; }
.news-page__header { margin-bottom: 0; }
.news-filters {
  margin-bottom: 1.75rem;
  padding: 1.15rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.news-filters__topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.news-filter-pill {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.news-filter-pill:hover {
  border-color: rgba(45, 212, 168, 0.45);
  color: var(--emerald);
}
.news-filter-pill.is-active {
  background: rgba(45, 212, 168, 0.12);
  border-color: rgba(45, 212, 168, 0.45);
  color: var(--emerald);
}
.news-filters__row {
  display: grid;
  grid-template-columns: 1fr minmax(160px, 220px) auto auto;
  gap: 0.65rem;
  align-items: center;
}
.news-filters__search input,
.news-filters__category select {
  width: 100%;
  padding: 0.55rem 0.75rem;
  font-size: 0.9rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.news-filters__count {
  margin: 0.85rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}
@media (max-width: 720px) {
  .news-filters__row {
    grid-template-columns: 1fr;
  }
}
.news-page__header .section__sub { margin-bottom: 1.5rem; }
.news-page__empty {
  padding: 2rem;
  text-align: center;
  background: var(--bg-card);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
}
.news-hero {
  margin-bottom: 2rem;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid rgba(232, 197, 71, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.news-hero__link {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  color: inherit;
  text-decoration: none;
  min-height: 320px;
}
.news-hero__media {
  position: relative;
  min-height: 280px;
  background: linear-gradient(135deg, #0d1a24 0%, #152a38 50%, #1a3a2e 100%);
}
.news-hero__media--no-image {
  background: linear-gradient(145deg, #0f2230, #1a3d32 40%, #2a2840);
}
.news-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 30%, rgba(7, 16, 24, 0.92) 100%);
  pointer-events: none;
}
.news-hero__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 2rem 2rem 1.25rem;
  background: var(--bg-card);
}
.news-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.news-hero__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  line-height: 1.2;
  color: var(--text);
}
.news-hero__excerpt {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-hero__cta {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
}
.news-hero__link:hover .news-hero__cta { color: var(--emerald); }
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.news-card:hover {
  border-color: rgba(232, 197, 71, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}
.news-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.news-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(160deg, #12202c, #1a2e28);
}
.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.news-card:hover .news-card__media img { transform: scale(1.04); }
.news-card__media--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-card__placeholder-icon { font-size: 2.5rem; opacity: 0.35; }
.news-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.1rem 1.15rem 1.15rem;
}
.news-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.55rem;
}
.news-card__category {
  font-size: 0.72rem;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  background: rgba(232, 197, 71, 0.12);
  color: var(--gold);
  border: 1px solid rgba(232, 197, 71, 0.25);
}
.news-card__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card__excerpt {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-muted);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}
.news-card__read {
  font-weight: 600;
  color: var(--gold);
}

/* About page */
.about-page {
  padding: 0 0 4rem;
  overflow-x: hidden;
}
.about-hero {
  position: relative;
  padding: clamp(3rem, 8vw, 5rem) clamp(1.25rem, 4vw, 2rem) clamp(3.5rem, 7vw, 4.5rem);
  margin-bottom: 0;
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(165deg, rgba(15, 22, 36, 0.97) 0%, rgba(7, 11, 18, 0.99) 55%),
    radial-gradient(ellipse 70% 80% at 20% 0%, rgba(45, 212, 168, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 60% at 95% 30%, rgba(232, 197, 71, 0.1), transparent 50%);
}
.about-hero__glow {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -12deg,
    transparent,
    transparent 48px,
    rgba(255, 255, 255, 0.012) 48px,
    rgba(255, 255, 255, 0.012) 49px
  );
  pointer-events: none;
  mask-image: linear-gradient(180deg, black 30%, transparent 100%);
}
.about-hero__inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
}
.about-hero__eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--emerald);
}
.about-hero__title {
  max-width: none;
}
.about-hero__lead {
  margin: 0 0 1.5rem;
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 42rem;
}
.about-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.about-hero__chips span {
  padding: 0.4rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid rgba(232, 197, 71, 0.35);
  background: rgba(232, 197, 71, 0.08);
  color: var(--gold);
}
.about-body {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}
.about-intro {
  margin-top: -2.5rem;
  position: relative;
  z-index: 1;
  margin-bottom: 2.5rem;
}
.about-intro__card {
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.25rem);
  background: var(--bg-card);
  border: 1px solid rgba(45, 212, 168, 0.28);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.about-intro__card p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.about-intro__card p:last-child {
  margin-bottom: 0;
}
.about-intro__emphasis {
  font-size: 1.12rem;
  color: var(--text) !important;
}
.about-block {
  margin-bottom: 2.5rem;
  max-width: 46rem;
}
.about-block__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--text);
}
.about-block p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.75;
}
.about-truth {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem 2rem;
  align-items: start;
  margin-bottom: 3rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: linear-gradient(135deg, rgba(232, 197, 71, 0.08) 0%, rgba(7, 11, 18, 0.4) 100%);
  border: 1px solid rgba(232, 197, 71, 0.3);
  border-radius: var(--radius);
}
.about-truth__icon {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
  opacity: 0.85;
}
.about-truth__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
}
.about-truth__content p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.about-truth__content p:last-child {
  margin-bottom: 0;
}
.about-pillars {
  margin-bottom: 3rem;
}
.about-pillars__heading {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  text-align: center;
}
.about-pillars__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.about-pillar {
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.4rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, transform 0.2s;
}
.about-pillar:hover {
  border-color: rgba(45, 212, 168, 0.35);
  transform: translateY(-2px);
}
.about-pillar--accent {
  border-color: rgba(45, 212, 168, 0.35);
  background: linear-gradient(160deg, rgba(45, 212, 168, 0.06) 0%, var(--bg-card) 100%);
}
.about-pillar__icon {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 1.35rem;
  color: var(--emerald);
}
.about-pillar__title {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
}
.about-pillar p {
  margin: 0 0 1rem;
  flex: 1;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.about-pillar__link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
}
.about-pillar__link:hover {
  color: var(--emerald);
}
.about-closing {
  margin-bottom: 2.5rem;
}
.about-quote {
  margin: 0;
  padding: clamp(2rem, 4vw, 2.75rem) clamp(1.75rem, 4vw, 2.5rem);
  background: var(--bg-card);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}
.about-quote p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.about-quote__lead {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.45rem) !important;
  color: var(--text) !important;
  line-height: 1.4 !important;
}
.about-quote__tagline {
  margin-bottom: 0 !important;
  font-family: var(--font-display);
  font-size: 1.2rem !important;
  color: var(--emerald) !important;
}
.about-cta {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}
.about-cta__card {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 1.1rem;
  text-decoration: none;
  color: inherit;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, background 0.2s;
}
.about-cta__card:hover {
  border-color: rgba(232, 197, 71, 0.45);
  background: rgba(232, 197, 71, 0.06);
}
.about-cta__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--emerald);
}
.about-cta__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--text);
}
@media (max-width: 900px) {
  .about-pillars__grid {
    grid-template-columns: 1fr;
  }
  .about-cta {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .about-truth {
    grid-template-columns: 1fr;
  }
  .about-intro {
    margin-top: -1.5rem;
  }
  .about-cta {
    grid-template-columns: 1fr;
  }
}

/* Masterclass — sidebar include + full page per game (no inner scroll panels) */
.masterclass-page {
  display: grid;
  grid-template-columns: minmax(260px, 300px) minmax(0, 1fr);
  gap: 2.5rem 3rem;
  align-items: start;
  max-width: var(--max);
  margin: 0 auto 3rem;
  padding: 2.25rem 1.25rem 0;
}
.masterclass-sidebar {
  min-width: 0;
  padding-right: 1.25rem;
  border-right: 1px solid var(--border);
}
.masterclass-sidebar__empty {
  font-size: 0.88rem;
  color: var(--text-muted);
}
.masterclass-sidebar__nav {
  display: block;
}
.masterclass-main {
  min-width: 0;
}
.masterclass-hub {
  padding: 0.25rem 0 2rem;
}
.masterclass-hub__banner {
  margin: 0 0 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}
.masterclass-hub__banner-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1000 / 625;
  object-fit: cover;
  object-position: center;
}
.masterclass-hub__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text);
}
.masterclass-hub__text {
  margin: 0 0 1rem;
  color: var(--text-muted);
  max-width: 42rem;
  line-height: 1.6;
}
.masterclass-hub__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}
.masterclass-hub__links a {
  color: var(--emerald);
  font-weight: 600;
  text-decoration: none;
}
.masterclass-hub__links a:hover {
  text-decoration: underline;
}
.page-header--compact .page-header__title {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
}
.page-header--breadcrumb-only {
  margin-bottom: 0.5rem;
}
.page-header--breadcrumb-only .page-header__breadcrumb {
  margin-bottom: 0;
}
/* Legacy layout aliases (unused) */
.masterclass-layout {
  display: grid;
  grid-template-columns: minmax(260px, 300px) minmax(0, 1fr);
  gap: 2.5rem 3rem;
  align-items: start;
  max-width: var(--max);
  margin: 0 auto 3rem;
  padding: 0 1.25rem;
}
.masterclass-tree__empty {
  padding: 1rem 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.mc-tree {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mc-cat + .mc-cat {
  border-top: 1px solid var(--border);
}
.mc-cat,
.mc-sub {
  margin: 0;
}
.mc-cat > summary,
.mc-sub > summary,
.mc-cat__btn,
.mc-sub__btn,
.mc-game__btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font: inherit;
  cursor: pointer;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  list-style: none;
}
.mc-cat > summary::-webkit-details-marker,
.mc-sub > summary::-webkit-details-marker {
  display: none;
}
.mc-cat > summary::marker,
.mc-sub > summary::marker {
  content: '';
}
.mc-cat__btn,
.mc-cat > summary {
  padding: 0.5rem 0.35rem;
  font-weight: 600;
  font-size: 0.84rem;
  color: var(--text);
}
.mc-cat__btn:hover,
.mc-cat > summary:hover,
.mc-sub__btn:hover,
.mc-sub > summary:hover,
.mc-game__btn:hover {
  color: var(--gold);
  background: rgba(232, 197, 71, 0.08);
}
.mc-cat[open] > summary {
  color: var(--gold);
  background: rgba(232, 197, 71, 0.1);
}
.mc-cat.is-open > .mc-cat__btn {
  color: var(--gold);
  background: rgba(232, 197, 71, 0.1);
}
.mc-cat__num {
  flex-shrink: 0;
  color: var(--gold-dim);
  font-variant-numeric: tabular-nums;
  min-width: 1.5rem;
}
.mc-cat.is-open > .mc-cat__btn .mc-cat__num {
  color: var(--gold);
}
.mc-cat__label,
.mc-sub__label {
  flex: 1;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}
.mc-cat__chevron,
.mc-sub__chevron {
  flex-shrink: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  opacity: 0.5;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.mc-cat[open] > summary .mc-cat__chevron,
.mc-cat.is-open > .mc-cat__btn .mc-cat__chevron {
  transform: rotate(45deg);
  opacity: 1;
  color: var(--gold);
}
.mc-sub[open] > summary .mc-sub__chevron,
.mc-sub.is-open > .mc-sub__btn .mc-sub__chevron {
  transform: rotate(45deg);
  opacity: 1;
  color: var(--emerald);
}
.mc-cat__panel {
  padding: 0 0 0.35rem;
}
.mc-sub-list {
  list-style: none;
  margin: 0;
  padding: 0.2rem 0 0.35rem 0.5rem;
  border-left: 2px solid rgba(232, 197, 71, 0.25);
}
.mc-sub__btn,
.mc-sub > summary {
  padding: 0.4rem 0.35rem 0.4rem 0.65rem;
  font-size: 0.8rem;
  font-weight: 500;
}
.mc-sub[open] > summary,
.mc-sub.is-open > .mc-sub__btn {
  color: var(--emerald);
  background: rgba(45, 212, 168, 0.1);
}
.mc-game-list {
  list-style: none;
  margin: 0 0 0.25rem 0.85rem;
  padding: 0.15rem 0 0.1rem;
  border-left: 1px solid rgba(45, 212, 168, 0.2);
}
.mc-game-list li {
  margin: 0;
}
.mc-game__btn {
  margin: 0 0.15rem;
  padding: 0.35rem 0.65rem 0.35rem 0.85rem;
  font-size: 0.78rem;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
}
.mc-game__btn.is-active,
.mc-game__btn.is-active:hover {
  color: var(--emerald);
  background: rgba(45, 212, 168, 0.14);
}
.mc-game__link {
  display: block;
  width: 100%;
  padding: 0.35rem 0.35rem 0.35rem 0.55rem;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: var(--text-muted);
  font: inherit;
  font-size: 0.8rem;
  text-align: left;
  text-decoration: none;
  transition: color 0.15s ease, background 0.15s ease;
}
.mc-game__link:hover {
  color: var(--text);
  background: rgba(79, 141, 255, 0.1);
}
.mc-game__link.is-active,
.mc-game__link.is-active:hover {
  color: var(--emerald);
  background: rgba(45, 212, 168, 0.14);
  font-weight: 600;
}
/* Article on game pages — flows with the page, no framed scroll panel */
.masterclass-main .masterclass-detail__game,
.masterclass-article {
  padding-bottom: 2rem;
}
.masterclass-detail__hero {
  padding: 0 0 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.masterclass-detail__body {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.masterclass-detail__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--emerald);
}
.masterclass-detail__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.15;
  color: var(--text);
}
.masterclass-detail__lead {
  margin-top: 1.15rem;
  padding: 1.15rem 1.35rem;
  border-radius: 12px;
  border: 1px solid rgba(45, 212, 168, 0.28);
  background: linear-gradient(135deg, rgba(45, 212, 168, 0.12), rgba(79, 141, 255, 0.06));
}
.masterclass-detail__lead .masterclass-detail__text {
  margin: 0;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: none;
}
.masterclass-detail__text {
  margin: 0 0 0.75rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 65ch;
}
.masterclass-detail__text:last-child {
  margin-bottom: 0;
}
.masterclass-detail__section {
  padding: 0 0 0.25rem;
  border: none;
  background: transparent;
}
.masterclass-detail__section--takeaway {
  margin-top: 0.5rem;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(232, 197, 71, 0.35);
}
.masterclass-detail__section-title {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.masterclass-detail__section-title::before {
  content: "";
  flex-shrink: 0;
  width: 4px;
  height: 1.1em;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--emerald), var(--gold));
}
.masterclass-detail__section--takeaway .masterclass-detail__section-title {
  color: #fde68a;
}
.masterclass-detail__section-body .masterclass-detail__text {
  max-width: none;
  margin-bottom: 0.65rem;
}
.masterclass-detail__section-body .masterclass-detail__text:last-child {
  margin-bottom: 0;
}
.masterclass-detail__seo-content {
  margin: 1.5rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-muted);
}
.masterclass-detail__seo-content .masterclass-detail__text {
  font-size: inherit;
}
@media (max-width: 900px) {
  .page-header .lead,
  .page-intro .lead,
  .page-intro .section__sub,
  .page-header .section__sub,
  .section__sub,
  .content-section > .lead,
  .contact-intro .lead {
    white-space: normal;
  }
}
@media (max-width: 900px) {
  .masterclass-page,
  .masterclass-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .masterclass-sidebar {
    padding-right: 0;
    padding-bottom: 1.25rem;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}

/* Public member profiles (@username) */
.public-profile {
  max-width: 1320px;
  margin: 0 auto;
}
.public-profile__hero {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.5rem 2rem;
  align-items: start;
  margin-bottom: 1.5rem;
}
.public-profile__identity {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}
.public-profile__card--bio {
  height: 100%;
  min-height: 100%;
}
.public-profile__columns {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(280px, 340px) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.public-profile__col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
}
.public-profile__avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
  flex-shrink: 0;
}
.public-profile__avatar--initial {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--accent);
}
.public-profile__name {
  margin: 0 0 0.25rem;
  font-size: 1.5rem;
  line-height: 1.2;
}
.public-profile__handle {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
}
.public-profile__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}
.public-profile__card--dm {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.public-profile__card--dm .public-profile__dm-form {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.public-profile__card--dm .public-profile__dm-form textarea {
  flex: 1;
  min-height: 200px;
}
.public-profile__card-title {
  margin: 0 0 1rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}
.public-profile__bio {
  margin: 0;
  line-height: 1.6;
  white-space: pre-wrap;
}
.public-profile__stats {
  margin: 0;
  display: grid;
  gap: 0.75rem;
}
.public-profile__stats dt {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin: 0;
}
.public-profile__stats dd {
  margin: 0.15rem 0 0;
  font-weight: 600;
}
.public-profile__dm-form textarea {
  width: 100%;
  min-height: 160px;
  margin-bottom: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-deep);
  color: var(--text);
  font: inherit;
  resize: vertical;
}
.public-profile__dm-hint {
  margin: 0;
  line-height: 1.55;
  color: var(--text-muted);
}
.public-profile__empty {
  margin: 0;
  color: var(--text-muted);
}
.public-profile__posts {
  list-style: none;
  margin: 0;
  padding: 0;
}
.public-profile__post {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}
.public-profile__post:last-child { border-bottom: none; }
.public-profile__post-type {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-right: 0.5rem;
}
.public-profile__post time {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}
@media (max-width: 1024px) {
  .public-profile__hero {
    grid-template-columns: 1fr;
  }
  .public-profile__identity {
    justify-content: flex-start;
  }
  .public-profile__columns {
    grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  }
  .public-profile__col--posts {
    grid-column: 1 / -1;
  }
}
@media (max-width: 720px) {
  .public-profile__columns {
    grid-template-columns: 1fr;
  }
  .public-profile__col--posts {
    grid-column: auto;
  }
  .public-profile__identity {
    flex-wrap: wrap;
  }
  .public-profile__avatar,
  .public-profile__avatar--initial {
    width: 96px;
    height: 96px;
  }
  .public-profile__avatar--initial {
    font-size: 2rem;
  }
  .public-profile__name {
    font-size: 1.35rem;
  }
}

.member-pending-approval.form-card {
  max-width: min(920px, calc(100vw - 2rem));
  padding: 2rem 2.5rem;
}
.member-pending-approval-page .content-section.page-header {
  max-width: min(920px, calc(100vw - 2rem));
  margin-left: auto;
  margin-right: auto;
}
.member-pending-approval__list {
  margin: 1rem 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.member-pending-approval__browse {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1.75rem;
}
.member-pending-approval__browse .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
}
.member-pending-approval__browse .btn-secondary:hover,
.member-pending-approval__browse .btn-secondary:focus-visible {
  background: var(--emerald);
  color: #0a0f18;
  border-color: var(--emerald);
  box-shadow: 0 6px 20px rgba(45, 212, 168, 0.35);
}
@media (max-width: 640px) {
  .member-pending-approval__browse {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Member messages inbox */
.members-nav__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.35rem;
  margin-left: 0.35rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  vertical-align: middle;
}
.members-messages-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.members-messages-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.members-messages-item.is-unread {
  background: color-mix(in srgb, var(--accent) 6%, transparent);
  margin: 0 -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: var(--radius);
}
.members-messages-item__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  margin-bottom: 0.5rem;
}
.members-messages-item__head a {
  font-weight: 700;
}
.members-messages-item__badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
}
.members-messages-item__body {
  margin: 0 0 0.75rem;
  line-height: 1.55;
  color: var(--text-muted);
}
.members-messages-item__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.members-messages-item__reply {
  margin-top: 1rem;
}
.members-messages-item__reply textarea {
  width: 100%;
  min-height: 100px;
  margin-bottom: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-deep);
  color: var(--text);
  font: inherit;
}
.members-messages-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.members-messages-pagination__info {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.members-messages__sent-note {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  color: var(--success, #3d9a5c);
}

/* Questions & Answers hub */
.qa-page .qa-ask-panel {
  margin-bottom: 1.5rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-elevated, rgba(255, 255, 255, 0.03));
}
.qa-ask-panel__title {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
}
.qa-ask-panel__guest {
  margin: 0 0 0.75rem;
  color: var(--text-muted);
}
.qa-ask-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-top: 0.75rem;
}
.qa-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.qa-toolbar__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.qa-filter-pill {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
}
.qa-filter-pill.is-active,
.qa-filter-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.qa-toolbar__count {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.qa-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.qa-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 0.95rem;
}
.qa-table th,
.qa-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
}
.qa-table thead th {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--surface-elevated, rgba(255, 255, 255, 0.03));
}
.qa-table tbody tr:last-child td {
  border-bottom: none;
}
.qa-table__col-member { width: 11.5rem; }
.qa-table__col-likes { width: 4.25rem; text-align: center; }
.qa-table__col-answers { width: 5.5rem; text-align: center; }
.qa-table__col-activity { width: 7.5rem; }
.qa-table thead .qa-table__col-likes,
.qa-table thead .qa-table__col-answers {
  text-align: center;
}
.qa-table__member-inner {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  min-width: 0;
}
.qa-table__avatar-link {
  display: block;
  flex-shrink: 0;
  line-height: 0;
  text-decoration: none;
}
.qa-table__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.qa-table__avatar--initial {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--border);
  font-weight: 600;
}
.qa-table__member-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.qa-table__author-name {
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  overflow-wrap: anywhere;
}
a.qa-table__author-name:hover { color: var(--gold); }
.qa-table__country {
  font-size: 0.8rem;
  color: var(--text-muted);
  overflow-wrap: anywhere;
}
.qa-table__title {
  display: block;
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
  text-decoration: none;
  overflow-wrap: anywhere;
}
.qa-table__title:hover { color: var(--gold); }
.qa-table__excerpt {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.45;
  overflow-wrap: anywhere;
}
.qa-table__likes,
.qa-table__answers {
  text-align: center;
  font-variant-numeric: tabular-nums;
  color: var(--text);
}
.qa-table__activity {
  font-size: 0.88rem;
  color: var(--text-muted);
  white-space: nowrap;
}
@media (max-width: 720px) {
  .qa-table { table-layout: auto; min-width: 36rem; }
}
.qa-rules-modal__body {
  max-height: 60vh;
  overflow-y: auto;
}
.qa-answers-gate,
.qa-answers-section {
  margin-top: 1.5rem;
}
.forum-post__role {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Newsletter signup popup — PVH gold & emerald landing style */
body.newsletter-modal-open {
  overflow: hidden;
}
.newsletter-modal {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(7, 11, 18, 0.88);
  backdrop-filter: blur(6px);
}
.newsletter-modal[hidden] {
  display: none !important;
}
.newsletter-modal__panel {
  position: relative;
  width: min(860px, 100%);
  max-height: calc(100vh - 2.5rem);
  overflow-y: auto;
  padding: 1.5rem 1.65rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(232, 197, 71, 0.45);
  background: linear-gradient(165deg, var(--bg-elevated) 0%, var(--bg-card) 55%, #0c1422 100%);
  box-shadow:
    0 0 0 1px rgba(45, 212, 168, 0.12) inset,
    0 0 48px rgba(45, 212, 168, 0.12),
    0 0 32px rgba(232, 197, 71, 0.1),
    var(--shadow);
  color: var(--text);
  text-align: left;
}
.newsletter-modal__panel::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(ellipse 90% 55% at 50% -15%, rgba(45, 212, 168, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 45% at 100% 100%, rgba(232, 197, 71, 0.14), transparent 50%);
  pointer-events: none;
}
.newsletter-modal__panel::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(90deg, var(--emerald), var(--gold), var(--emerald));
  pointer-events: none;
}
.newsletter-modal__inner {
  position: relative;
  z-index: 1;
}
.newsletter-modal__cols {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 300px);
  gap: 1.5rem;
  align-items: stretch;
}
.newsletter-modal__col--copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 0.25rem;
}
.newsletter-modal__col--form {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.newsletter-modal__form-kicker {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
}
.newsletter-modal__col--form .newsletter-modal__form {
  margin: 0;
  padding: 1.15rem 1.2rem;
  border-radius: 12px;
  background: rgba(7, 11, 18, 0.65);
  border: 1px solid rgba(232, 197, 71, 0.28);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}
.newsletter-modal__inner--success {
  padding: 0.25rem 0;
}
.newsletter-modal__cols--success {
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}
.newsletter-modal__col--success-copy,
.newsletter-modal__col--account {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.newsletter-modal__success-card,
.newsletter-modal__account-card {
  height: 100%;
  padding: 1.15rem 1.2rem;
  border-radius: 12px;
  background: rgba(7, 11, 18, 0.65);
  border: 1px solid rgba(232, 197, 71, 0.28);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.newsletter-modal__success-card .newsletter-modal__lead,
.newsletter-modal__account-card .newsletter-modal__lead {
  margin-bottom: 0;
  max-width: 22rem;
}
#pvh-newsletter-success-msg {
  white-space: pre-line;
}
.newsletter-modal__success-card .newsletter-modal__title {
  text-align: center;
}
.newsletter-modal__inner--success-only .newsletter-modal__cols--success {
  grid-template-columns: 1fr;
  max-width: 420px;
  margin: 0 auto;
}
.newsletter-modal__title--sm {
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
}
.newsletter-modal__col--account .newsletter-modal__lead {
  margin-bottom: 0;
}
.newsletter-modal__close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--bg-deep);
  color: var(--text-muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.newsletter-modal__close:hover {
  color: var(--gold);
  border-color: rgba(232, 197, 71, 0.5);
  transform: scale(1.05);
}
.newsletter-modal__badge {
  display: inline-block;
  margin: 0 0 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(45, 212, 168, 0.14);
  border: 1px solid rgba(45, 212, 168, 0.35);
  color: var(--emerald);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.newsletter-modal__eyebrow {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.newsletter-modal__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}
.newsletter-modal__title-accent {
  display: inline;
  background: linear-gradient(135deg, var(--gold) 0%, #f5e6a8 40%, var(--emerald) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 20px rgba(232, 197, 71, 0.35));
}
.newsletter-modal__inner--success .newsletter-modal__title-accent {
  display: block;
  margin-top: 0.15rem;
}
.newsletter-modal__hook {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.03em;
  color: var(--emerald);
  text-transform: none;
}
.newsletter-modal__lead {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--text-muted);
}
.newsletter-modal__lead strong {
  color: var(--text);
}
.newsletter-modal__lead em {
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}
.newsletter-modal__perks {
  margin: 0;
  padding: 0.65rem 0.85rem;
  list-style: none;
  text-align: left;
  font-size: 0.88rem;
  line-height: 1.5;
  background: rgba(7, 11, 18, 0.55);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.newsletter-modal__perks li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
}
.newsletter-modal__perks li:last-child {
  margin-bottom: 0;
}
.newsletter-modal__perk-tag {
  flex-shrink: 0;
  min-width: 2.1rem;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: #0a0f18;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}
.newsletter-modal__form {
  text-align: left;
}
.newsletter-modal__label {
  display: block;
  margin-bottom: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.newsletter-modal__input {
  display: block;
  width: 100%;
  margin-bottom: 0.5rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(45, 212, 168, 0.35);
  border-radius: 10px;
  background: var(--bg-deep);
  color: var(--text);
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.newsletter-modal__input::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}
.newsletter-modal__input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(232, 197, 71, 0.2);
}
.newsletter-modal__hint {
  min-height: 1.1rem;
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: left;
}
.newsletter-modal__hint.is-error {
  color: #ff8a8a;
  font-weight: 600;
}
.newsletter-modal__submit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  width: 100%;
  padding: 0.85rem 1.25rem;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dim) 100%);
  color: #0a0f18;
  font-family: var(--font-display);
  cursor: pointer;
  box-shadow:
    0 8px 28px rgba(232, 197, 71, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.15) inset;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}
.newsletter-modal__submit-text {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.15;
  text-transform: uppercase;
}
.newsletter-modal__submit-sub {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: none;
  opacity: 0.9;
}
.newsletter-modal__submit:hover:not(:disabled) {
  transform: translateY(-2px) scale(1.01);
  filter: brightness(1.06);
  box-shadow:
    0 12px 36px rgba(232, 197, 71, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}
.newsletter-modal__submit:disabled {
  opacity: 0.65;
  cursor: wait;
}
.newsletter-modal__urgency {
  margin: 0.65rem 0 0;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--emerald);
  text-align: center;
}
.newsletter-modal__fine {
  margin: 0.45rem 0 0;
  font-size: 0.65rem;
  line-height: 1.3;
  color: var(--text-muted);
  opacity: 0.85;
  text-align: center;
}
@media (max-width: 720px) {
  .newsletter-modal__cols,
  .newsletter-modal__cols--success {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .newsletter-modal__col--copy {
    padding-right: 0;
  }
  .newsletter-modal__title-accent {
    display: block;
    margin-top: 0.1rem;
  }
}
.newsletter-modal__success-icon {
  margin: 0 0 0.5rem;
  font-size: 3rem;
  line-height: 1;
  color: var(--emerald);
  text-shadow: 0 0 24px rgba(45, 212, 168, 0.5);
}
.newsletter-modal__success-card .newsletter-modal__title-accent {
  display: block;
  margin-top: 0.1rem;
}
.newsletter-modal__account-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.25rem;
}
.newsletter-modal__later {
  font-family: var(--font-display) !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  color: var(--text-muted) !important;
}

/* Newsletter signup banner — online casinos listing */
body:has(.newsletter-banner) .site-footer {
  margin-top: 0;
}
.newsletter-banner {
  width: 100%;
  box-sizing: border-box;
  margin-top: 3rem;
  padding: 1.75rem 1.25rem 2.5rem;
  background: rgba(7, 11, 18, 0.98);
  border-top: 1px solid rgba(232, 197, 71, 0.25);
}
body:not(:has(.site-footer)) .newsletter-banner {
  margin-top: 0;
  padding: 1.25rem 1.25rem 1.5rem;
}
.newsletter-banner__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.newsletter-banner__panel {
  position: relative;
  overflow: hidden;
  padding: 1.35rem 1.5rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid rgba(232, 197, 71, 0.45);
  background: linear-gradient(165deg, var(--bg-elevated) 0%, var(--bg-card) 55%, #0c1422 100%);
  box-shadow:
    0 0 0 1px rgba(45, 212, 168, 0.12) inset,
    0 0 48px rgba(45, 212, 168, 0.12),
    0 0 32px rgba(232, 197, 71, 0.1),
    var(--shadow);
  color: var(--text);
  text-align: left;
}
.newsletter-banner__panel::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(ellipse 90% 55% at 50% -15%, rgba(45, 212, 168, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 45% at 100% 100%, rgba(232, 197, 71, 0.14), transparent 50%);
  pointer-events: none;
}
.newsletter-banner__panel::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(90deg, var(--emerald), var(--gold), var(--emerald));
  pointer-events: none;
}
.newsletter-banner__step {
  position: relative;
  z-index: 1;
}
.newsletter-banner__cols {
  display: grid;
  grid-template-columns: minmax(0, 60%) minmax(0, 40%);
  gap: 1.75rem;
  align-items: center;
}
.newsletter-banner__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.newsletter-banner__title {
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
}
.newsletter-banner__lead {
  margin-bottom: 0.65rem;
}
.newsletter-banner__perks {
  margin-top: 0.35rem;
  width: 100%;
  max-width: 20rem;
  text-align: left;
}
.newsletter-banner__form {
  margin: 0;
  padding: 1.15rem 1.2rem;
  border-radius: 12px;
  background: rgba(7, 11, 18, 0.65);
  border: 1px solid rgba(232, 197, 71, 0.28);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}
.newsletter-banner__form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.65rem;
  align-items: stretch;
}
.newsletter-banner__input {
  margin-bottom: 0;
}
.newsletter-banner__submit {
  width: auto;
  min-width: 9.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.newsletter-banner__success-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}
.newsletter-banner__success-cols--solo {
  grid-template-columns: minmax(0, 420px);
  justify-content: center;
  margin: 0 auto;
}
.newsletter-banner__success-card,
.newsletter-banner__account-card {
  height: 100%;
}
@media (max-width: 900px) {
  .newsletter-banner__cols {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .newsletter-banner__success-cols {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .newsletter-banner {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .newsletter-banner__panel {
    padding: 1.15rem 1rem 1.2rem;
  }
  .newsletter-banner__form-row {
    grid-template-columns: 1fr;
  }
  .newsletter-banner__submit {
    width: 100%;
    min-width: 0;
  }
}

/* Member profile settings */
.member-profile-form--settings {
  max-width: 720px;
}
.member-profile-form__section + .member-profile-form__section {
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}
.member-profile-form__section-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--gold);
}
.member-profile-readonly {
  margin: 0;
  display: grid;
  gap: 0.85rem;
}
.member-profile-readonly--account {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  align-items: start;
}
@media (max-width: 720px) {
  .member-profile-readonly--account {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
}
.member-profile-readonly__row {
  display: grid;
  gap: 0.2rem;
}
.member-profile-readonly__row dt {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.member-profile-readonly__row dd {
  margin: 0;
  font-weight: 500;
  color: var(--text);
  word-break: break-word;
}
.member-profile-form__photo-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.member-profile-form__photo-preview {
  width: 96px;
  height: 96px;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}
.member-profile-form__photo-preview--empty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}
.member-profile-form__photo-copy p {
  margin: 0 0 0.75rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}
