/* --------------------------------------------------------------------------
   variables
   -------------------------------------------------------------------------- */
:root {
  --bg-primary: #0d0d1a;
  --bg-secondary: #13132a;
  --bg-card: #1a1a35;
  --bg-card-hover: #1f1f3d;
  --accent-pink: #e91e8c;
  --accent-pink-hover: #c41578;
  --accent-blue: #2a2a5a;
  --text-primary: #ffffff;
  --text-secondary: #b0b0d0;
  --text-muted: #6b6b9a;
  --border-color: #2a2a5a;
  --gold: #f5a623;
  --nav-bg: #0a0a1a;
  --touch-min: 44px;
  --radius-xs: 6px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 14px;
  --content-max: 1280px;
  --sidebar-width: 320px;

  /* Gradients (shared CTAs / icons / surfaces) */
  --gradient-cta: linear-gradient(135deg, #e91e8c, #c41578);
  --gradient-icon: linear-gradient(135deg, #e91e8c, #7b2ff7);
  --gradient-thead: linear-gradient(135deg, #e91e8c22, #7b2ff722);
  --gradient-surface-soft: linear-gradient(135deg, rgba(233, 30, 140, 0.08), rgba(123, 47, 247, 0.08));
  --gradient-bonus-box: linear-gradient(135deg, #1a0a2e, #0d1a3a);

  /* Elevation */
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.25);
  --shadow-cta: 0 4px 16px rgba(233, 30, 140, 0.35);
  --shadow-cta-lg: 0 4px 24px rgba(233, 30, 140, 0.4);
  --shadow-nav: 0 1px 0 rgba(0, 0, 0, 0.35);
  --focus-ring: 0 0 0 3px rgba(233, 30, 140, 0.15);

  /* Motion */
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
  --duration-fast: 0.15s;
  --duration-base: 0.2s;
}

/* --------------------------------------------------------------------------
   reset / base
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  max-width: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent-pink);
  text-decoration: none;
  transition: color var(--duration-base) var(--ease-out);
}

a:hover {
  color: #ff4db8;
}

/* Long dynamic template strings: safe wrapping */
.content-area,
.section-block,
.highlight-box,
.author-bio,
.comment-text,
.faq-wrapper,
.reviews-wrapper,
.sidebar-card,
footer,
.toc-wrapper {
  overflow-wrap: anywhere;
  word-wrap: break-word;
}

/* --------------------------------------------------------------------------
   layout (mobile-first)
   -------------------------------------------------------------------------- */
.main-wrapper {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 1.5rem 1rem 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.content-area {
  min-width: 0;
  max-width: 100%;
}

/* --------------------------------------------------------------------------
   navbar (mobile-first)
   -------------------------------------------------------------------------- */
.navbar {
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-nav);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 0.75rem;
}

.navbar-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  height: auto;
  padding: 0.35rem 0;
  gap: 0.5rem;
  min-width: 0;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 1 auto;
  min-width: 0;
  max-width: min(100%, clamp(110px, 52vw, 200px));
  text-decoration: none;
}

.navbar-logo {
  display: block;
  width: auto;
  max-width: 100%;
  height: clamp(28px, 7vw, 34px);
  object-fit: contain;
  flex-shrink: 1;
}

.navbar-brand .brand-icon {
  width: 34px;
  height: 34px;
  background: var(--gradient-icon);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--text-primary);
  background: var(--accent-blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.btn-login {
  color: var(--text-primary);
  background: transparent;
  border: 1px solid var(--border-color);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: border-color var(--duration-base) var(--ease-out),
    background var(--duration-base) var(--ease-out);
  min-height: var(--touch-min);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}

.btn-login:hover {
  border-color: var(--accent-pink);
  background: rgba(233, 30, 140, 0.1);
  color: var(--text-primary);
}

.btn-signup {
  background: var(--gradient-cta);
  color: #fff;
  border: none;
  padding: 0.5rem 0.95rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: opacity var(--duration-base) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
  white-space: nowrap;
  min-height: var(--touch-min);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}

.btn-signup:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  color: #fff;
}

/* --------------------------------------------------------------------------
   hero (mobile-first)
   -------------------------------------------------------------------------- */
.hero {
  background: linear-gradient(135deg, #0a0a1a 0%, #1a0a2e 30%, #0d1a3a 60%, #0a1228 100%);
  padding: 2.25rem 1rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(123, 47, 247, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 30% 80%, rgba(233, 30, 140, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

.hero-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.hero-title {
  font-size: clamp(1.65rem, 6.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.12;
  color: var(--text-primary);
  text-shadow: 0 2px 20px rgba(233, 30, 140, 0.3);
  overflow-wrap: anywhere;
}

.hero-title span {
  color: #fff;
}

.hero-bonus {
  font-size: 0.98rem;
  color: var(--text-secondary);
  max-width: 100%;
  line-height: 1.55;
}

.hero-bonus strong {
  color: var(--gold);
}

.hero-cta {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-cta);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: var(--shadow-cta-lg);
  transition: transform var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out),
    opacity var(--duration-fast) var(--ease-out);
  width: 100%;
  max-width: 100%;
  min-height: var(--touch-min);
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.btn-play:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(233, 30, 140, 0.55);
  opacity: 0.95;
  color: #fff;
}

.payment-icons {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.payment-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xs);
  padding: 0.35rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  max-width: 100%;
}

.hero-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  align-content: start;
}

@media (min-width: 480px) {
  .hero-visual {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
  }
}

.game-card-preview.hero-game-card {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  min-width: 0;
  background: #0f0f1f;
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  transition: transform var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out);
}

.game-card-preview.hero-game-card .hero-game-card__media {
  position: absolute;
  inset: 0;
}

.game-card-preview.hero-game-card .media-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.game-card-preview.hero-game-card .label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
  padding: 1.5rem 0.35rem 0.45rem;
  font-size: 0.58rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.2;
  overflow-wrap: anywhere;
  color: rgba(255, 255, 255, 0.95);
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   stats bar (mobile-first)
   -------------------------------------------------------------------------- */
.stats-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0.75rem;
}

.stats-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.stat-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1rem 0.65rem;
  text-align: center;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
}

.stat-value {
  font-size: clamp(1.05rem, 3.8vw, 1.4rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.45;
  hyphens: auto;
}

/* --------------------------------------------------------------------------
   games (mobile-first)
   -------------------------------------------------------------------------- */
.games-section {
  background: var(--bg-secondary);
  padding: 2rem 1rem;
}

.games-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.games-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.games-title {
  margin: 0;
  font-size: clamp(1.15rem, 4vw, 1.4rem);
  font-weight: 800;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
}

.games-title .fire {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.see-all-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--duration-base) var(--ease-out),
    border-color var(--duration-base) var(--ease-out);
  min-height: var(--touch-min);
  display: inline-flex;
  align-items: center;
  -webkit-tap-highlight-color: transparent;
}

.see-all-btn:hover {
  color: var(--text-primary);
  border-color: var(--accent-pink);
}

/* Shared game thumbnail: dark overlay + play image (desktop hover / focus only; see MQs) */
.media-card {
  position: relative;
  overflow: hidden;
}

.media-card-overlay,
.media-card-play {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.media-card-overlay {
  background: rgba(0, 0, 0, 0.38);
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-out);
}

.media-card-play {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity var(--duration-base) var(--ease-out),
    transform var(--duration-base) var(--ease-out);
}

.media-card-play-img {
  width: clamp(44px, 10vw, 72px);
  height: auto;
  max-width: min(100%, 72px);
  object-fit: contain;
  display: block;
}

@media (hover: none), (pointer: coarse) {
  .media-card-overlay,
  .media-card-play {
    display: none !important;
  }
}

/* Hot games: horizontal strip / carousel row */
.games-strip-row {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  padding-bottom: 0.25rem;
  margin: 0;
  min-width: 0;
}

.games-strip-card {
  position: relative;
  flex: 0 0 calc(42vw - 0.35rem);
  min-width: 118px;
  max-width: 200px;
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  transition: transform var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out);
}

.games-strip-media {
  aspect-ratio: 3 / 4;
  width: 100%;
  background: #0f0f1f;
}

.games-strip-media .media-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (hover: hover) and (pointer: fine) {
  .games-strip-card:hover .media-card-overlay,
  .games-strip-card:focus-within .media-card-overlay,
  .live-card:hover .media-card-overlay,
  .live-card:focus-within .media-card-overlay,
  .game-card-preview.hero-game-card:hover .media-card-overlay,
  .game-card-preview.hero-game-card:focus-within .media-card-overlay {
    opacity: 1;
  }

  .games-strip-card:hover .media-card-play,
  .games-strip-card:focus-within .media-card-play,
  .live-card:hover .media-card-play,
  .live-card:focus-within .media-card-play,
  .game-card-preview.hero-game-card:hover .media-card-play,
  .game-card-preview.hero-game-card:focus-within .media-card-play {
    opacity: 1;
    transform: scale(1);
  }

  .games-strip-card:hover,
  .games-strip-card:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  }

  .live-card:hover,
  .live-card:focus-within {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
    border-color: rgba(233, 30, 140, 0.3);
  }

  .game-card-preview.hero-game-card:hover,
  .game-card-preview.hero-game-card:focus-within {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
  }
}

@media (min-width: 1024px) {
  .games-strip-row {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.75rem;
    overflow-x: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
  }

  .games-strip-card {
    flex: unset;
    min-width: 0;
    max-width: none;
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   live games row + payments (after hot games)
   -------------------------------------------------------------------------- */
.live-row {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  padding-bottom: 0.25rem;
  margin: 0;
  min-width: 0;
}

.live-card {
  position: relative;
  flex: 0 0 calc(42vw - 0.35rem);
  min-width: 140px;
  max-width: 210px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  transition: transform var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out),
    border-color var(--duration-base) var(--ease-out);
}

.live-card-media {
  aspect-ratio: 3 / 4;
  width: 100%;
  background: #0f0f1f;
}

.live-card-media .media-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.live-card-body {
  padding: 0.45rem 0.5rem 0.55rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.live-card-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.live-card-meta {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (min-width: 1024px) {
  .live-row {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.75rem;
    overflow-x: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
  }

  .live-card {
    flex: unset;
    min-width: 0;
    max-width: none;
    width: 100%;
  }
}

.payments-section {
  padding: 1.5rem 1rem 2rem;
  background: var(--bg-secondary);
}

.payments-header {
  margin-bottom: 1.1rem;
}

.payments-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  min-width: 0;
}

.payment-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 5.5rem;
  padding: 0.65rem 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-secondary);
  transition: border-color var(--duration-base) var(--ease-out),
    background var(--duration-base) var(--ease-out);
  -webkit-tap-highlight-color: transparent;
}

.payment-card:hover {
  border-color: rgba(233, 30, 140, 0.35);
  background: var(--bg-card-hover);
}

.payment-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 2.5rem;
}

.payment-card-icon img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.payment-card-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

@media (min-width: 640px) {
  .payments-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .payments-row {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
}

  /* --------------------------------------------------------------------------
   content
   -------------------------------------------------------------------------- */
.toc-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1rem;
  margin-bottom: 1.5rem;
}

.toc-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border-color);
}

.content-area p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.content-area p:last-child {
  margin-bottom: 0;
}

.section-block {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1rem;
  margin-bottom: 1.25rem;
}

.section-block--intro {
  background: var(--gradient-surface-soft);
  border-color: rgba(233,30,140,0.25);
}

.content-area .page-title-display {
  font-size: clamp(1.35rem, 5vw, 2.4rem);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 0.65rem;
}

.content-area .page-lead-text {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 0;
  min-width: 0;
}

.section-heading {
  font-size: clamp(1.1rem, 3.5vw, 1.3rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.3;
}

.section-heading .icon {
  width: 28px;
  height: 28px;
  background: var(--gradient-icon);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.highlight-box {
  background: var(--gradient-surface-soft);
  border: 1px solid rgba(233, 30, 140, 0.25);
  border-radius: var(--radius-md);
  padding: 1rem 1rem;
  margin: 1rem 0;
  min-width: 0;
}

.highlight-box__inner {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.highlight-box__inner > *:first-child {
  margin-top: 0;
}

.highlight-box__inner > *:last-child {
  margin-bottom: 0;
}

ul.styled-list {
  list-style: none;
  padding: 0;
}

ul.styled-list li {
  padding: 0.45rem 0;
  padding-left: 1.35rem;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.55;
}

ul.styled-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--accent-pink);
  font-size: 0.65rem;
  top: 0.55rem;
}

/* Injected HTML: {{content}}, {{bonus}}, {{toc}}, {{author_bio}}, etc. */
.content-rte {
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

.content-rte pre,
.content-rte code {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.content-rte pre {
  overflow-x: auto;
  max-width: 100%;
  padding: 0.75rem 1rem;
  margin: 0.75rem 0;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  line-height: 1.5;
}

.content-rte iframe,
.content-rte video,
.content-rte embed {
  max-width: 100%;
}

.content-rte video {
  height: auto;
}

.content-rte h2,
.content-rte h3,
.content-rte h4 {
  color: var(--text-primary);
  font-weight: 800;
  line-height: 1.25;
  margin: 1.15rem 0 0.6rem;
  overflow-wrap: anywhere;
}

.content-rte > h2:first-child,
.content-rte > h3:first-child,
.content-rte > h4:first-child {
  margin-top: 0;
}

.content-rte h2 {
  font-size: clamp(1.12rem, 3.5vw, 1.45rem);
}

.content-rte h3 {
  font-size: clamp(1.02rem, 3vw, 1.25rem);
}

.content-rte h4 {
  font-size: 1rem;
  font-weight: 700;
}

.content-rte p {
  margin: 0 0 0.85rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.content-rte p:last-child {
  margin-bottom: 0;
}

.content-rte a {
  color: var(--accent-pink);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  transition: color var(--duration-base) var(--ease-out);
}

.content-rte a:hover {
  color: #ff4db8;
}

.content-rte strong,
.content-rte b {
  color: var(--text-primary);
  font-weight: 700;
}

.content-rte ul,
.content-rte ol {
  margin: 0.45rem 0 0.85rem;
  padding-left: 1.35rem;
  color: var(--text-secondary);
}

.content-rte ul {
  list-style: disc;
}

.content-rte ol {
  list-style: decimal;
}

.content-rte li {
  margin: 0.35rem 0;
  line-height: 1.55;
}

.content-rte li > ul,
.content-rte li > ol {
  margin-top: 0.35rem;
  margin-bottom: 0.35rem;
}

.content-rte table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  min-width: min(100%, 480px);
  font-size: 0.85rem;
  margin: 0.75rem 0;
}

.toc-wrapper ul,
.toc-wrapper ol {
  margin: 0;
  padding-left: 1.35rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.55;
}

.toc-wrapper li {
  margin: 0.4rem 0;
}

.toc-wrapper a {
  color: var(--accent-pink);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.toc-wrapper a:hover {
  color: #ff4db8;
}

.author-bio a {
  color: var(--accent-pink);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.author-bio a:hover {
  color: #ff4db8;
}

.author-bio p {
  margin-bottom: 0.65rem;
}

.author-bio p:last-child {
  margin-bottom: 0;
}

.author-bio strong,
.author-bio b {
  color: var(--text-primary);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   tables
   -------------------------------------------------------------------------- */
.table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  border-radius: var(--radius-md);
  margin: 1rem 0;
}

table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  font-size: 0.85rem;
}

thead {
  background: var(--gradient-thead);
}

th {
  padding: 0.75rem 0.65rem;
  text-align: left;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
  white-space: nowrap;
}

td {
  padding: 0.75rem 0.65rem;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
  vertical-align: middle;
  overflow-wrap: anywhere;
}

tr:last-child td {
  border-bottom: none;
}

tbody tr {
  background: var(--bg-card);
  transition: background var(--duration-base) var(--ease-out);
}

tbody tr:hover {
  background: var(--bg-card-hover);
}

tbody tr:nth-child(even) {
  background: rgba(255,255,255,0.02);
}

td .badge {
  display: inline-block;
  background: rgba(233, 30, 140, 0.15);
  color: var(--accent-pink);
  border: 1px solid rgba(233, 30, 140, 0.3);
  border-radius: var(--radius-xs);
  padding: 0.15rem 0.45rem;
  font-size: 0.74rem;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   faq
   -------------------------------------------------------------------------- */
.faq-wrapper {
  margin-bottom: 1.75rem;
}

details {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 0.65rem;
  transition: border-color var(--duration-base) var(--ease-out);
  overflow: hidden;
}

details:hover {
  border-color: rgba(233, 30, 140, 0.4);
}

details[open] {
  border-color: rgba(233, 30, 140, 0.5);
  background: var(--bg-card-hover);
}

summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 1rem 1rem;
  min-height: var(--touch-min);
  color: var(--text-primary);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  user-select: none;
  transition: color var(--duration-base) var(--ease-out);
  -webkit-tap-highlight-color: transparent;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: '+';
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--accent-pink);
  flex-shrink: 0;
  transition: transform 0.25s;
  line-height: 1;
}

details[open] summary::after {
  transform: rotate(45deg);
}

details[open] summary {
  color: var(--accent-pink);
  border-bottom: 1px solid var(--border-color);
}

details > :not(summary) {
  padding: 0.85rem 1rem 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}

/* --------------------------------------------------------------------------
   reviews
   -------------------------------------------------------------------------- */
.reviews-wrapper {
  margin-bottom: 1.75rem;
}

/* Shared block headings (FAQ, reviews) */
.faq-title,
.reviews-title {
  font-size: clamp(1.1rem, 3.5vw, 1.3rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.3;
}

.comment {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1rem 1rem;
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-card);
  transition: border-color var(--duration-base) var(--ease-out);
}

.comment:hover {
  border-color: rgba(233, 30, 140, 0.3);
}

.comment-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.35rem;
}

.comment-author {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--accent-pink);
  overflow-wrap: anywhere;
}

.comment-date {
  font-size: 0.82rem;
  opacity: 0.6;
  color: var(--text-secondary);
}

.comment-text {
  margin-top: 0.45rem;
  line-height: 1.65;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.comment-stars {
  color: var(--gold);
  font-size: 0.88rem;
  margin-top: 0.2rem;
}

.review-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  box-shadow: var(--shadow-card);
  margin-top: 1.25rem;
}

.review-form-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border-color);
}

.review-form-card input[type="text"],
.review-form-card textarea {
  width: 100%;
  max-width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 1rem;
  font-family: inherit;
  padding: 0.85rem 1rem;
  margin-bottom: 0.75rem;
  outline: none;
  transition: border-color var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out);
  resize: vertical;
  min-height: var(--touch-min);
}

.review-form-card textarea {
  min-height: 120px;
}

.review-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.review-form-card input[type="text"]:focus,
.review-form-card textarea:focus {
  border-color: var(--accent-pink);
  box-shadow: var(--focus-ring);
}

.review-form-card button[type="submit"] {
  width: 100%;
  background: var(--gradient-cta);
  color: #fff;
  border: none;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity var(--duration-base) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  min-height: var(--touch-min);
  -webkit-tap-highlight-color: transparent;
}

.review-form-card button[type="submit"]:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   author
   -------------------------------------------------------------------------- */
.author-section {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1rem;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.author-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--gradient-icon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(233, 30, 140, 0.35);
}

.author-info {
  flex: 1;
  min-width: 0;
  width: 100%;
}

.author-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-pink);
  margin-bottom: 0.3rem;
}

.author-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.45rem;
  overflow-wrap: anywhere;
}

.author-bio {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.65;
  text-align: left;
}

/* --------------------------------------------------------------------------
   sidebar (mobile-first)
   -------------------------------------------------------------------------- */
.sidebar {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  width: 100%;
  max-width: 100%;
}

.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1rem;
  width: 100%;
  max-width: 100%;
}

.sidebar-card-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border-color);
}

.sidebar-card--cta {
  text-align: center;
}

.sidebar-card-title--cta {
  text-align: center;
  border: none;
  margin-bottom: 0.5rem;
}

.sidebar-cta-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  line-height: 1.55;
}

.bonus-box {
  background: var(--gradient-bonus-box);
  border: 1px solid rgba(233, 30, 140, 0.4);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  width: 100%;
  max-width: 100%;
}

.bonus-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 0.45rem;
}

.bonus-amount {
  font-size: clamp(1.35rem, 5vw, 1.6rem);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 0.3rem;
  overflow-wrap: anywhere;
}

.bonus-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.45;
}

.btn-play-sm {
  display: block;
  background: var(--gradient-cta);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 0.8rem 1.25rem;
  border-radius: var(--radius-sm);
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: var(--shadow-cta);
  transition: transform var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out);
  min-height: var(--touch-min);
  line-height: 1.2;
  -webkit-tap-highlight-color: transparent;
}

.btn-play-sm:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(233, 30, 140, 0.5);
  color: #fff;
}

.info-list {
  list-style: none;
}

.info-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.82rem;
  gap: 0.65rem;
}

.info-list li:last-child {
  border-bottom: none;
}

.info-list .info-key {
  color: var(--text-muted);
  flex-shrink: 0;
  max-width: 45%;
}

.info-list .info-val {
  color: var(--text-primary);
  font-weight: 600;
  text-align: right;
  overflow-wrap: anywhere;
  min-width: 0;
}

/* --------------------------------------------------------------------------
   footer (mobile-first)
   -------------------------------------------------------------------------- */
footer {
  background: var(--nav-bg);
  border-top: 1px solid var(--border-color);
  padding: 2rem 1rem 1.75rem;
}

.footer-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.75rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-brand-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.footer-brand-icon {
  width: 30px;
  height: 30px;
  background: var(--gradient-icon);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.footer-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 100%;
}

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 0.85rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.84rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  padding: 0.2rem 0;
  min-height: 2.25rem;
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover {
  color: var(--accent-pink);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.footer-badges {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.footer-badge {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xs);
  padding: 0.35rem 0.6rem;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
}

.responsible-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
  line-height: 1.65;
  opacity: 0.8;
}

/* --------------------------------------------------------------------------
   utilities
   -------------------------------------------------------------------------- */
.text-pink { color: var(--accent-pink); }
.text-gold { color: var(--gold); }
.mt-1 { margin-top: 1rem; }
.mb-1 { margin-bottom: 1rem; }

/* --------------------------------------------------------------------------
   focus (accessibility)
   -------------------------------------------------------------------------- */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent-pink);
  outline-offset: 2px;
}

.btn-play:focus-visible,
.btn-play-sm:focus-visible,
.btn-signup:focus-visible,
.btn-login:focus-visible,
.see-all-btn:focus-visible {
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   responsive: 480px+
   -------------------------------------------------------------------------- */
@media (min-width: 480px) {
  .navbar {
    padding: 0 1rem;
  }

  .navbar-inner {
    min-height: 60px;
    gap: 0.75rem;
  }

  .navbar-brand .brand-icon {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }

  .navbar-brand {
    max-width: min(100%, clamp(130px, 38vw, 240px));
  }

  .navbar-logo {
    height: clamp(30px, 5vw, 40px);
  }

  .btn-login,
  .btn-signup {
    font-size: 0.88rem;
    padding: 0.5rem 1.1rem;
  }

  .hero {
    padding: 2.75rem 1.25rem 2.25rem;
  }

  .hero-content {
    gap: 1.15rem;
  }

  .btn-play {
    font-size: 0.98rem;
    padding: 0.88rem 2rem;
    width: auto;
    max-width: none;
  }

  .payment-badge {
    font-size: 0.72rem;
    padding: 0.35rem 0.65rem;
  }

  .stats-bar {
    padding: 1.25rem 1rem;
  }

  .stats-inner {
    gap: 0.85rem;
  }

  .stat-item {
    padding: 1.1rem 0.85rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .games-section {
    padding: 2.5rem 1.25rem;
  }

  .payments-section {
    padding: 1.5rem 1.25rem 2.25rem;
  }

  .main-wrapper {
    padding: 1.75rem 1.25rem 2.25rem;
  }

  .section-block {
    padding: 1.5rem 1.25rem;
  }

  .toc-wrapper {
    padding: 1.35rem 1.25rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem 1.25rem;
  }

  .review-form-card button[type="submit"] {
    width: auto;
    min-width: 200px;
  }
}

/* --------------------------------------------------------------------------
   responsive: 768px+ (tablet)
   -------------------------------------------------------------------------- */
@media (min-width: 768px) {
  .navbar {
    padding: 0 1.25rem;
  }

  .navbar-inner {
    min-height: 64px;
    padding: 0;
    gap: 1rem;
  }

  .navbar-brand {
    max-width: min(100%, clamp(160px, 18vw, 280px));
  }

  .navbar-logo {
    height: clamp(38px, 2.75vw, 50px);
  }

  .nav-links {
    display: flex;
    flex: 1;
    justify-content: center;
    min-width: 0;
  }

  .nav-actions {
    gap: 0.65rem;
  }

  .btn-login {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
  }

  .btn-signup {
    padding: 0.5rem 1.35rem;
    font-size: 0.9rem;
  }

  .hero {
    padding: 3.5rem 1.5rem 3rem;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
  }

  .hero-content {
    gap: 1.35rem;
  }

  .hero-label {
    font-size: 0.85rem;
    letter-spacing: 0.12em;
  }

  .hero-bonus {
    font-size: 1.05rem;
  }

  .payment-icons {
    gap: 0.55rem;
  }

  .stats-bar {
    padding: 1.5rem;
  }

  .stats-inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }

  .stat-item {
    padding: 1.2rem 0.85rem;
  }

  .stat-value {
    font-size: 1.35rem;
  }

  .games-section {
    padding: 2.75rem 1.5rem;
  }

  .payments-section {
    padding: 1.75rem 1.5rem 2.5rem;
  }

  .main-wrapper {
    padding: 2.25rem 1.5rem 2.5rem;
    gap: 2rem;
  }

  .sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .section-block {
    padding: 1.65rem 1.5rem;
    margin-bottom: 1.5rem;
  }

  .section-heading {
    align-items: center;
  }

  .section-heading .icon {
    margin-top: 0;
  }

  .author-section {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 1.6rem 1.5rem;
    gap: 1.35rem;
  }

  .author-avatar {
    width: 72px;
    height: 72px;
    font-size: 1.8rem;
  }

  footer {
    padding: 2.5rem 1.5rem 2rem;
  }

  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* --------------------------------------------------------------------------
   responsive: 1024px+ (desktop)
   -------------------------------------------------------------------------- */
@media (min-width: 1024px) {
  .main-wrapper {
    grid-template-columns: minmax(0, 1fr) var(--sidebar-width);
    gap: 2.5rem;
    padding: 3rem 1.5rem;
  }

  .sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .footer-desc {
    max-width: 280px;
  }
}

/* --------------------------------------------------------------------------
   responsive: stacked tables → cards (small screens only)
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
  table thead {
    display: none;
  }

  table,
  table tbody,
  table tr,
  table td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  table {
    min-width: 0;
  }

  table tr {
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-card);
  }

  table td {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.65rem 1rem;
    border-bottom: 1px solid var(--border-color);
    min-width: unset;
    text-align: right;
  }

  table td:last-child {
    border-bottom: none;
  }

  table td::before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--text-secondary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-align: left;
    flex-shrink: 0;
    max-width: 48%;
  }
}
