:root {
  --bg-deep: #0a0e17;
  --bg-surface: #111827;
  --bg-elevated: #1a2234;
  --accent-gold: #fbbf24;
  --accent-gold-dark: #d97706;
  --accent-emerald: #34d399;
  --accent-emerald-dark: #059669;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border-subtle: rgba(148, 163, 184, 0.12);
  --font-body: 'Outfit', sans-serif;
  --font-display: 'Playfair Display', serif;
  --topbar-height: 36px;
  --header-height: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent-emerald);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-gold);
}

.container {
  max-width: 1200px;
}

.topbar {
  background: linear-gradient(90deg, #1e1b4b 0%, #312e81 50%, #1e1b4b 100%);
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.75rem;
  min-height: var(--topbar-height);
  display: flex;
  align-items: center;
}

.topbar-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  padding: 0.4rem 0;
  width: 100%;
  justify-content: center;
}

@media (min-width: 768px) {
  .topbar-inner {
    justify-content: flex-start;
  }
}

.topbar-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #dc2626;
  color: #fff;
  font-weight: 700;
  font-size: 0.65rem;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.topbar-text {
  color: #c7d2fe;
}

.topbar-divider {
  color: rgba(199, 210, 254, 0.4);
}

.topbar-link {
  color: var(--accent-gold);
  font-weight: 500;
}

.topbar-link:hover {
  color: #fde68a;
}

.site-header {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  z-index: 100;
}

.navbar {
  padding: 0.75rem 0;
  min-height: var(--header-height);
}

.navbar-brand.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  text-decoration: none;
}

.brand-icon svg {
  width: 40px;
  height: 40px;
  display: block;
}

.brand-text {
  display: flex;
  align-items: baseline;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.brand-domain {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--accent-gold);
  margin-left: 1px;
}

.navbar-toggler {
  border: 1px solid var(--border-subtle);
  padding: 0.4rem 0.55rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.25);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28241, 245, 249, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav {
  gap: 0.25rem;
}

@media (min-width: 992px) {
  .navbar-nav {
    gap: 0.5rem;
  }
}

.nav-link {
  color: var(--text-secondary) !important;
  font-weight: 500;
  font-size: 0.925rem;
  padding: 0.5rem 0.85rem !important;
  border-radius: 8px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--text-primary) !important;
  background-color: rgba(251, 191, 36, 0.08);
}

.nav-link.active {
  color: var(--accent-gold) !important;
  background-color: rgba(251, 191, 36, 0.12);
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--bg-elevated);
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
  }

  .nav-link {
    padding: 0.65rem 1rem !important;
  }
}

.hero {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  background-image: url('../images/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    min-height: 320px;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 14, 23, 0.88) 0%,
    rgba(17, 24, 39, 0.75) 45%,
    rgba(30, 27, 75, 0.65) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2.5rem 0;
}

@media (min-width: 768px) {
  .hero-content {
    padding: 3rem 0;
  }
}

.hero-inner {
  max-width: 720px;
}

.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-emerald);
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.25);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.hero h2 {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
}

.listing-section {
  padding: 3.5rem 0 4rem;
  background: linear-gradient(180deg, var(--bg-deep) 0%, #0d1320 50%, var(--bg-deep) 100%);
}

.listing-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.listing-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.listing-header p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.975rem;
  line-height: 1.65;
}

.offer-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.offer-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.offer-item:hover {
  border-color: rgba(251, 191, 36, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(251, 191, 36, 0.06);
}

.offer-item:first-child {
  border-color: rgba(251, 191, 36, 0.35);
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.06) 0%, var(--bg-surface) 40%);
}

.offer-item:first-child .offer-rank {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  color: #0d1117;
  box-shadow: 0 0 16px rgba(251, 191, 36, 0.35);
}

.offer-row {
  display: grid;
  grid-template-columns: 44px 72px 1fr 1.6fr 72px 148px;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
}

.offer-rank {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.offer-logo {
  width: 72px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.offer-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.offer-name {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.offer-bonus {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.offer-bonus-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.offer-bonus-value {
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--accent-emerald);
  line-height: 1.35;
}

.offer-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
}

.score-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
}

.score-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.offer-action {
  display: flex;
  justify-content: flex-end;
}

.btn-visit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.1rem;
  background: linear-gradient(135deg, var(--accent-emerald) 0%, var(--accent-emerald-dark) 100%);
  color: #0d1117 !important;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 10px;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(52, 211, 153, 0.25);
}

.btn-visit:hover {
  color: #0d1117 !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(52, 211, 153, 0.35);
}

.offer-disclaimer {
  padding: 0.65rem 1.25rem 0.85rem;
  border-top: 1px solid var(--border-subtle);
  background: rgba(10, 14, 23, 0.45);
}

.offer-disclaimer p {
  margin: 0;
  font-size: 0.7rem;
  line-height: 1.55;
  color: var(--text-muted);
}

@media (max-width: 991.98px) {
  .offer-row {
    grid-template-columns: 40px 64px 1fr auto;
    grid-template-rows: auto auto;
    gap: 0.85rem 1rem;
  }

  .offer-rank {
    grid-row: 1 / 3;
    width: 40px;
    height: 40px;
    align-self: start;
    margin-top: 0.25rem;
  }

  .offer-logo {
    grid-row: 1 / 3;
    width: 64px;
    height: 44px;
    align-self: start;
    margin-top: 0.15rem;
  }

  .offer-name {
    grid-column: 3 / 5;
  }

  .offer-score {
    grid-column: 4;
    grid-row: 1;
    flex-direction: row;
    gap: 0.35rem;
    align-self: start;
    background: rgba(251, 191, 36, 0.08);
    border: 1px solid rgba(251, 191, 36, 0.15);
    border-radius: 8px;
    padding: 0.3rem 0.55rem;
  }

  .score-value {
    font-size: 1rem;
  }

  .score-label {
    font-size: 0.6rem;
  }

  .offer-bonus {
    grid-column: 3 / 5;
  }

  .offer-action {
    grid-column: 1 / 5;
    justify-content: stretch;
  }

  .btn-visit {
    width: 100%;
    padding: 0.75rem 1rem;
  }
}

@media (max-width: 575.98px) {
  .offer-row {
    grid-template-columns: 36px 56px 1fr;
    padding: 1rem;
  }

  .offer-rank {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }

  .offer-logo {
    width: 56px;
    height: 40px;
  }

  .offer-name {
    grid-column: 3;
    font-size: 1rem;
  }

  .offer-score {
    grid-column: 3;
    grid-row: auto;
    justify-self: start;
    margin-top: -0.25rem;
  }

  .offer-bonus {
    grid-column: 1 / 4;
  }

  .offer-action {
    grid-column: 1 / 4;
  }
}

body.gate-open {
  overflow: hidden;
}

.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  padding: 3rem 0 0;
  margin-top: auto;
}

.footer-responsible {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.08) 0%, rgba(30, 27, 75, 0.35) 100%);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 16px;
  margin-bottom: 2rem;
}

.footer-responsible-badge {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: #dc2626;
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  border-radius: 12px;
  letter-spacing: 0.04em;
}

.footer-responsible-text h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.5rem;
}

.footer-responsible-text p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.footer-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  justify-items: center;
  gap: 1.25rem 1.5rem;
  padding: 1.75rem 1rem;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 2.5rem;
}

.footer-badge-link,
.footer-badge-static {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 180px;
  min-height: 52px;
  padding: 0.35rem 0.5rem;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.footer-badge-link:hover {
  opacity: 1;
}

.footer-badge-link img,
.footer-badge-static img {
  height: 48px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.footer-badge-static img {
  height: 44px;
  width: 44px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}

.footer-about {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0 0 1rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent-emerald);
  padding-left: 4px;
}

.footer-cert {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid rgba(52, 211, 153, 0.2);
  border-radius: 16px;
  margin-bottom: 2rem;
}

.footer-cert-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(52, 211, 153, 0.12);
  border-radius: 12px;
  font-size: 1.5rem;
  color: var(--accent-emerald);
}

.footer-cert-body h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.5rem;
}

.footer-cert-body p {
  margin: 0;
  font-size: 0.825rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.footer-disclaimers {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 0 2rem;
  border-top: 1px solid var(--border-subtle);
}

.footer-disclaimers p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.footer-disclaimers strong {
  color: var(--text-secondary);
  font-weight: 600;
}

.footer-bottom {
  padding: 1.25rem 0 1.75rem;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom-note {
  margin-top: 0.35rem !important;
  font-size: 0.75rem !important;
  color: var(--text-muted);
  opacity: 0.8;
}

@media (max-width: 991.98px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid .footer-col:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 575.98px) {
  .footer-responsible {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-badges {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .footer-badge-link,
  .footer-badge-static {
    max-width: none;
  }

  .footer-badge-link img,
  .footer-badge-static img {
    height: 40px;
  }

  .footer-badge-static img {
    height: 40px;
    width: 40px;
  }

  .footer-cert {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.age-gate.is-visible {
  display: flex;
}

.age-gate-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 23, 0.92);
  backdrop-filter: blur(8px);
}

.age-gate-dialog {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(251, 191, 36, 0.08);
  text-align: center;
}

.age-gate-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: #dc2626;
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 16px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
}

.age-gate-icon-block {
  background: var(--bg-elevated);
  color: #f87171;
  font-size: 1.5rem;
  border: 1px solid rgba(248, 113, 113, 0.3);
}

.age-gate-dialog h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.85rem;
}

.age-gate-dialog p {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.age-gate-sub {
  font-size: 0.825rem !important;
  color: var(--text-muted) !important;
  margin-bottom: 1.5rem !important;
}

.age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.btn-age {
  display: block;
  width: 100%;
  padding: 0.8rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.925rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-age-yes {
  background: linear-gradient(135deg, var(--accent-emerald) 0%, var(--accent-emerald-dark) 100%);
  color: #0d1117;
  box-shadow: 0 4px 16px rgba(52, 211, 153, 0.3);
}

.btn-age-yes:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(52, 211, 153, 0.4);
}

.btn-age-no {
  background: var(--bg-elevated);
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
}

.btn-age-no:hover {
  color: var(--text-primary);
  border-color: rgba(148, 163, 184, 0.25);
}

.age-gate-restricted a {
  color: var(--accent-emerald);
  font-weight: 500;
}

.age-gate-reload-note {
  margin-top: 1rem !important;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.8rem !important;
  color: var(--text-muted) !important;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.35);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0;
}

.cookie-banner-text h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.35rem;
}

.cookie-banner-text p {
  margin: 0;
  font-size: 0.825rem;
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 680px;
}

.cookie-banner-text a {
  color: var(--accent-emerald);
  font-weight: 500;
}

.cookie-banner-actions {
  display: flex;
  flex-shrink: 0;
  gap: 0.65rem;
  align-items: center;
}

.btn-cookie {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.15rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-cookie-accept {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  color: #0d1117;
  border: none;
  box-shadow: 0 4px 14px rgba(251, 191, 36, 0.25);
}

.btn-cookie-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(251, 191, 36, 0.35);
}

.btn-cookie-manage {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
  text-decoration: none;
}

.btn-cookie-manage:hover {
  color: var(--text-primary);
  border-color: rgba(148, 163, 184, 0.25);
}

@media (max-width: 767.98px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .cookie-banner-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-cookie {
    width: 100%;
  }
}

.page-hero {
  padding: 2.75rem 0 2.25rem;
  background: linear-gradient(135deg, var(--bg-surface) 0%, rgba(30, 27, 75, 0.35) 100%);
  border-bottom: 1px solid var(--border-subtle);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.page-hero-lead {
  margin: 0;
  max-width: 720px;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.page-content {
  padding: 3rem 0 4rem;
}

.page-content .content-block {
  max-width: 820px;
}

.page-content h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 2rem 0 0.85rem;
  letter-spacing: -0.01em;
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent-gold);
  margin: 1.5rem 0 0.65rem;
}

.page-content p {
  margin: 0 0 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

.page-content ul,
.page-content ol {
  margin: 0 0 1.25rem;
  padding-left: 1.35rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.page-content li {
  margin-bottom: 0.4rem;
}

.page-content a {
  color: var(--accent-emerald);
  font-weight: 500;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.85rem 1.25rem;
  background: var(--bg-elevated);
  border: 1px solid rgba(52, 211, 153, 0.25);
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent-emerald) !important;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 1.25rem 1.35rem;
}

.faq-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--text-primary);
}

.faq-item p {
  margin: 0;
  font-size: 0.9rem;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.platform-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 1.25rem;
}

.platform-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--text-primary);
}

.platform-card p {
  margin: 0;
  font-size: 0.875rem;
}

.review-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.review-card {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 1.15rem 1.25rem;
}

.review-card-logo {
  width: 64px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elevated);
  border-radius: 10px;
  overflow: hidden;
}

.review-card-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.review-card-body h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  color: var(--text-primary);
}

.review-card-body p {
  margin: 0;
  font-size: 0.875rem;
}

.review-score {
  margin-left: auto;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--accent-gold);
  flex-shrink: 0;
}

@media (max-width: 767.98px) {
  .platform-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    flex-wrap: wrap;
  }

  .review-score {
    margin-left: 0;
    width: 100%;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border-subtle);
  }
}
