:root {
  --bg: #f1e7da;
  --surface: #f7f1ea;
  --surface-soft: #efe4d6;
  --surface-muted: #eadbce;
  --text: #2d241f;
  --muted: #51453d;
  --muted-soft: #706259;
  --line: #ddd0c3;
  --line-strong: #cfbead;
  --brand: #d97745;
  --brand-strong: #b85f33;
  --brand-soft: #fae7d9;
  --blue: #6a7e95;
  --panel: #5d493f;
  --panel-soft: #71594d;
  --panel-border: #8e7564;
  --shadow-sm: 0 16px 34px rgba(78, 52, 37, 0.08);
  --shadow-md: 0 24px 54px rgba(78, 52, 37, 0.12);
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
}

/* Games rebuild */
.games-page,
.game-detail-page {
  background: #f8fafc;
  min-height: 100vh;
}

.games-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1rem;
}

.games-hero {
  padding: 3.5rem 0 2.5rem;
  background: linear-gradient(135deg, #111827 0%, #0f766e 52%, #f59e0b 100%);
  color: #fff;
}

.games-kicker {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #fde68a;
}

.games-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.games-hero-copy {
  max-width: 680px;
  margin: 1.2rem 0 0;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e5e7eb;
}

.games-hero-actions,
.games-language-row,
.game-share-row,
.game-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.games-hero-actions {
  margin-top: 1.5rem;
}

.games-language-row {
  margin-bottom: 1rem;
}

.games-lang,
.games-button,
.game-tool-button,
.game-share-row a,
.game-share-row button,
.games-pagination a,
.games-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #0f172a;
  padding: 0.55rem 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.games-lang--active,
.games-button--primary,
.game-play-button,
.game-tool-button {
  border-color: #10b981;
  background: #10b981;
  color: #fff;
}

.games-section {
  padding: 2.5rem 0;
}

.games-section--soft {
  background: #eef2f7;
}

.games-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.games-section-heading--large {
  display: block;
}

.games-section-heading h1,
.games-section-heading h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.games-section-heading p {
  max-width: 720px;
  color: #475569;
  line-height: 1.7;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1rem;
}

.games-grid--featured {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.games-empty-state {
  grid-column: 1 / -1;
  margin: 0;
  border-radius: 0.75rem;
  border: 1px dashed #cbd5e1;
  background: #fff;
  color: #64748b;
  padding: 1rem;
  line-height: 1.6;
}

.game-card {
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.07);
}

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

.game-card-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0f172a;
  overflow: hidden;
}

.game-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.game-card:hover img {
  transform: scale(1.05);
}

.game-card-play {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  border-radius: 999px;
  background: #10b981;
  color: #fff;
  padding: 0.35rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 800;
}

.game-card-body {
  padding: 0.95rem;
}

.game-card-body h3 {
  margin: 0;
  color: #0f172a;
  font-size: 1.05rem;
  line-height: 1.25;
}

.game-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.65rem;
  color: #64748b;
  font-size: 0.88rem;
}

.category-tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.category-tile {
  display: flex;
  min-height: 8.5rem;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 0.75rem;
  border: 1px solid #dbe3ef;
  background: #fff;
  padding: 1.1rem;
  color: #0f172a;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-tile:hover {
  transform: translateY(-3px);
  border-color: #10b981;
}

.category-tile span {
  color: #0f766e;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.category-tile strong {
  font-size: 1.3rem;
  line-height: 1.15;
}

.game-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.game-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #334155;
  padding: 0.55rem 0.9rem;
  font-size: 0.92rem;
  font-weight: 750;
}

.game-faq-list {
  display: grid;
  gap: 0.85rem;
}

.game-faq-item {
  border-radius: 0.75rem;
  border: 1px solid #dbe3ef;
  background: #fff;
  padding: 1rem 1.1rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.game-faq-item summary {
  cursor: pointer;
  color: #0f172a;
  font-weight: 800;
}

.game-faq-item p {
  margin: 0.75rem 0 0;
  color: #475569;
  line-height: 1.7;
}

.home-seo-text {
  border-radius: 0.75rem;
  border: 1px solid #dbe3ef;
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.home-seo-text h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.home-seo-text p {
  max-width: 860px;
  margin: 1rem 0 0;
  color: #475569;
  line-height: 1.8;
}

.vertical-subsection {
  margin-top: 2rem;
}

.game-detail-page {
  padding: 1.5rem 0 3rem;
}

.game-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: #64748b;
  font-size: 0.92rem;
}

.game-breadcrumb a {
  color: #0f766e;
  text-decoration: none;
  font-weight: 700;
}

.game-featured-player {
  border-radius: 0.75rem;
  overflow: hidden;
  background: #020617;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.24);
}

.iframe-16-9 {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #020617;
}

.iframe-16-9 iframe {
  position: relative;
  z-index: 20;
  width: 100%;
  height: 100%;
  border: 0;
}

.game-blur-overlay,
.game-play-overlay {
  position: absolute;
  inset: 0;
}

.game-blur-overlay {
  z-index: 10;
  transition: opacity 0.3s ease;
}

.game-blur-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(12px) saturate(100%) brightness(1) opacity(0.95);
  transform: scale(1.07);
}

.game-play-overlay {
  z-index: 30;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 12vh;
  background: rgba(0, 0, 0, 0.42);
  transition: opacity 0.3s ease;
}

.game-play-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 0;
  border-radius: 999px;
  padding: 1rem 2.2rem;
  font-size: 1.2rem;
  box-shadow: 0 16px 42px rgba(16, 185, 129, 0.32);
  cursor: pointer;
}

.game-toolbar,
.game-share-row {
  justify-content: center;
  margin: 1.5rem 0;
}

.game-summary,
.game-info-panel {
  position: relative;
  margin: 2rem 0;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.game-summary h1 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.game-summary p,
.game-info-content {
  color: #475569;
  line-height: 1.75;
}

.game-info-content {
  max-height: none;
  min-height: 0;
  overflow: visible;
}

.how-to-play-list {
  margin: 0;
  padding-left: 1.3rem;
  color: #475569;
  line-height: 1.8;
}

.how-to-play-list li + li {
  margin-top: 0.45rem;
}

.game-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.game-feature-list li {
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  padding: 0.35rem 0.7rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.game-editorial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
}

.game-editorial-card {
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  background: #f8fafc;
  padding: 1rem;
}

.game-editorial-card span {
  display: block;
  color: #2563eb;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.game-editorial-card p {
  margin: 0.45rem 0 0;
  color: #334155;
  line-height: 1.6;
}

.game-unavailable {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
}

.games-pagination {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

@media (max-width: 720px) {
  .games-section-heading {
    display: block;
  }

  .game-play-overlay {
    padding-top: 7vh;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(234, 194, 159, 0.3), transparent 28%),
    radial-gradient(circle at left 18%, rgba(255, 245, 234, 0.62), transparent 24%),
    linear-gradient(180deg, #efe5d8 0%, #eadccd 46%, #efe6dc 100%);
  color: var(--text);
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

main,
section,
article,
header,
footer,
nav,
aside,
div {
  min-width: 0;
}

.container,
.max-w-7xl,
.max-w-5xl,
.max-w-4xl,
.max-w-3xl,
.max-w-2xl,
.max-w-lg,
.max-w-none {
  width: min(100%, calc(100vw - 2rem));
  margin-left: auto;
  margin-right: auto;
}

.container,
.max-w-7xl { max-width: 78rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-4xl { max-width: 58rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-lg { max-width: 32rem; }
.max-w-none { max-width: none; width: 100%; }

.mx-auto { margin-left: auto; margin-right: auto; }
.my-auto { margin-top: auto; margin-bottom: auto; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.inline-flex { display: inline-flex; }
.block { display: block; }
.hidden { display: none; }
.flex { display: flex; }
.grid { display: grid; }
.relative { position: relative; }
.absolute { position: absolute; }
.sticky { position: sticky; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }
.self-start { align-self: flex-start; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.cursor-pointer { cursor: pointer; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

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

.min-w-0 { min-width: 0; }
.w-5 { width: 1.25rem; }
.h-5 { height: 1.25rem; }
.w-12 { width: 3rem; }
.h-12 { height: 3rem; }
.h-20 { height: 5rem; }
.w-32 { width: 8rem; }
.h-32 { height: 8rem; }
.inset-0 { inset: 0; }
.top-10 { top: 2.5rem; }
.min-h-screen { min-height: 100vh; }
.overflow-hidden { overflow: hidden; }

.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-7 { padding: 1.75rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pb-4 { padding-bottom: 1rem; }

.m-0 { margin: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-14 { margin-bottom: 3.5rem; }

.rounded { border-radius: 0.5rem; }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: 1.25rem; }
.rounded-2xl { border-radius: var(--radius-xl); }
.rounded-3xl { border-radius: var(--radius-2xl); }
.rounded-\[2rem\] { border-radius: 2rem; }
.rounded-full { border-radius: 999px; }

.border { border: 1px solid var(--line); }
.border-2 { border: 2px solid var(--line); }
.border-t { border-top: 1px solid var(--line); }
.border-b { border-bottom: 1px solid var(--line); }

.bg-white { background: var(--surface); }
.bg-gray-50,
.bg-slate-50,
.bg-stone-50 { background: var(--surface-soft); }
.bg-slate-100,
.bg-gray-100,
.bg-stone-100 { background: #ebddd1; }
.bg-blue-100 { background: #e7ecef; }
.bg-indigo-100 { background: #ece7e3; }
.bg-red-100 { background: #fee2e2; }
.bg-yellow-50 { background: #fff6df; }
.bg-orange-50 { background: #fff4eb; }
.bg-orange-100 { background: #fbe7d7; }
.bg-orange-400\/10 { background: rgba(251, 146, 60, 0.1); }
.bg-rose-50 { background: #fff1f2; }
.bg-rose-100 { background: #ffe4e6; }
.bg-sky-50 { background: #eff1f2; }
.bg-sky-100 { background: #e2e8eb; }

.product-badge-recommended {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(251, 146, 60, 0.28);
  border-radius: 9999px;
  background: #fff4eb;
  color: #b85f33;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  padding: 0.34rem 0.56rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-badge-recommended--floating {
  position: static;
  margin-bottom: 1rem;
}

.product-badge-recommended--inline {
  margin-bottom: 1rem;
}

.product-badge-recommended--compact {
  font-size: 0.6rem;
  padding: 0.28rem 0.5rem;
}
.bg-emerald-50 { background: #ecfdf5; }
.bg-emerald-100 { background: #d1fae5; }
.bg-violet-50 { background: #f5f3ff; }
.bg-violet-100 { background: #ede9fe; }
.bg-slate-900,
.bg-slate-950,
.bg-emerald-950 { background: var(--panel); }
.bg-slate-800 { background: var(--panel-soft); }
.bg-white\/5 { background: rgba(255, 255, 255, 0.05); }
.bg-white\/10 { background: rgba(255, 255, 255, 0.1); }
.bg-white\/90 { background: rgba(255, 255, 255, 0.9); }
.bg-\[\#fffaf5\] { background: #fffaf5; }
.bg-orange-400 { background: #fb923c; }
.bg-orange-500 { background: var(--brand); }
.bg-blue-600 { background: var(--blue); }
.bg-gradient-to-r { background-image: linear-gradient(90deg, #2563eb, #6366f1); }
.bg-gradient-to-br { background-image: linear-gradient(135deg, #dbeafe, #e0e7ff); }
.from-blue-600 {}
.to-indigo-600 {}
.from-red-600 {}
.to-orange-600 {}

.text-white { color: #fff; }
.text-gray-900,
.text-slate-900,
.text-stone-900 { color: var(--text); }
.text-gray-700,
.text-slate-700,
.text-stone-700 { color: var(--muted); }
.text-gray-600,
.text-slate-600,
.text-stone-600 { color: var(--muted); }
.text-gray-500,
.text-slate-500,
.text-stone-500 { color: var(--muted-soft); }
.text-gray-400,
.text-slate-400,
.text-stone-400 { color: #9c8c81; }
.text-slate-300,
.text-emerald-100,
.text-emerald-50 { color: #d8cbc0; }
.text-slate-950 { color: var(--text); }
.text-orange-200 { color: #fed7aa; }
.text-orange-600,
.text-orange-700 { color: var(--brand-strong); }
.text-orange-500 { color: var(--brand); }
.text-yellow-700 { color: #a16207; }
.text-amber-400 { color: #fbbf24; }
.text-blue-600 { color: var(--blue); }
.text-blue-700 { color: #55697e; }
.text-red-600 { color: #dc2626; }
.text-\[\#4D65FF\] { color: #4D65FF; }
.text-green-500 { color: #22c55e; }
.text-cyan-200 { color: #a5f3fc; }
.text-cyan-300 { color: #67e8f9; }
.text-violet-700 { color: #6d28d9; }
.text-emerald-700 { color: #047857; }
.text-emerald-800 { color: #065f46; }
.text-sky-700 { color: #647988; }

.text-xs { font-size: 0.75rem; line-height: 1.35; }
.text-sm { font-size: 0.925rem; line-height: 1.55; }
.text-base { font-size: 1rem; line-height: 1.65; }
.text-lg { font-size: 1.125rem; line-height: 1.6; }
.text-xl { font-size: 1.35rem; line-height: 1.4; }
.text-2xl { font-size: 1.75rem; line-height: 1.25; }
.text-3xl { font-size: 2.2rem; line-height: 1.15; }
.text-4xl { font-size: clamp(2.5rem, 5vw, 3.6rem); line-height: 1.05; }
.text-5xl { font-size: clamp(3rem, 6vw, 4.3rem); line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }
.text-8xl { font-size: 5.5rem; line-height: 0.95; }
.text-9xl { font-size: 6.5rem; line-height: 0.9; }
.text-\[14px\] { font-size: 14px; }
.text-\[15px\] { font-size: 15px; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.uppercase { text-transform: uppercase; }
.tracking-tight { letter-spacing: -0.03em; }
.tracking-\[0\.18em\] { letter-spacing: 0.18em; }
.tracking-\[0\.2em\] { letter-spacing: 0.2em; }
.tracking-\[0\.22em\] { letter-spacing: 0.22em; }
.tracking-\[0\.25em\] { letter-spacing: 0.25em; }
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.line-clamp-2,
.line-clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-2 { -webkit-line-clamp: 2; }
.line-clamp-3 { -webkit-line-clamp: 3; }

.leading-7 { line-height: 1.8; }
.leading-8 { line-height: 1.9; }
.leading-none { line-height: 1; }

.shadow,
.shadow-sm,
.shadow-lg,
.shadow-xl,
.shadow-2xl {
  box-shadow: var(--shadow-sm);
}

.transition,
.transition-all,
.transition-colors,
.transition-shadow,
.transition-transform {
  transition: all 180ms ease;
}

.ring-1 { box-shadow: inset 0 0 0 1px rgba(226, 232, 240, 0.9); }
.ring-inset {}
.ring-yellow-600\/20 { box-shadow: inset 0 0 0 1px rgba(202, 138, 4, 0.2); }
.ring-orange-200\/40,
.ring-orange-100,
.ring-stone-200 { box-shadow: inset 0 0 0 1px rgba(226, 232, 240, 0.9); }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-orange-400\/30 { border-color: rgba(251, 146, 60, 0.3); }

.bg-\[radial-gradient\(circle_at_top_left,_rgba\(249\,115\,22\,0\.26\)\,_transparent_32\%\)\,radial-gradient\(circle_at_center_right,_rgba\(14\,165\,233\,0\.18\)\,_transparent_30\%\)\] {
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.26), transparent 32%),
    radial-gradient(circle at center right, rgba(14, 165, 233, 0.18), transparent 30%);
}

.bg-\[radial-gradient\(circle_at_top_left\,_rgba\(34\,211\,238\,0\.16\)\,_transparent_32\%\)\,radial-gradient\(circle_at_bottom_right\,_rgba\(59\,130\,246\,0\.18\)\,_transparent_30\%\)\,\#020617\] {
  background:
    radial-gradient(circle at top left, rgba(34, 211, 238, 0.16), transparent 32%),
    radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.18), transparent 30%),
    #020617;
}

.prose {
  color: var(--muted);
}
.prose p {
  margin: 0 0 1rem;
}
.prose h2,
.prose h3 {
  color: var(--text);
  margin: 2rem 0 1rem;
  line-height: 1.2;
}
.prose ul {
  margin: 1rem 0 1.25rem 1.25rem;
}
.prose li + li {
  margin-top: 0.45rem;
}
.prose code {
  padding: 0.15rem 0.4rem;
  border-radius: 0.4rem;
  background: #f4e6da;
  color: #8f5435;
}

.group:hover .group-hover\:text-orange-600,
.hover\:text-orange-600:hover { color: var(--brand-strong); }
.group:hover .group-hover\:text-orange-400,
.hover\:text-orange-400:hover { color: #fb923c; }
.hover\:text-blue-600:hover,
.hover\:underline:hover { color: var(--blue); text-decoration: underline; }
.hover\:text-white:hover { color: #fff; }
.hover\:bg-slate-700:hover { background: #6f594d; }
.hover\:bg-slate-50:hover { background: #f3e8dc; }
.hover\:bg-orange-400:hover { background: #fb923c; }
.hover\:bg-orange-300:hover { background: #fdba74; }
.hover\:bg-blue-50:hover { background: #eef0f2; }
.hover\:border-blue-300:hover { border-color: #b4c0ca; }
.hover\:border-orange-300:hover { border-color: #fdba74; }
.hover\:border-sky-300:hover { border-color: #7dd3fc; }
.hover\:border-violet-300:hover { border-color: #c4b5fd; }
.hover\:border-emerald-300:hover { border-color: #6ee7b7; }
.hover\:shadow-lg:hover,
.hover\:shadow-xl:hover { box-shadow: var(--shadow-md); }
.hover\:-translate-y-1:hover { transform: translateY(-4px); }
.hover\:scale-105:hover { transform: scale(1.05); }
.text-transparent { color: transparent; }
.bg-clip-text { -webkit-background-clip: text; background-clip: text; }

.page-home h1,
.page-home h2,
.page-home h3,
.page-product-submit h1,
.page-product-submit h2,
.page-product-submit h3,
.page-category-hub h1,
.page-category-hub h2,
.page-category-hub h3,
.page-blog h1,
.page-blog h2,
.page-blog h3,
.page-article h1,
.page-article h2,
.page-article h3,
.page-glass-theme h1,
.page-glass-theme h2,
.page-glass-theme h3,
.page-product-detail h1,
.page-product-detail h2 {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  letter-spacing: -0.02em;
}

.page-glass-theme {
  background:
    radial-gradient(circle at top center, rgba(59, 130, 246, 0.16), transparent 28%),
    radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.12), transparent 24%),
    linear-gradient(180deg, #020617 0%, #0f172a 100%);
  color: #e2e8f0;
}

.page-home,
.page-category-hub,
.page-product-detail,
.page-all-tools,
.page-blog,
.page-article,
.page-product-list,
.page-product-submit {
  background:
    radial-gradient(circle at top right, rgba(245, 214, 185, 0.28), transparent 22%),
    radial-gradient(circle at left 24%, rgba(255, 248, 240, 0.52), transparent 18%),
    linear-gradient(180deg, #f0e7db 0%, #e8dacc 52%, #efe7dc 100%);
}

.page-error {
  background: linear-gradient(180deg, #eff6ff 0%, #f8fafc 45%, #ffffff 100%);
}

.page-home main > .container,
.page-product-submit section > .relative.mx-auto,
.page-all-tools main > div,
.page-blog main > div,
.page-article main > div,
.page-product-list main > div,
.page-product-detail main > .container,
.page-glass-theme .glass-page,
.page-category-hub main > div {
  position: relative;
}

.page-home section[class*="rounded-3xl"],
.page-category-hub section[class*="rounded"],
.page-product-detail article,
.page-product-detail section,
.page-product-detail aside > div,
.page-all-tools a.all-tools-card,
.page-blog article,
.page-blog section[class*="rounded"],
.page-article article > header,
.page-article article > section,
.page-product-list a.block.rounded-lg,
.page-product-submit .rounded-3xl,
.page-product-submit .rounded-\[2rem\],
.page-glass-theme .glass-card,
.page-glass-theme .glass-shell {
  box-shadow: var(--shadow-sm);
}

.page-home .bg-white,
.page-product-submit .bg-white,
.page-category-hub .bg-white,
.page-product-detail .bg-white,
.page-all-tools .bg-white,
.page-blog .bg-white,
.page-article .bg-white,
.page-product-list .bg-white {
  border: 1px solid rgba(221, 208, 195, 0.92);
}

.page-home .home-section-shell,
.page-home .home-aside-card.bg-white,
.page-home .bg-white.p-6,
.page-home .bg-white.p-8,
.page-home .bg-white.p-10 {
  background:
    radial-gradient(circle at top right, rgba(244, 217, 191, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(250, 245, 239, 0.98) 0%, rgba(246, 238, 229, 0.98) 100%);
}

.page-home .rounded-3xl,
.page-product-submit .rounded-3xl,
.page-category-hub .rounded-3xl,
.page-category-hub .rounded-\[2rem\],
.page-product-detail .rounded-lg,
.page-all-tools .rounded-3xl,
.page-blog .rounded-3xl,
.page-article .rounded-3xl,
.page-product-list .rounded-lg {
  backdrop-filter: saturate(1.05);
}

.page-product-submit {
  background:
    radial-gradient(circle at top right, rgba(245, 214, 185, 0.24), transparent 24%),
    linear-gradient(180deg, #f0e7db 0%, #e8dacc 52%, #efe7dc 100%);
}

.page-product-submit .submit-nav-primary[disabled],
.page-product-submit .submit-nav-secondary[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.page-product-submit code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.submit-page {
  position: relative;
  padding: 1.25rem 0 3rem;
}

.submit-page-inner {
  width: min(100%, 76rem);
  margin: 0 auto;
  padding: 0 1rem;
}

.submit-layout {
  display: grid;
  grid-template-columns: minmax(0, 22rem) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.submit-sidebar,
.submit-shell {
  border: 1px solid rgba(221, 208, 195, 0.92);
  border-radius: 1.75rem;
  background:
    linear-gradient(180deg, rgba(250, 245, 239, 0.97), rgba(245, 236, 227, 0.96));
  box-shadow: var(--shadow-sm);
}

.submit-sidebar {
  padding: 1.5rem;
  position: sticky;
  top: 6rem;
}

.submit-shell {
  padding: 1.5rem;
}

.submit-title,
.submit-shell-title {
  margin: 0;
}

.submit-intro,
.submit-shell-copy,
.submit-note-copy {
  line-height: 1.75;
}

.submit-sidebar-notes {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.submit-note-card {
  border-radius: 1.15rem;
  border: 1px solid #dfcfbe;
  background: rgba(255, 250, 244, 0.92);
  padding: 1rem;
}

.submit-note-title {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.submit-note-copy {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.submit-shell-head {
  margin-bottom: 1.25rem;
}

.submit-shell-kicker,
.submit-kicker {
  margin: 0 0 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-strong);
}

.submit-title {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.08;
  color: var(--text);
}

.submit-intro {
  margin-top: 1rem;
  color: var(--muted);
}

.submit-shell-title {
  font-size: clamp(1.65rem, 2.4vw, 2.2rem);
  line-height: 1.1;
  color: var(--text);
}

.submit-shell-copy {
  margin-top: 0.65rem;
  color: var(--muted-soft);
}

.submit-form input:not([type="hidden"]):not([type="checkbox"]):not([type="radio"]),
.submit-form textarea,
.submit-form select {
  width: 100%;
  border: 1px solid #d8c7b6;
  border-radius: 1rem;
  background: rgba(255, 251, 246, 0.95);
  padding: 0.95rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text);
}

.submit-form textarea {
  min-height: 9rem;
  resize: vertical;
}

.submit-form input:focus,
.submit-form textarea:focus,
.submit-form select:focus {
  outline: none;
  border-color: #fb923c;
  box-shadow: 0 0 0 4px rgba(251, 146, 60, 0.14);
}

.submit-nav-primary,
.submit-nav-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
}

.submit-nav-primary {
  background: linear-gradient(135deg, #d97745 0%, #b85f33 100%);
  color: #fffaf5;
}

.submit-nav-secondary {
  border: 1px solid #d8c7b6;
  background: rgba(255, 251, 246, 0.95);
  color: var(--muted);
}

.submit-spinner {
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  border: 2px solid rgba(251, 146, 60, 0.3);
  border-top-color: #ea580c;
  animation: spin 0.8s linear infinite;
}

.page-error .error-content {
  padding: 2rem 0;
}

.page-error .btn-primary,
.page-error .btn-secondary {
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.page-glass-theme .glass-page {
  width: min(100%, 72rem);
  margin: 0 auto;
  padding: 3rem 1rem 4rem;
}

.page-glass-theme .glass-card,
.page-glass-theme .glass-shell {
  box-shadow:
    0 25px 60px rgba(2, 6, 23, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.page-home h1,
.page-category-hub h1,
.page-product-detail h1,
.page-all-tools h1,
.page-blog h1,
.page-article h1,
.page-product-list h1 {
  max-width: none;
  text-wrap: normal;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.page-home section[id] {
  scroll-margin-top: 7rem;
}

.page-home .text-lg,
.page-category-hub .text-lg,
.page-blog .text-lg,
.page-article .text-lg,
.page-product-detail main .text-xl {
  color: var(--muted);
}

.page-home .bg-slate-50,
.page-home .bg-gray-50,
.page-category-hub .bg-slate-50,
.page-blog .bg-slate-50,
.page-article .bg-slate-50,
.page-category-hub .bg-stone-50 {
  background-image: linear-gradient(180deg, rgba(255,255,255,0.52), rgba(242,232,220,0.9));
}

.page-home .bg-slate-900,
.page-category-hub .bg-slate-950,
.page-category-hub .bg-emerald-950 {
  background-image: linear-gradient(180deg, #6b5448 0%, #5d493f 100%);
}

.page-home main .bg-slate-900,
.page-category-hub main .bg-slate-900,
.page-category-hub main .bg-slate-950,
.page-category-hub main .bg-emerald-950,
.page-category-hub main .bg-orange-600,
.page-category-hub main .bg-violet-900,
.page-category-hub main .bg-sky-900,
.page-category-hub main .bg-sky-950,
.page-category-hub main .bg-slate-900\/70 {
  background: #ffffff;
  background-image: none;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.page-home main .text-white,
.page-category-hub main .text-white,
.page-category-hub main .text-sky-50,
.page-category-hub main .text-violet-50,
.page-category-hub main .text-emerald-50 {
  color: var(--text);
}

.page-home main .text-slate-300,
.page-category-hub main .text-slate-300,
.page-category-hub main .text-orange-50,
.page-category-hub main .text-sky-100,
.page-category-hub main .text-violet-100,
.page-category-hub main .text-emerald-100 {
  color: var(--muted);
}

.page-category-hub main .bg-white\/5,
.page-category-hub main .bg-white\/10 {
  background: #f8fafc;
}

.page-category-hub main .border-white\/10,
.page-category-hub main .border-cyan-400\/20 {
  border-color: var(--line);
}

.page-category-hub .text-blue-600,
.page-category-hub .text-blue-700,
.page-category-hub .text-sky-700 {
  color: #87553a;
}

.page-category-hub .hover\:border-blue-300:hover,
.page-category-hub .hover\:text-blue-600:hover {
  border-color: #d3aa8d;
  color: var(--brand-strong);
}

.page-category-hub .bg-blue-50 {
  background: #f5ebe2;
}

.page-category-hub .bg-gradient-to-br {
  background-image: linear-gradient(135deg, #da8454 0%, #be6a3e 58%, #a85a34 100%);
}

.category-shell {
  background:
    radial-gradient(circle at top right, rgba(242, 211, 184, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(249, 243, 236, 0.98) 0%, rgba(244, 235, 226, 0.98) 100%);
}

.category-decision-card {
  border-color: rgba(214, 197, 180, 0.9);
  background:
    linear-gradient(180deg, rgba(248, 241, 233, 0.96) 0%, rgba(242, 233, 223, 0.96) 100%);
}

.category-related-card,
.category-compare-card {
  background:
    linear-gradient(180deg, rgba(251, 247, 242, 0.98) 0%, rgba(246, 238, 230, 0.98) 100%);
  border-color: rgba(214, 197, 180, 0.88);
}

.category-compare-mark {
  background-image: linear-gradient(135deg, #da8454 0%, #be6a3e 58%, #a85a34 100%);
  box-shadow: 0 12px 28px rgba(184, 95, 51, 0.22);
}

.category-compare-best-for {
  color: #87553a;
}

.category-compare-chip {
  border: 1px solid rgba(214, 197, 180, 0.88);
  background: rgba(255, 249, 243, 0.94);
}

.category-table-shell {
  background:
    radial-gradient(circle at top right, rgba(236, 206, 179, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(248, 242, 235, 0.98) 0%, rgba(243, 234, 224, 0.98) 100%);
}

.category-table-wrap {
  border: 1px solid rgba(214, 197, 180, 0.92);
  border-radius: 1.4rem;
  overflow: hidden;
  background: rgba(255, 250, 245, 0.72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.65);
}

.page-category-hub .category-table-wrap thead.bg-slate-50,
.page-category-hub .category-table-wrap .bg-slate-50 {
  background:
    linear-gradient(180deg, rgba(241, 230, 217, 0.94) 0%, rgba(236, 224, 210, 0.94) 100%);
}

.page-category-hub .category-table-wrap tbody.bg-white {
  background: transparent;
}

.page-category-hub .category-table-wrap tr:nth-child(even) {
  background: rgba(248, 241, 233, 0.72);
}

.page-category-hub .category-table-wrap tr:nth-child(odd) {
  background: rgba(252, 248, 243, 0.62);
}

.page-category-hub .category-table-wrap tbody tr:hover {
  background: rgba(239, 228, 217, 0.84);
}

.category-backlink {
  color: #7b5947;
}

.category-backlink:hover {
  color: var(--brand-strong);
}

.category-hero-stack > section:first-child > .rounded-3xl.bg-white {
  padding: clamp(2rem, 4.2vw, 3rem);
  border-color: rgba(219, 203, 188, 0.94);
  background:
    radial-gradient(circle at top right, rgba(243, 211, 184, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(249, 243, 236, 0.98) 0%, rgba(244, 235, 226, 0.98) 100%);
  box-shadow:
    0 24px 54px rgba(112, 76, 54, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.category-hero-stack > section:first-child h1 {
  margin-top: 0.85rem;
  max-width: none;
  font-size: clamp(2.65rem, 4.2vw, 3.65rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.category-hero-stack > section:first-child p.text-lg {
  max-width: 56rem;
  margin-top: 1.7rem;
  font-size: clamp(1.08rem, 1.5vw, 1.32rem);
  line-height: 1.8;
  color: #625248;
}

.category-hero-stack > section:first-child .grid > .rounded-3xl.bg-white,
.category-primary-stack > section .grid > .rounded-3xl.bg-white {
  border-color: rgba(216, 199, 182, 0.9);
  background:
    linear-gradient(180deg, rgba(251, 247, 242, 0.98) 0%, rgba(246, 238, 230, 0.98) 100%);
  box-shadow:
    0 16px 34px rgba(99, 69, 49, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

.category-primary-stack > section > .mb-5,
.category-primary-stack > section > .mb-6 {
  margin-bottom: 1.35rem;
}

.category-primary-stack > section .grid {
  gap: 1.15rem;
}

.category-primary-stack > section .rounded-3xl.border.bg-white {
  border-color: rgba(214, 197, 180, 0.9);
  background:
    linear-gradient(180deg, rgba(251, 247, 242, 0.98) 0%, rgba(246, 238, 230, 0.98) 100%);
}

.category-primary-stack > section .rounded-3xl.border.bg-white .bg-blue-50 {
  background: rgba(245, 233, 220, 0.92);
}

.category-primary-stack > section .rounded-3xl.border.bg-white .text-blue-800 {
  color: #7b5947;
}

.category-bottom-stack {
  margin-top: 0.5rem;
}

.category-bottom-stack > section {
  background:
    radial-gradient(circle at top right, rgba(240, 209, 182, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(246, 238, 230, 0.78) 0%, rgba(242, 231, 220, 0.86) 100%);
}

.category-bottom-stack > section article.rounded-3xl.bg-white,
.category-bottom-stack > section section.rounded-3xl.bg-white {
  border-color: rgba(214, 197, 180, 0.9);
  background:
    linear-gradient(180deg, rgba(251, 247, 242, 0.98) 0%, rgba(246, 238, 230, 0.98) 100%);
  box-shadow:
    0 16px 34px rgba(99, 69, 49, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

.category-bottom-stack > section details.group,
.category-bottom-stack > section .group.rounded-2xl.bg-slate-50 {
  border-color: rgba(216, 199, 182, 0.92);
  background:
    linear-gradient(180deg, rgba(248, 241, 233, 0.96) 0%, rgba(242, 233, 223, 0.96) 100%);
}

.page-product-detail .grid,
.page-all-tools .grid,
.page-product-list .grid,
.page-home .grid,
.page-category-hub .grid {
  align-items: stretch;
}

.page-product-detail .text-blue-600,
.page-product-detail .text-blue-700,
.page-product-detail .text-sky-700 {
  color: #87553a;
}

.page-product-detail .bg-blue-50,
.page-product-detail .bg-blue-50\/50 {
  background: #f5ebe2;
}

.page-product-detail .border-blue-100,
.page-product-detail .border-blue-200 {
  border-color: #dfc7b6;
}

.page-product-detail .hover\:border-blue-300:hover,
.page-product-detail .hover\:bg-blue-50:hover {
  border-color: #d3aa8d;
  background: #f3e7dc;
}

.page-product-detail .bg-slate-50,
.page-product-detail .bg-stone-50 {
  background:
    linear-gradient(180deg, rgba(248, 241, 233, 0.96) 0%, rgba(242, 233, 223, 0.96) 100%);
}

.page-product-detail .rounded-lg.bg-white,
.page-product-detail .rounded-xl.bg-white,
.page-product-detail .rounded-2xl.bg-white {
  background:
    linear-gradient(180deg, rgba(251, 247, 242, 0.98) 0%, rgba(246, 238, 230, 0.98) 100%);
}

.page-all-tools main {
  position: relative;
}

.all-tools-hero {
  background:
    radial-gradient(circle at top right, rgba(242, 208, 179, 0.28), transparent 26%),
    linear-gradient(180deg, rgba(251, 247, 242, 0.96), rgba(246, 238, 229, 0.96));
}

.all-tools-card {
  background:
    linear-gradient(180deg, rgba(251, 247, 242, 0.98), rgba(247, 239, 231, 0.98));
}

.all-tools-card-initial {
  background: linear-gradient(180deg, #f3e2d1 0%, #ecd6bf 100%);
  color: #6b4f3f;
}

.all-tools-chip,
.all-tools-page-state,
.more-tools-chip,
.detail-pricing-chip {
  border: 1px solid rgba(214, 196, 178, 0.88);
  background: rgba(255, 250, 244, 0.96);
}

.all-tools-page-link {
  border-color: rgba(207, 190, 173, 0.95);
  background: rgba(255, 250, 244, 0.94);
}

.all-tools-page-link:hover {
  border-color: #c7926e;
  color: var(--brand-strong);
}

.detail-expert-tip {
  border-color: #d8c8bb;
  background:
    radial-gradient(circle at top right, rgba(220, 193, 170, 0.2), transparent 30%),
    linear-gradient(180deg, #f8f1ea 0%, #f2e7dc 100%);
}

.detail-pricing-tier {
  border-color: rgba(214, 196, 178, 0.88);
}

.detail-pricing-tier--free {
  background: linear-gradient(180deg, rgba(255, 250, 245, 0.96), rgba(248, 240, 230, 0.96));
}

.detail-pricing-tier--paid {
  background: linear-gradient(180deg, rgba(244, 238, 233, 0.96), rgba(236, 227, 219, 0.96));
}

.detail-pricing-tier--paid .text-blue-900,
.detail-pricing-tier--paid .text-blue-400 {
  color: #755847;
}

.detail-hero {
  padding: 2rem 2.1rem 1.8rem;
  border: 1px solid rgba(221, 208, 195, 0.92);
  border-radius: 2rem;
  background:
    radial-gradient(circle at top right, rgba(242, 211, 184, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(249, 243, 236, 0.98) 0%, rgba(244, 235, 226, 0.98) 100%);
  box-shadow: var(--shadow-sm);
}

.detail-meta-row {
  color: #7a6a5f;
}

.detail-chip {
  border: 1px solid rgba(214, 197, 180, 0.88);
  background: rgba(255, 249, 243, 0.94);
}

.detail-verdict {
  border-color: #debfaa;
  background:
    radial-gradient(circle at top right, rgba(247, 217, 189, 0.28), transparent 24%),
    linear-gradient(180deg, #f8eee4 0%, #f2e3d5 100%);
}

.detail-verdict-cta {
  border-color: rgba(214, 197, 180, 0.88);
  background:
    linear-gradient(180deg, rgba(255, 249, 243, 0.98) 0%, rgba(248, 239, 229, 0.98) 100%);
}

.detail-visit-button {
  background: linear-gradient(135deg, #d97745 0%, #b85f33 100%);
  color: #fffaf5;
}

.detail-visit-button:hover {
  background: linear-gradient(135deg, #cf6f40 0%, #ad5b31 100%);
}

.detail-snapshot {
  border-color: rgba(214, 197, 180, 0.88);
  background:
    linear-gradient(180deg, rgba(248, 241, 233, 0.96) 0%, rgba(242, 233, 223, 0.96) 100%);
}

.detail-snapshot-frame {
  border-color: rgba(214, 197, 180, 0.88);
  background: rgba(255, 250, 244, 0.96);
}

.detail-snapshot-link {
  color: #765847;
}

.detail-snapshot-link:hover {
  color: var(--brand-strong);
}

.detail-snapshot-button {
  background: rgba(102, 77, 64, 0.92);
}

.detail-snapshot-button:hover {
  background: var(--brand);
}

.detail-layout {
  align-items: start;
}

.detail-main > section,
.detail-main > article {
  border-color: rgba(214, 197, 180, 0.9);
  background:
    linear-gradient(180deg, rgba(251, 247, 242, 0.98) 0%, rgba(246, 238, 230, 0.98) 100%);
  box-shadow:
    0 16px 34px rgba(99, 69, 49, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

.detail-main > .detail-pros-cons {
  background: transparent;
  box-shadow: none;
}

.detail-best-for,
.detail-description,
.detail-use-cases,
.detail-alternatives,
.detail-faq {
  border: 1px solid rgba(214, 197, 180, 0.9);
}

.detail-description .prose {
  color: #65564b;
}

.detail-description-note {
  border-left-color: #c69a7e;
  background:
    linear-gradient(180deg, rgba(246, 237, 228, 0.96) 0%, rgba(240, 229, 218, 0.96) 100%);
}

.detail-use-case-card,
.detail-alternative-card,
.detail-faq-item {
  border: 1px solid rgba(214, 197, 180, 0.88);
  background:
    linear-gradient(180deg, rgba(248, 241, 233, 0.96) 0%, rgba(242, 233, 223, 0.96) 100%);
}

.detail-alternative-card:hover {
  border-color: #d3aa8d;
  background:
    linear-gradient(180deg, rgba(247, 238, 229, 0.98) 0%, rgba(240, 229, 218, 0.98) 100%);
}

.detail-alternatives-footer {
  border-top-color: rgba(214, 197, 180, 0.76);
}

.detail-alternatives-link {
  color: #7b5947;
}

.detail-alternatives-link:hover {
  color: var(--brand-strong);
}

.detail-pros-card,
.detail-cons-card {
  border-width: 1px;
}

.detail-pros-card {
  border-color: rgba(171, 197, 167, 0.8);
  background:
    linear-gradient(180deg, rgba(249, 247, 242, 0.98) 0%, rgba(241, 238, 231, 0.98) 100%);
}

.detail-cons-card {
  border-color: rgba(224, 187, 176, 0.82);
  background:
    linear-gradient(180deg, rgba(251, 245, 242, 0.98) 0%, rgba(245, 236, 231, 0.98) 100%);
}

.detail-faq-item summary,
.detail-faq-item .text-gray-900 {
  color: var(--text);
}

.detail-faq-item .text-gray-600 {
  color: #67584d;
}

.more-tools-card {
  background: linear-gradient(180deg, rgba(251, 247, 242, 0.97), rgba(246, 238, 230, 0.97));
}

.more-tools-badge {
  border: 1px solid rgba(214, 196, 178, 0.78);
}

.more-tools-best-for {
  color: #6b584a;
}

.home-content-layout {
  display: block;
}

.home-intent-jump {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(245, 211, 175, 0.16), transparent 24%),
    radial-gradient(circle at bottom left, rgba(255, 241, 226, 0.08), transparent 26%),
    linear-gradient(135deg, #6a5548 0%, #5b463d 56%, #725a4d 100%);
  border: 1px solid rgba(255, 241, 226, 0.12);
}

.page-home .home-intent-jump {
  background:
    radial-gradient(circle at top right, rgba(245, 211, 175, 0.16), transparent 24%),
    radial-gradient(circle at bottom left, rgba(255, 241, 226, 0.08), transparent 26%),
    linear-gradient(135deg, #6a5548 0%, #5b463d 56%, #725a4d 100%);
  border: 1px solid rgba(255, 241, 226, 0.12);
  box-shadow:
    0 22px 52px rgba(89, 62, 45, 0.18),
    inset 0 1px 0 rgba(255, 248, 240, 0.05);
}

.page-home .home-intent-jump.bg-slate-900 {
  background:
    radial-gradient(circle at top right, rgba(245, 211, 175, 0.16), transparent 24%),
    radial-gradient(circle at bottom left, rgba(255, 241, 226, 0.08), transparent 26%),
    linear-gradient(135deg, #6a5548 0%, #5b463d 56%, #725a4d 100%);
  color: #fff8f1;
}

.home-intent-jump::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 248, 242, 0.08) 0.7px, transparent 0.7px);
  background-size: 14px 14px;
  opacity: 0.3;
  pointer-events: none;
}

.home-intent-jump-kicker {
  color: #f8d6bc;
}

.home-intent-jump-title {
  color: #fff8f1;
}

.home-intent-jump-copy {
  color: #eadfd5;
}

.home-intent-jump-link {
  border-color: rgba(255, 238, 224, 0.18);
  background: rgba(255, 248, 241, 0.08);
  color: #f8eee6;
}

.page-home .home-intent-jump-link,
.page-home .home-intent-jump-link.bg-slate-800 {
  border-color: rgba(255, 238, 224, 0.16);
  background: rgba(255, 248, 241, 0.08);
  color: #f8eee6;
}

.home-intent-jump-link:hover {
  border-color: #f2c3a1;
  background: var(--brand);
  color: #fffaf5;
}

.page-home .home-intent-jump-link:hover {
  border-color: #f2c3a1;
  background: var(--brand);
  color: #fffaf5;
}

.page-home .home-top-pick-card,
.page-home .home-content-main .bg-white tbody,
.page-home .home-content-main .bg-white thead,
.page-home .home-content-main .bg-white table,
.page-home .home-content-main .bg-white .bg-slate-50,
.page-home .home-content-main .bg-white .bg-gray-50 {
  background-color: transparent;
}

.page-home .home-top-pick-card {
  background:
    linear-gradient(180deg, rgba(252, 248, 243, 0.98) 0%, rgba(246, 238, 230, 0.98) 100%);
}

.page-home .home-content-main .rounded-3xl.bg-white thead.bg-slate-50 {
  background:
    linear-gradient(180deg, rgba(241, 230, 217, 0.94) 0%, rgba(236, 224, 210, 0.94) 100%);
}

.page-home .home-content-main .rounded-3xl.bg-white tbody.bg-white {
  background: transparent;
}

.page-home .home-content-main .rounded-3xl.bg-white tr:nth-child(even) {
  background: rgba(248, 241, 233, 0.72);
}

.page-home .home-content-main .rounded-3xl.bg-white tr:nth-child(odd) {
  background: rgba(252, 248, 243, 0.62);
}

.page-home .home-hero {
  background:
    radial-gradient(circle at top right, rgba(245, 211, 175, 0.22), transparent 28%),
    radial-gradient(circle at left 18%, rgba(255, 247, 237, 0.55), transparent 22%),
    linear-gradient(180deg, rgba(249, 243, 236, 0.98) 0%, rgba(244, 235, 226, 0.98) 100%);
}

.home-hero {
  padding: 2.35rem 2.5rem 2.1rem;
}

.home-hero h1 {
  margin-top: 1rem;
  max-width: none;
  font-size: clamp(2.65rem, 3.7vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.home-hero > p:first-of-type {
  max-width: 60rem;
  margin-top: 1.7rem;
}

.home-hero > p + p {
  max-width: 56rem;
}

.home-hero .mt-8 {
  margin-top: 1.45rem;
}

.home-hero .inline-flex.rounded-full.bg-orange-50 {
  background: rgba(255, 249, 242, 0.9);
  border: 1px solid rgba(219, 200, 181, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.home-hero .inline-flex.items-center.gap-1\.5,
.home-hero .inline-flex.items-center.gap-1\.5.rounded-full {
  background: rgba(244, 233, 222, 0.88);
  border: 1px solid rgba(223, 207, 189, 0.88);
}

.page-home .home-top-picks > .mb-6,
.page-home .home-section-shell > .mb-6,
.page-home .home-section-shell > .mb-5 {
  margin-bottom: 1.35rem;
}

.home-top-picks .grid,
.page-home .home-content-main .grid {
  gap: 1.15rem;
}

.home-top-picks .mb-6 {
  max-width: 64rem;
}

.home-top-picks .text-slate-400 {
  color: #ac8e7a;
}

.home-top-picks .text-slate-600 {
  color: #67584d;
}

.home-section-shell {
  padding: 1.55rem;
}

.home-section-shell h2 {
  max-width: 17ch;
}

.home-section-card,
.home-method-card {
  background:
    linear-gradient(180deg, rgba(248, 241, 233, 0.96) 0%, rgba(242, 233, 223, 0.96) 100%);
}

.home-top-pick-card {
  border-color: rgba(214, 197, 180, 0.9);
  box-shadow:
    0 18px 36px rgba(90, 63, 45, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.home-top-pick-card .bg-slate-100 {
  background: rgba(246, 235, 223, 0.94);
  border: 1px solid rgba(217, 202, 186, 0.84);
}

.home-top-pick-card .bg-gradient-to-br {
  background-image: linear-gradient(135deg, #da8454 0%, #be6a3e 58%, #a85a34 100%);
  box-shadow: 0 12px 28px rgba(184, 95, 51, 0.22);
}

.home-section-card .bg-white,
.home-method-card .bg-white {
  background: rgba(255, 250, 244, 0.92);
}

.home-method-card {
  border-color: rgba(215, 200, 184, 0.92);
}

.home-comparison-shell {
  background:
    radial-gradient(circle at top right, rgba(236, 206, 179, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(248, 242, 235, 0.98) 0%, rgba(243, 234, 224, 0.98) 100%);
}

.home-comparison-shell h2,
.home-section-shell h2 {
  font-size: clamp(2rem, 3.3vw, 2.75rem);
  line-height: 1.04;
}

.home-comparison-table-wrap {
  border: 1px solid rgba(214, 197, 180, 0.92);
  border-radius: 1.4rem;
  overflow: hidden;
  background: rgba(255, 250, 245, 0.7);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.65);
}

.page-home .home-content-main .rounded-3xl.bg-white table {
  border-collapse: separate;
  border-spacing: 0;
}

.page-home .home-content-main .rounded-3xl.bg-white td,
.page-home .home-content-main .rounded-3xl.bg-white th {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.page-home .home-content-main .rounded-3xl.bg-white tbody tr:hover {
  background: rgba(239, 228, 217, 0.84);
}

.home-aside-card {
  background:
    linear-gradient(180deg, rgba(250, 245, 239, 0.98) 0%, rgba(245, 236, 226, 0.98) 100%);
}

.home-section-card .text-slate-600,
.home-method-card .text-slate-600,
.home-comparison-shell .text-slate-600 {
  color: #67584d;
}

.home-section-card .text-slate-500,
.home-method-card .text-slate-500 {
  color: #8a786c;
}

.home-aside {
  display: none;
}

.home-comparison-cards {
  display: none;
}

.home-comparison-card dl,
.home-comparison-card dt,
.home-comparison-card dd {
  margin: 0;
}

.home-mobile-jump {
  position: sticky;
  top: 0.5rem;
  z-index: 20;
  margin: 0 0 2rem;
}

.home-mobile-jump-inner {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(221, 208, 195, 0.92);
  border-radius: 1.25rem;
  background: rgba(247, 241, 234, 0.92);
  box-shadow: var(--shadow-sm);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.home-mobile-jump-inner::-webkit-scrollbar {
  display: none;
}

.home-mobile-jump-link {
  flex: 0 0 auto;
  white-space: nowrap;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.56);
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 180ms ease;
}

.home-mobile-jump-link:hover {
  background: #fff4eb;
  color: var(--brand-strong);
}

.site-header {
  backdrop-filter: blur(16px) saturate(1.06);
  background: linear-gradient(180deg, rgba(247, 241, 234, 0.92), rgba(242, 232, 220, 0.84));
  border-bottom: 1px solid rgba(221, 208, 195, 0.92);
  box-shadow: 0 10px 26px rgba(78, 52, 37, 0.06);
}

.site-nav-list,
.site-nav-item,
.site-header nav ul,
.site-header nav li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav-list {
  list-style-type: none;
}

.site-nav-item {
  display: block;
}

.site-nav-item::before,
.site-nav-item::after,
.site-header nav li::marker {
  content: "";
  display: none;
}

.site-brand {
  color: inherit;
}

.site-brand-mark {
  background: rgba(217, 119, 69, 0.08);
  box-shadow: inset 0 0 0 1px rgba(217, 119, 69, 0.16);
  color: var(--brand);
}

.site-brand:hover .site-brand-mark {
  background: rgba(217, 119, 69, 0.14);
  box-shadow: inset 0 0 0 1px rgba(217, 119, 69, 0.26);
  color: var(--brand-strong);
}

.site-brand-robot {
  display: block;
  height: 2rem;
  width: 2rem;
}

.site-brand-text {
  color: var(--text);
}

.site-brand:hover .site-brand-text {
  color: var(--brand-strong);
}

.site-nav-link {
  color: var(--muted);
}

.site-nav-link:hover {
  color: var(--text);
}

.site-header-cta {
  background: var(--brand);
  color: #fffaf5;
  box-shadow: 0 12px 26px rgba(184, 95, 51, 0.18);
}

.site-header-cta:hover {
  background: #cd6e3f;
}

.mobile-primary-nav {
  border-top: 1px solid rgba(221, 208, 195, 0.72);
  border-bottom: 1px solid rgba(221, 208, 195, 0.72);
  background: rgba(236, 225, 211, 0.88);
  backdrop-filter: blur(14px) saturate(1.04);
}

.mobile-primary-nav-inner {
  display: flex;
  gap: 0.7rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.mobile-primary-nav-inner::-webkit-scrollbar {
  display: none;
}

.mobile-primary-nav-link {
  flex: 0 0 auto;
  white-space: nowrap;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.mobile-primary-nav-link:hover {
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  transform: translateY(-1px);
}

.mobile-primary-nav-link--submit {
  background: var(--brand);
  color: #fffaf5;
}

.mobile-primary-nav-link--submit:hover {
  background: #cd6e3f;
  color: #fffaf5;
}

.site-footer {
  margin-top: 3rem;
  background:
    radial-gradient(circle at top right, rgba(245, 213, 182, 0.16), transparent 24%),
    linear-gradient(180deg, #e8d9cb 0%, #e0d0c1 100%);
  color: var(--muted);
  border-top: 1px solid rgba(207, 190, 173, 0.92);
}

.site-footer-title {
  color: var(--text);
}

.site-footer-link {
  color: var(--muted-soft);
}

.site-footer-link:hover {
  color: var(--brand-strong);
}

.site-footer-meta {
  border-color: rgba(207, 190, 173, 0.92);
  color: var(--muted-soft);
}

.page-product-detail details {
  border: 1px solid var(--line);
}

.page-product-detail summary {
  list-style: none;
}
.page-product-detail summary::-webkit-details-marker {
  display: none;
}

.page-product-detail .inline-flex.items-center.gap-2.px-6.py-3 {
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.18);
}

.breadcrumb-trail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  color: var(--muted-soft);
  list-style: none;
}

.breadcrumb-trail ol,
.breadcrumb-trail ul,
.breadcrumb-trail li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb-trail li::marker {
  content: "";
}

.breadcrumb-item {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.breadcrumb-link {
  color: var(--muted-soft);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link:hover {
  color: var(--blue);
}

.breadcrumb-separator {
  color: #94a3b8;
  line-height: 1;
}

.breadcrumb-current {
  color: var(--text);
  font-weight: 600;
}

@media (min-width: 640px) {
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:flex-row { flex-direction: row; }
  .sm\:flex-1 { flex: 1 1 0%; }
  .sm\:items-end { align-items: flex-end; }
  .sm\:justify-between { justify-content: space-between; }
  .sm\:text-5xl { font-size: 4rem; line-height: 1; }
  .sm\:p-8 { padding: 2rem; }
}

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:flex-1 { flex: 1 1 0%; }
  .md\:items-center { align-items: center; }
  .md\:justify-end { justify-content: flex-end; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:gap-6 { gap: 1.5rem; }
  .md\:gap-8 { gap: 2rem; }
  .md\:p-12 { padding: 3rem; }
  .md\:text-4xl { font-size: 3rem; line-height: 1.05; }

  .home-mobile-jump {
    display: none;
  }

  .home-content-layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
  }

  .home-aside {
    display: block;
    position: sticky;
    top: 7rem;
    align-self: start;
    margin: 0;
  }
}

@media (min-width: 1024px) {
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }
  .lg\:sticky { position: sticky; }
  .lg\:self-start { align-self: flex-start; }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
  .lg\:top-10 { top: 2.5rem; }
  .lg\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .lg\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:text-5xl { font-size: 4rem; line-height: 1; }
  .lg\:text-4xl { font-size: 3.2rem; line-height: 1.05; }
  .lg\:text-3xl { font-size: 2.2rem; line-height: 1.15; }
  .lg\:grid-cols-\[0\.92fr_1\.08fr\] { grid-template-columns: 0.92fr 1.08fr; }
  .lg\:grid-cols-\[1\.1fr_0\.9fr\] { grid-template-columns: 1.1fr 0.9fr; }
  .lg\:grid-cols-\[1\.3fr_1fr_1fr\] { grid-template-columns: 1.3fr 1fr 1fr; }
  .lg\:grid-cols-\[1\.05fr_0\.95fr\] { grid-template-columns: 1.05fr 0.95fr; }
  .lg\:grid-cols-\[1\.2fr_1fr\] { grid-template-columns: 1.2fr 1fr; }
}

@media (min-width: 1280px) {
  .xl\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 1023px) {
  .page-home .text-4xl,
  .page-category-hub .text-4xl,
  .page-blog .text-4xl,
  .page-article .text-4xl,
  .page-product-detail .text-4xl {
    max-width: none;
  }

  .page-home section,
  .page-category-hub section,
  .page-blog section,
  .page-blog article,
  .page-article article > header,
  .page-article article > section,
  .page-product-detail article,
  .page-product-detail section {
    border-radius: 1.25rem;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 15px;
  }

  .container,
  .max-w-7xl,
  .max-w-5xl,
  .max-w-4xl,
  .max-w-3xl,
  .max-w-2xl {
    width: min(100%, calc(100vw - 1.25rem));
  }

  .p-8,
  .px-8,
  .py-12,
  .py-16 {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .p-7 { padding: 1.35rem; }
  .p-6 { padding: 1.15rem; }
  .p-5 { padding: 1rem; }
  .text-4xl { font-size: 2.25rem; }
  .text-5xl { font-size: 2.55rem; }
  .text-3xl { font-size: 1.95rem; }
  .text-2xl { font-size: 1.55rem; }

  .page-home .grid-cols-2,
  .page-home .grid-cols-3,
  .page-home .grid-cols-4,
  .page-product-submit .grid-cols-2,
  .page-product-submit .grid-cols-3,
  .page-category-hub .grid-cols-2,
  .page-category-hub .grid-cols-3,
  .page-product-detail .grid-cols-2,
  .page-product-list .grid-cols-2,
  .page-product-list .grid-cols-3 {
    grid-template-columns: 1fr;
  }

  .page-home .h-20 {
    height: auto;
    min-height: 4.5rem;
  }

  .page-home main {
    padding-top: 1.15rem;
  }

  .page-home main > .container {
    gap: 0;
  }

  .page-home section {
    margin-bottom: 1rem;
  }

  .home-mobile-jump {
    top: 4.45rem;
    z-index: 15;
  }

  .home-mobile-jump-inner {
    padding: 0.75rem 0.8rem;
    border-radius: 1rem;
  }

  .home-mobile-jump-link {
    padding: 0.65rem 0.9rem;
    font-size: 0.82rem;
  }

  .mobile-primary-nav .mx-auto {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .mobile-primary-nav-inner {
    gap: 0.55rem;
  }

  .mobile-primary-nav-link {
    padding: 0.62rem 0.88rem;
    font-size: 0.8rem;
  }

  .home-comparison-cards {
    display: grid;
    gap: 0.85rem;
  }

  .home-comparison-table-wrap {
    display: none;
  }

  .home-comparison-card {
    border-radius: 1.1rem;
  }

  .page-home section[id] {
    scroll-margin-top: 9rem;
  }

  .breadcrumb-trail {
    row-gap: 0.5rem;
    column-gap: 0.35rem;
  }

  .page-glass-theme .glass-page {
    padding-top: 2rem;
    padding-bottom: 3rem;
  }

  .submit-page {
    padding-top: 1rem;
    padding-bottom: 2.35rem;
  }

  .submit-page-inner {
    padding: 0 1.15rem;
  }

  .submit-layout {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .submit-sidebar,
  .submit-shell {
    border-radius: 1.35rem;
    padding: 1.15rem;
  }

  .submit-sidebar {
    position: static;
    top: auto;
  }

  .submit-sidebar-notes {
    gap: 0.8rem;
    margin-top: 1rem;
  }

  .submit-note-card {
    padding: 0.95rem;
  }

  .submit-title {
    font-size: 1.9rem;
  }

  .submit-shell-title {
    font-size: 1.45rem;
  }

  .submit-intro,
  .submit-shell-copy,
  .submit-note-copy,
  .submit-form p {
    font-size: 0.95rem;
  }

  .submit-form .flex.justify-between.gap-3,
  .submit-form .flex.justify-end {
    flex-direction: column;
    align-items: stretch;
  }

  .submit-nav-primary,
  .submit-nav-secondary {
    width: 100%;
  }
}

/* Apple-inspired game site refresh */
:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f5f5f7;
  --surface-muted: #fafafc;
  --text: #1d1d1f;
  --muted: #333333;
  --muted-soft: #7a7a7a;
  --line: #e0e0e0;
  --line-strong: #d2d2d7;
  --brand: #0066cc;
  --brand-strong: #0071e3;
  --brand-soft: #e8f2ff;
  --blue: #0066cc;
  --panel: #000000;
  --panel-soft: #272729;
  --panel-border: #3a3a3c;
  --shadow-sm: none;
  --shadow-md: 0 26px 60px rgba(0, 0, 0, 0.12);
  --radius-lg: 18px;
  --radius-xl: 22px;
  --radius-2xl: 28px;
}

body {
  background: #ffffff;
  color: #1d1d1f;
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  letter-spacing: -0.224px;
}

.page-home,
.page-games,
.page-games-category,
.page-games-list,
.page-game-detail,
.page-home.page-games {
  background: #ffffff;
}

.site-header {
  position: relative;
  z-index: 60;
  min-height: 44px;
  background: rgba(0, 0, 0, 0.86);
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: saturate(180%) blur(20px);
}

.site-header .max-w-7xl,
.site-footer .max-w-7xl {
  max-width: 64rem;
}

.site-header .py-4 {
  min-height: 44px;
  padding-top: 0;
  padding-bottom: 0;
}

.site-brand,
.site-brand-text,
.site-nav-link {
  color: rgba(255, 255, 255, 0.86);
}

.site-brand-text {
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: -0.12px;
}

.site-brand:hover .site-brand-text,
.site-nav-link:hover {
  color: #ffffff;
}

.site-nav-list {
  gap: 1.6rem;
}

.site-nav-link {
  padding: 0;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 44px;
  letter-spacing: -0.12px;
}

.mobile-primary-nav {
  background: rgba(245, 245, 247, 0.92);
  border-top: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: saturate(180%) blur(20px);
}

.mobile-primary-nav-link,
.games-lang,
.game-tag,
.games-pagination a,
.games-pagination span {
  border: 1px solid transparent;
  background: #f5f5f7;
  color: #333333;
  box-shadow: none;
}

.mobile-primary-nav-link:hover,
.games-lang:hover,
.game-tag:hover {
  background: #ebebee;
  color: #1d1d1f;
  transform: none;
}

.games-lang--active {
  background: #1d1d1f;
  color: #ffffff;
  border-color: #1d1d1f;
}

.games-page,
.game-detail-page {
  background: #ffffff;
  color: #1d1d1f;
}

.games-container {
  max-width: 1180px;
  padding: 0 1.5rem;
}

.games-hero {
  padding: 72px 0 84px;
  background: #f5f5f7;
  color: #1d1d1f;
}

.games-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.games-hero-copy-block {
  max-width: 620px;
}

.games-kicker {
  margin-bottom: 0.85rem;
  color: #6e6e73;
  font-size: 1.3125rem;
  font-weight: 600;
  line-height: 1.19;
  letter-spacing: 0.231px;
  text-transform: none;
}

.games-hero h1 {
  max-width: 760px;
  color: #1d1d1f;
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-size: clamp(3.25rem, 7vw, 5.8rem);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.28px;
  text-wrap: balance;
}

.games-hero-copy {
  max-width: 600px;
  margin-top: 1.15rem;
  color: #333333;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: 0.196px;
}

.games-hero-actions {
  margin-top: 1.7rem;
}

.games-button,
.game-tool-button,
.game-share-row a,
.game-share-row button,
.game-info-toggle button {
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: #ffffff;
  color: #0066cc;
  padding: 11px 22px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  box-shadow: none;
}

.games-button--primary,
.game-tool-button,
.game-info-toggle button {
  background: #0066cc;
  color: #ffffff;
}

.games-button:hover,
.game-share-row a:hover,
.game-share-row button:hover {
  color: #0071e3;
  text-decoration: none;
}

.games-button--primary:hover,
.game-tool-button:hover,
.game-info-toggle button:hover {
  background: #0071e3;
  color: #ffffff;
}

.home-hero-player {
  min-width: 0;
}

.home-hero-player-frame {
  border-radius: 28px;
  background: #000000;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.2);
}

.home-hero-game-link {
  position: absolute;
  inset: 0;
  display: block;
  color: #ffffff;
  overflow: hidden;
}

.home-hero-game-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-game-link span {
  position: absolute;
  left: 24px;
  bottom: 22px;
  border-radius: 999px;
  background: #0066cc;
  color: #ffffff;
  padding: 11px 22px;
  font-size: 17px;
}

.home-hero-player-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1rem;
  color: #7a7a7a;
  font-size: 0.95rem;
}

.home-hero-player-meta strong {
  color: #1d1d1f;
  font-weight: 600;
}

.home-hero-player-meta a {
  color: #0066cc;
}

.games-section {
  padding: 80px 0;
  background: #ffffff;
}

.games-section--soft {
  background: #f5f5f7;
}

.games-section-heading {
  align-items: center;
  margin-bottom: 1.6rem;
}

.games-section-heading h1,
.games-section-heading h2 {
  color: #1d1d1f;
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}

.games-section-heading p {
  max-width: 740px;
  color: #333333;
  font-size: 1.3125rem;
  line-height: 1.38;
}

.games-section-heading a,
.game-breadcrumb a {
  color: #0066cc;
  font-weight: 400;
}

.games-grid {
  grid-template-columns: repeat(auto-fill, minmax(238px, 1fr));
  gap: 18px;
}

.game-card,
.category-tile,
.game-faq-item,
.home-seo-text,
.game-summary,
.game-info-panel,
.game-editorial-card {
  border: 0;
  border-radius: 18px;
  background: #f5f5f7;
  box-shadow: none;
}

.game-card {
  transition: transform 220ms ease, background 220ms ease;
}

.game-card:hover {
  transform: translateY(-2px);
  background: #eeeeef;
}

.game-card-media {
  background: #000000;
}

.game-card-play {
  right: 12px;
  bottom: 12px;
  background: rgba(0, 0, 0, 0.74);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 500;
  backdrop-filter: blur(14px);
}

.game-card-body {
  padding: 1rem 1.05rem 1.08rem;
}

.game-card-body h3 {
  color: #1d1d1f;
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: -0.374px;
}

.game-card-meta {
  color: #7a7a7a;
  font-size: 0.875rem;
  font-weight: 400;
}

.rating-star {
  color: #ffcc00;
}

.category-tile {
  min-height: 9.75rem;
  padding: 1.35rem;
  color: #1d1d1f;
  transition: background 180ms ease, transform 180ms ease;
}

.category-tile:hover {
  border-color: transparent;
  background: #eeeeef;
  transform: none;
}

.category-tile span {
  color: #7a7a7a;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: -0.224px;
  text-transform: none;
}

.category-tile strong {
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1.12;
}

.game-tag-cloud {
  gap: 0.6rem;
}

.game-tag {
  padding: 0.62rem 0.95rem;
  font-size: 0.875rem;
  font-weight: 400;
}

.game-faq-list {
  gap: 0;
  border-top: 1px solid #e0e0e0;
}

.game-faq-item {
  border-radius: 0;
  border-bottom: 1px solid #e0e0e0;
  background: transparent;
  padding: 1.25rem 0;
}

.game-faq-item summary {
  color: #1d1d1f;
  font-size: 1.0625rem;
  font-weight: 600;
}

.game-faq-item p {
  max-width: 780px;
  color: #333333;
  font-size: 1.0625rem;
}

.home-seo-text {
  padding: clamp(2rem, 5vw, 4rem);
  background: #f5f5f7;
}

.home-seo-text h2 {
  color: #1d1d1f;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
}

.home-seo-text p {
  color: #333333;
  font-size: 1.125rem;
  line-height: 1.58;
}

.game-detail-page {
  position: relative;
  padding: 16px 0 80px;
  background: #f2f5f9;
  overflow: hidden;
}

.game-detail-page::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 805px;
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 113, 227, 0.16), rgba(0, 113, 227, 0) 34%),
    radial-gradient(circle at 82% 8%, rgba(52, 199, 89, 0.12), rgba(52, 199, 89, 0) 30%),
    linear-gradient(180deg, #eaf3ff 0%, #eef2f7 58%, #f2f5f9 100%);
  z-index: 0;
}

.game-detail-page > .games-container {
  position: relative;
  z-index: 1;
}

.game-breadcrumb {
  color: #7a7a7a;
  font-size: 0.875rem;
}

.game-summary {
  margin: 0.8rem 0 0.9rem;
  padding: 0;
  background: transparent;
  text-align: center;
}

.game-summary h1 {
  max-width: 900px;
  margin: 0 auto;
  color: #1d1d1f;
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.28px;
  text-wrap: balance;
}

.game-summary p {
  max-width: 760px;
  margin: 1rem auto 0;
  color: #333333;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  line-height: 1.28;
}

.game-featured-player {
  max-width: 820px;
  margin: 0 auto;
  border-radius: 18px;
  background: #000000;
  box-shadow:
    0 18px 42px rgba(16, 24, 40, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.9);
}

.game-presentation-area {
  max-width: 920px;
  margin: 0 auto;
  padding: 10px 14px 0;
  border: 1px solid rgba(120, 135, 155, 0.18);
  border-radius: 26px;
  background: rgba(242, 245, 249, 0.36);
  box-shadow: 0 18px 42px rgba(16, 24, 40, 0.1);
}

.game-play-overlay {
  align-items: center;
  padding-top: 0;
  background: rgba(0, 0, 0, 0.32);
}

.game-play-button {
  border: 0;
  border-radius: 999px;
  background: #0066cc;
  color: #ffffff;
  padding: 14px 28px;
  font-size: 18px;
  font-weight: 400;
  box-shadow: none;
}

.game-play-button:hover {
  background: #0071e3;
}

.game-toolbar,
.game-share-row {
  margin: 0.8rem 0;
}

.game-fullscreen-row {
  display: flex;
  justify-content: center;
  margin: 0.8rem 0;
}

.game-presentation-area .game-share-row {
  justify-content: center;
  margin: 0.65rem 0 0.35rem;
}

.game-presentation-area .game-share-row a,
.game-presentation-area .game-share-row button {
  border-color: #d2d2d7;
  background: rgba(255, 255, 255, 0.86);
  color: #1d1d1f;
  backdrop-filter: blur(12px);
}

.game-presentation-area .game-share-row a:hover,
.game-presentation-area .game-share-row button:hover {
  border-color: #0071e3;
  background: #ffffff;
  color: #0066cc;
}

.game-fullscreen-button {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 0;
  border-radius: 999px;
  background: #0066cc;
  color: #ffffff;
  padding: 10px 18px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.game-fullscreen-button:hover {
  background: #0071e3;
}

.game-info-panel {
  margin: 2rem 0;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid #e5e5ea;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 36px rgba(16, 24, 40, 0.08);
}

.you-might-like-panel .games-section-heading {
  margin-bottom: 1.25rem;
}

.home-detail-aside {
  margin: clamp(2rem, 5vw, 4rem) 0;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid #e5e5ea;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 36px rgba(16, 24, 40, 0.07);
}

.home-detail-aside-section + .home-detail-aside-section {
  margin-top: clamp(2rem, 5vw, 4rem);
}

.home-detail-aside .game-card,
.home-detail-aside .category-tile {
  background: #ffffff;
}

.home-detail-aside .game-card:hover,
.home-detail-aside .category-tile:hover {
  background: #eeeeef;
}

.game-info-content {
  color: #333333;
  font-size: 1.0625rem;
  line-height: 1.58;
  max-height: none;
  min-height: 0;
  overflow: visible;
}

.game-info-content p + p {
  margin-top: 1rem;
}

.game-feature-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.game-feature-list li {
  position: relative;
  border-radius: 16px;
  background: #ffffff;
  color: #333333;
  padding: 1rem 1rem 1rem 2.4rem;
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.55;
}

.game-feature-list li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.62rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: #0066cc;
}

.how-to-play-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  color: #333333;
  font-size: 1.0625rem;
  list-style: none;
  counter-reset: how-to-play;
}

.how-to-play-list li {
  position: relative;
  counter-increment: how-to-play;
  border-radius: 16px;
  background: #ffffff;
  padding: 1rem 1rem 1rem 3.2rem;
  line-height: 1.55;
}

.how-to-play-list li::before {
  content: counter(how-to-play);
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 999px;
  background: #1d1d1f;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  font-weight: 600;
}

.game-unavailable {
  color: #cccccc;
}

.content-page {
  padding: 36px 0 80px;
  background: #ffffff;
}

.site-messages {
  padding-top: 1rem;
}

.site-message {
  margin-bottom: 0.75rem;
  border-radius: 18px;
  background: #f5f5f7;
  color: #333333;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  line-height: 1.45;
}

.content-hero {
  margin: 1.8rem 0 2rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: 28px;
  background: #f5f5f7;
}

.content-hero h1 {
  max-width: 920px;
  margin: 0;
  color: #1d1d1f;
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-size: clamp(2.5rem, 5.4vw, 4.75rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.28px;
}

.content-hero p {
  max-width: 760px;
  margin: 1rem 0 0;
  color: #333333;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  line-height: 1.35;
}

.content-hero a,
.article-body a {
  color: #0066cc;
}

.content-kicker,
.content-hero time,
.article-card time {
  display: block;
  margin: 0 0 0.85rem;
  color: #6e6e73;
  font-size: 0.875rem;
  font-weight: 500;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.article-card,
.article-body {
  border-radius: 18px;
  background: #f5f5f7;
}

.article-card {
  transition: background 180ms ease, transform 180ms ease;
}

.article-card:hover {
  background: #eeeeef;
  transform: translateY(-2px);
}

.article-card a {
  display: block;
  min-height: 100%;
  padding: 1.35rem;
  color: inherit;
}

.article-card h2 {
  margin: 0;
  color: #1d1d1f;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.16;
}

.article-card p {
  margin: 0.8rem 0 0;
  color: #333333;
  font-size: 1rem;
  line-height: 1.55;
}

.article-detail {
  max-width: 940px;
  margin: 0 auto;
}

.content-hero--article {
  background: #ffffff;
  padding-inline: 0;
}

.article-cover {
  width: 100%;
  margin: 0 0 2rem;
  border-radius: 28px;
  background: #f5f5f7;
}

.article-body {
  padding: clamp(1.5rem, 4vw, 3rem);
  color: #333333;
  font-size: 1.0625rem;
  line-height: 1.65;
}

.article-body h2 {
  margin: 2rem 0 0.75rem;
  color: #1d1d1f;
  font-size: 1.55rem;
  font-weight: 600;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body p,
.article-body ul,
.article-body ol {
  margin: 0 0 1rem;
}

.article-body li + li {
  margin-top: 0.35rem;
}

.error-page {
  min-height: 62vh;
  display: flex;
  align-items: center;
}

.error-panel {
  text-align: center;
}

.error-panel h1,
.error-panel p {
  margin-left: auto;
  margin-right: auto;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.error-action-primary,
.error-action-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 0.72rem 1.15rem;
  border: 0;
  font: inherit;
  font-size: 0.95rem;
  cursor: pointer;
}

.error-action-primary {
  background: #0066cc;
  color: #ffffff;
}

.error-action-secondary {
  background: #ffffff;
  color: #1d1d1f;
}

.games-empty-state {
  border: 1px solid #e0e0e0;
  border-radius: 18px;
  background: #f5f5f7;
  color: #7a7a7a;
}

.site-footer {
  margin-top: 0;
  background: #f5f5f7;
  color: #6e6e73;
  border-top: 1px solid #e0e0e0;
}

.site-footer-inner {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 3rem 0 2rem;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.5fr) repeat(3, minmax(140px, 1fr));
  gap: 2rem;
}

.site-footer-brand {
  max-width: 340px;
}

.site-footer-logo {
  display: inline-flex;
  color: #1d1d1f;
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
}

.site-footer-brand p {
  margin: 0.85rem 0 0;
  color: #6e6e73;
  font-size: 0.95rem;
  line-height: 1.55;
}

.site-footer-title {
  margin: 0 0 0.9rem;
  color: #1d1d1f;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.224px;
  text-transform: none;
}

.site-footer-column ul {
  display: grid;
  gap: 0.62rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer-link {
  color: #424245;
  font-size: 0.95rem;
  text-decoration: none;
}

.site-footer-link:hover {
  color: #0066cc;
  text-decoration: none;
}

.site-footer-languages {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.site-footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid #d2d2d7;
  border-color: #d2d2d7;
  color: #6e6e73;
  font-size: 0.9rem;
}

.site-footer-meta p {
  margin: 0;
}

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

  .site-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .games-container {
    padding: 0 1rem;
  }

  .games-hero {
    padding: 48px 0 56px;
  }

  .games-hero h1 {
    font-size: clamp(2.55rem, 14vw, 4rem);
  }

  .games-hero-copy {
    font-size: 1.25rem;
  }

  .home-hero-player-frame {
    border-radius: 18px;
  }

  .game-detail-page {
    padding-top: 14px;
  }

  .game-summary {
    margin: 0.65rem 0 0.85rem;
  }

  .game-summary h1 {
    font-size: clamp(1.85rem, 9vw, 2.65rem);
    line-height: 1.06;
  }

  .game-featured-player {
    border-radius: 14px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
  }

  .game-presentation-area {
    padding: 10px 10px 1px;
    border-radius: 20px;
  }

  .game-detail-page::before {
    height: 630px;
  }

  .game-fullscreen-row,
  .game-share-row {
    margin: 0.7rem 0;
  }

  .games-section {
    padding: 56px 0;
  }

  .games-section-heading {
    display: block;
  }

  .games-section-heading h1,
  .games-section-heading h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .site-header .py-4 {
    min-height: 44px;
  }

  .site-brand-text {
    font-size: 0.82rem;
  }
}
