@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg-body: #0a0a0b;
  --bg-surface: #111114;
  --bg-card: #141419;
  --bg-card-hover: #1a1a22;
  --bg-card-soft: rgba(255, 255, 255, 0.03);
  --text-primary: #e4e4e7;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --text-faint: #52525b;
  --accent: #8b5cf6;
  --accent-hover: #7c3aed;
  --accent-soft: rgba(139, 92, 246, 0.16);
  --border: #27272a;
  --border-soft: rgba(255, 255, 255, 0.08);
  --success: #22c55e;
  --danger: #ef4444;
  --warning: #f97316;
  --info: #3b82f6;
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.24);
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.4);
  --radius-card: 12px;
  --radius-btn: 8px;
  --radius-pill: 999px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--bg-body);
  color: var(--text-primary);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top center, rgba(139, 92, 246, 0.14), transparent 30%),
    radial-gradient(circle at bottom right, rgba(124, 58, 237, 0.08), transparent 28%);
  z-index: -1;
}

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

a:hover {
  text-decoration: none;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px;
}

.site-main {
  flex: 1;
  padding: 1.5rem 0 0;
}

.section {
  padding: 2rem 0;
}

.section__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.page-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

.empty-state,
.no-results {
  text-align: center;
  color: var(--text-muted);
  padding: 3rem 1rem;
  font-size: 1.125rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
}

.site-header {
  background: rgba(10, 10, 11, 0.92);
  border-bottom: 1px solid #1a1a22;
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
}

.site-header--minimal {
  background: rgba(10, 10, 11, 0.96);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.site-header__logo,
.site-logo {
  font-size: 1.375rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.03em;
}

.site-header__logo,
.site-logo span {
  color: var(--accent);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-header__nav a,
.site-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 150ms ease, background 150ms ease;
  padding: 0.55rem 0.85rem;
  border-radius: 10px;
}

.site-header__nav a:hover,
.site-nav a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
}

.site-search {
  margin-left: auto;
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  min-width: 240px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.site-search input {
  background: transparent;
  border: none;
  color: var(--text-primary);
  padding: 0.7rem 0.95rem;
  font-size: 0.875rem;
  width: 100%;
  outline: none;
}

.site-search input::placeholder {
  color: var(--text-muted);
}

.site-search button {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  padding: 0.7rem 0.95rem;
  cursor: pointer;
  transition: color 150ms ease;
}

.site-search button:hover {
  color: var(--text-primary);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 1.1rem;
  border-radius: 10px;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.hero {
  text-align: center;
  padding: 3rem 1rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #e4e4e7;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.hero__count {
  color: #8b5cf6;
  text-shadow: 0 0 24px rgba(139, 92, 246, 0.25);
}

.hero__intro,
.hero__sub {
  color: #a1a1aa;
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 1.5rem;
}

.hero__intro strong {
  color: var(--text-primary);
}

.hero__categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 1.25rem;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1.25rem;
  background: #141419;
  border: 1px solid #27272a;
  border-radius: 100px;
  color: #a1a1aa;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 150ms ease;
}

.hero__pill:hover,
.hero__pill--active {
  background: #8b5cf6;
  border-color: #8b5cf6;
  color: #fff;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.18);
}

/* Filter bar */
.filter-bar {
  max-width: 1320px;
  margin: 0 auto 1.5rem;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.filter-group__label {
  color: #71717a;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  min-width: 60px;
  flex-shrink: 0;
}

.filter-pills {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
}

.filter-pills::-webkit-scrollbar {
  display: none;
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background: #141419;
  border: 1px solid #27272a;
  border-radius: 100px;
  color: #a1a1aa;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: all 150ms ease;
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.filter-pill:hover {
  border-color: #8b5cf6;
  color: #e4e4e7;
}

.filter-pill--active {
  background: #8b5cf6;
  border-color: #8b5cf6;
  color: #fff;
}

.filter-count {
  text-align: center;
  color: #8b5cf6;
  font-size: 0.875rem;
  font-weight: 500;
  min-height: 1.25rem;
}

.why-section {
  padding: 3rem 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.why-card {
  background: #141419;
  border: 1px solid #27272a;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
  box-shadow: var(--shadow-md);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.35);
}

.why-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.why-card h3 {
  color: #e4e4e7;
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.why-card p {
  color: #a1a1aa;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

.faq-section {
  padding: 3rem 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.faq-card {
  background: #141419;
  border: 1px solid #27272a;
  border-left: 3px solid #8b5cf6;
  border-radius: 0 12px 12px 0;
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}

.faq-card h3 {
  color: #e4e4e7;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.faq-card p {
  color: #a1a1aa;
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 0;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 0.5rem 0 2rem;
}

.stats-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  min-height: 168px;
  padding: 1.25rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  color: var(--text-primary);
  text-decoration: none;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.stats-card::before {
  content: '';
  position: absolute;
  inset: auto -20% -45% auto;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.28), transparent 70%);
  pointer-events: none;
}

.stats-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-lg);
  border-color: rgba(139, 92, 246, 0.35);
}

.stats-card__topline {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.stats-card__emoji {
  font-size: 1.5rem;
}

.stats-card__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 700;
}

.stats-card__headline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 1rem;
  line-height: 1.2;
}

.stats-card__headline strong {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
}

.stats-card__headline em {
  font-style: normal;
  color: #fda4af;
  letter-spacing: 0.08em;
}

.stats-card__headline--stacked {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.stats-card__meta {
  margin-top: auto;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.stats-card--live {
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.12), rgba(139, 92, 246, 0.08) 60%, rgba(255, 255, 255, 0.03));
}

.live-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #ef4444;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  animation: livePulse 1.8s infinite;
}

@keyframes livePulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.platform-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.platform-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.4375rem 0.625rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--text-primary);
  font-size: 0.8rem;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.platform-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(139, 92, 246, 0.5);
}

.platform-pill--streamate { background: rgba(34, 197, 94, 0.12); }
.platform-pill--chaturbate { background: rgba(59, 130, 246, 0.12); }
.platform-pill--stripchat { background: rgba(244, 114, 182, 0.12); }

.stats-sparkline {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 28px;
  margin-top: auto;
}

.stats-sparkline span {
  display: block;
  width: 7px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.95), rgba(139, 92, 246, 0.2));
  animation: sparkBounce 1.8s ease-in-out infinite;
}

.stats-sparkline span:nth-child(1) { height: 30%; animation-delay: 0s; }
.stats-sparkline span:nth-child(2) { height: 55%; animation-delay: 0.15s; }
.stats-sparkline span:nth-child(3) { height: 85%; animation-delay: 0.3s; }
.stats-sparkline span:nth-child(4) { height: 60%; animation-delay: 0.45s; }
.stats-sparkline span:nth-child(5) { height: 100%; animation-delay: 0.6s; }

@keyframes sparkBounce {
  0%, 100% { opacity: 0.65; transform: scaleY(0.92); }
  50% { opacity: 1; transform: scaleY(1); }
}

.category-hero {
  text-align: center;
  padding: 2.5rem 1rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.category-hero h1,
.category-hero .page-title {
  font-size: 2rem;
  font-weight: 700;
  color: #e4e4e7;
  margin-bottom: 1rem;
}

.category-hero__desc,
.category-intro,
.category-tag-description {
  color: #a1a1aa;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
}

.category-intro {
  display: grid;
  gap: 1rem;
}

.category-intro p {
  margin-bottom: 1rem;
  color: #a1a1aa;
  line-height: 1.7;
}

.category-intro p:last-child {
  margin-bottom: 0;
}

.category-hero__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
  margin-bottom: 2rem;
}

.category-hero + .section,
.category-hero + section {
  padding-top: 1rem;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1rem;
}

.model-card {
  background: #141419;
  border: 1px solid #27272a;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.model-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  border-color: rgba(139, 92, 246, 0.26);
}

.model-card__link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.model-card__thumb {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #1a1a22;
}

.model-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 200ms ease;
}

.model-card:hover .model-card__thumb img {
  transform: scale(1.03);
}

.model-card__thumb img.blurred {
  filter: blur(15px);
  transform: scale(1.1);
}

.model-card:hover .model-card__thumb img.blurred {
  transform: scale(1.14);
}

.model-card__nsfw-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
}

.nsfw-badge {
  background: #ef4444;
  color: white;
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
}

.model-card__badges {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  gap: 4px;
}

.model-card__viewers {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: #e4e4e7;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
}

.model-card__info {
  padding: 0.75rem;
}

.model-card__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #e4e4e7;
  margin: 0 0 0.375rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.model-card__tags {
  display: flex;
  gap: 4px;
  overflow: hidden;
  flex-wrap: wrap;
}

.model-card__tags .tag-pill,
.tag-pill {
  font-size: 11px;
  padding: 2px 8px;
  background: #27272a;
  border-radius: 100px;
  color: #a1a1aa;
  white-space: nowrap;
  text-decoration: none;
  transition: all 150ms ease;
}

.model-card__tags .tag-pill:hover,
.tag-pill:hover {
  background: #8b5cf6;
  color: #fff;
}

.badge {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
}

.badge--platform {
  background: rgba(139, 92, 246, 0.2);
  color: #8b5cf6;
}

.badge--hd {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

.badge--new {
  background: rgba(249, 115, 22, 0.2);
  color: #f97316;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}

.tag-cloud__tag {
  padding: 0.375rem 1rem;
  background: #141419;
  border: 1px solid #27272a;
  border-radius: 100px;
  color: #a1a1aa;
  font-size: 0.8125rem;
  text-decoration: none;
  transition: all 150ms ease;
}

.tag-cloud__tag:hover {
  background: #8b5cf6;
  border-color: #8b5cf6;
  color: #fff;
}

.model-profile {
  max-width: 960px;
  margin: 0 auto;
  padding: 1.5rem 1rem;
}

.model-profile__embed {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: #141419;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.model-profile__embed iframe,
.model-profile__embed > div {
  width: 100%;
  height: 100%;
  border: none;
}


.lj-hero {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #141419;
}

.lj-hero__link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.lj-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.lj-hero__link:hover .lj-hero__img {
  transform: scale(1.03);
}

.lj-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 100%);
  transition: background 200ms ease;
}

.lj-hero__link:hover .lj-hero__overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
}

.lj-hero__play {
  margin-bottom: 1rem;
  transition: transform 200ms ease;
}

.lj-hero__link:hover .lj-hero__play {
  transform: scale(1.1);
}

.lj-hero__text {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.lj-hero__sub {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  margin-top: 0.25rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.model-profile__offline {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: #141419;
  text-align: center;
  padding: 3rem;
  position: relative;
  min-height: 320px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.model-profile__offline img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(14px);
  transform: scale(1.08);
  opacity: 0.4;
}

.offline-badge {
  margin-top: 1rem;
  color: #a1a1aa;
  font-size: 1.125rem;
  position: relative;
  z-index: 1;
  background: rgba(10, 10, 11, 0.72);
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.model-profile__info {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}

.model-profile__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.model-profile__header h1 {
  font-size: 1.75rem;
  color: #e4e4e7;
  margin: 0;
}

.status-indicator {
  font-size: 0.875rem;
}

.status-indicator--online {
  color: #22c55e;
}

.status-indicator--offline {
  color: #71717a;
}

.model-profile__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  color: var(--text-secondary);
}

.model-profile__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.model-profile__tags .tag-pill {
  padding: 0.375rem 1rem;
  background: #27272a;
  border-radius: 100px;
  color: #a1a1aa;
  font-size: 0.8125rem;
  text-decoration: none;
  transition: all 150ms ease;
}

.model-profile__tags .tag-pill:hover {
  background: #8b5cf6;
  color: #fff;
}

.model-profile__bio {
  margin-bottom: 1.25rem;
}

.model-profile__bio h3 {
  color: #e4e4e7;
  margin-bottom: 0.5rem;
}

.model-profile__bio p,
.model-profile p {
  color: #a1a1aa;
  line-height: 1.7;
}

.model-profile__howto {
  background: #141419;
  border: 1px solid #27272a;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.model-profile__howto h3 {
  color: #e4e4e7;
  margin-bottom: 0.75rem;
}

.model-profile__howto p {
  color: #a1a1aa;
  line-height: 1.7;
  margin: 0;
}

.btn,
.btn--primary {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: #8b5cf6;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 150ms ease, transform 150ms ease;
  margin-top: 1rem;
  border: none;
}

.btn:hover,
.btn--primary:hover {
  background: #7c3aed;
  transform: translateY(-1px);
}

.related-models {
  margin-top: 1rem;
}

.category-faq {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.category-faq h2,
.category-faq .section__title {
  color: #e4e4e7;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  text-align: center;
}

.category-faq .faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: none;
  padding: 0;
}

.error-page,
.restricted-page {
  text-align: center;
  padding: 5rem 1rem;
}

.error-page h1 {
  font-size: 4rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.error-page p,
.restricted-box p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 1.125rem;
  line-height: 1.7;
}

.restricted-box {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
}

.restricted-box h1 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.site-footer {
  border-top: 1px solid #1a1a22;
  padding: 2rem 0;
  margin-top: 3rem;
  text-align: center;
  background: rgba(10, 10, 11, 0.92);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem;
}

.site-footer a {
  color: #71717a;
  text-decoration: none;
  margin: 0 0.75rem;
  font-size: 0.8125rem;
  transition: color 150ms ease;
}

.site-footer a:hover {
  color: #a1a1aa;
}

.site-footer__disclaimer {
  color: #52525b;
  font-size: 0.75rem;
  margin-top: 1rem;
}

.site-footer__copy {
  color: #52525b;
  font-size: 0.75rem;
  margin-top: 0.5rem;
}

@media (max-width: 1199px) {
  .model-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .stats-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .site-nav,
  .site-header__nav {
    display: none;
  }

  .site-nav.open,
  .site-header__nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    background: #0a0a0b;
    border: 1px solid #27272a;
    border-radius: 14px;
    padding: 1rem;
    gap: 0.75rem;
    box-shadow: var(--shadow-lg);
  }

  .site-search {
    display: none;
  }

  .site-search.open {
    display: flex;
    position: absolute;
    top: calc(100% + 4.75rem);
    left: 0;
    right: 0;
    margin: 0;
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
  }

  .mobile-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .filter-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.375rem;
  }

  .filter-group__label {
    min-width: auto;
  }

  .filter-pills {
    width: 100%;
  }

  .filter-pill {
    padding: 0.625rem 1.25rem;
    font-size: 0.9375rem;
  }

  .category-faq .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .model-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .model-profile__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }

  .model-profile__meta {
    gap: 0.5rem;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 1.625rem;
  }

  .hero__intro,
  .hero__sub {
    font-size: 0.9375rem;
  }

  .stats-bar {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .stats-card {
    min-height: auto;
    padding: 1.125rem;
  }

  .stats-card__headline strong {
    font-size: 1.45rem;
  }

  .page-title,
  .category-hero h1,
  .category-hero .page-title {
    font-size: 1.625rem;
  }

  .model-profile__offline {
    min-height: 220px;
    padding: 2rem 1rem;
  }
}

/* Fix DMCA button legibility */
.btn--primary,
a.btn--primary {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: #8b5cf6;
  color: #fff !important;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 150ms ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn--primary:hover,
a.btn--primary:hover {
  background: #7c3aed;
  color: #fff !important;
}


/* Guide pages */
.guide-hero {
  text-align: center;
  padding: 3rem 1rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.guide-hero h1 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #e4e4e7;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.guide-hero__date {
  color: #71717a;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.guide-hero__intro {
  color: #a1a1aa;
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* Table of contents */
.guide-toc {
  max-width: 700px;
  margin: 0 auto 2rem;
  padding: 1.5rem;
  background: #141419;
  border: 1px solid #27272a;
  border-radius: 12px;
}

.guide-toc h2 {
  font-size: 1rem;
  color: #a1a1aa;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.guide-toc ol {
  list-style: decimal;
  padding-left: 1.25rem;
}

.guide-toc li {
  margin-bottom: 0.5rem;
}

.guide-toc a {
  color: #8b5cf6;
  text-decoration: none;
  font-size: 0.9375rem;
}

.guide-toc a:hover {
  text-decoration: underline;
}

/* Guide content sections */
.guide-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.guide-section {
  margin-bottom: 3rem;
}

.guide-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e4e4e7;
  margin-bottom: 1rem;
  padding-top: 1rem;
}

.guide-section p {
  color: #a1a1aa;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.guide-section ul, .guide-section ol {
  color: #a1a1aa;
  line-height: 1.8;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

/* Comparison table */
.comparison-table-wrapper {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: 12px;
  border: 1px solid #27272a;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #141419;
}

.comparison-table th {
  background: #1a1a22;
  color: #e4e4e7;
  padding: 1rem;
  text-align: center;
  font-weight: 600;
  border-bottom: 1px solid #27272a;
}

.comparison-table th:first-child {
  text-align: left;
}

.comparison-table td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid #1a1a22;
  text-align: center;
  color: #a1a1aa;
}

.comparison-table td:first-child {
  text-align: left;
  color: #e4e4e7;
  font-weight: 500;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

/* Platform cards */
.platform-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.platform-card {
  background: #141419;
  border: 1px solid #27272a;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.platform-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.platform-card__header h3 {
  color: #e4e4e7;
  font-size: 1.25rem;
  font-weight: 700;
}

.platform-card__badge {
  background: rgba(139, 92, 246, 0.2);
  color: #8b5cf6;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}

.platform-card__rating {
  margin-bottom: 1rem;
}

.platform-card__stars {
  color: #f59e0b;
  font-size: 1.125rem;
  margin-right: 0.5rem;
}

.platform-card__score {
  color: #71717a;
  font-size: 0.875rem;
}

.platform-card__pros h4,
.platform-card__cons h4 {
  color: #a1a1aa;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.platform-card__pros ul,
.platform-card__cons ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}

.platform-card__pros li,
.platform-card__cons li {
  color: #a1a1aa;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 0.25rem;
}

.platform-card__cta {
  margin-top: auto;
  text-align: center;
}

/* Guide CTA banner */
.guide-cta {
  text-align: center;
  padding: 3rem 1.5rem;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(99, 102, 241, 0.05));
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 16px;
  margin: 2rem 0;
}

.guide-cta h3 {
  color: #e4e4e7;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.guide-cta p {
  color: #a1a1aa;
  margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
  .platform-cards {
    grid-template-columns: 1fr;
  }

  .guide-hero h1 {
    font-size: 1.625rem;
  }
}


.load-more-container {
  text-align: center;
  padding: 2rem 0;
}

.btn--secondary {
  display: inline-block;
  padding: 0.75rem 2.5rem;
  background: transparent;
  color: #8b5cf6;
  border: 2px solid #8b5cf6;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 150ms ease;
}

.btn--secondary:hover {
  background: #8b5cf6;
  color: #fff;
}

.btn--secondary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}


.lang-banner {
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  color: #fff;
  text-align: center;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.lang-banner__btn {
  background: rgba(255,255,255,0.2);
  color: #fff;
  padding: 0.25rem 1rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8125rem;
}

.lang-banner__close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  font-size: 1rem;
  padding: 0 0.5rem;
}

.lang-dropdown {
  position: relative;
  margin-left: 0.75rem;
}

.lang-dropdown__trigger {
  background: none;
  border: 1px solid #27272a;
  border-radius: 8px;
  color: #a1a1aa;
  padding: 0.375rem 0.75rem;
  cursor: pointer;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  transition: all 150ms ease;
}

.lang-dropdown__trigger:hover {
  border-color: #8b5cf6;
  color: #e4e4e7;
}

.lang-dropdown__current {
  font-weight: 600;
  font-size: 0.75rem;
}

.lang-dropdown__menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  background: #141419;
  border: 1px solid #27272a;
  border-radius: 8px;
  min-width: 160px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  z-index: 200;
  overflow: hidden;
}

.lang-dropdown.open .lang-dropdown__menu {
  display: block;
}

.lang-dropdown__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  color: #a1a1aa;
  text-decoration: none;
  font-size: 0.875rem;
  transition: background 150ms ease;
}

.lang-dropdown__item:hover {
  background: #1a1a22;
  color: #e4e4e7;
}

.lang-dropdown__item.active {
  color: #8b5cf6;
  font-weight: 600;
}
