:root {
  --bg: #070b16;
  --bg-2: #10162a;
  --surface: rgba(17, 24, 43, 0.86);
  --surface-2: rgba(12, 18, 35, 0.92);
  --line: rgba(148, 163, 184, 0.26);
  --ink: #eef4ff;
  --ink-soft: #aebcdb;
  --brand: #ff3366;
  --brand-2: #f6a15a;
  --brand-3: #8b5cf6;
  --radius: 18px;
  --shadow: 0 20px 38px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  line-height: 1.62;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 51, 102, 0.2), transparent 30%),
    radial-gradient(circle at 84% 14%, rgba(246, 161, 90, 0.16), transparent 33%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -50px;
  z-index: 150;
  background: #fff;
  color: #111827;
  border-radius: 10px;
  padding: 0.45rem 0.7rem;
  text-decoration: none;
  font-weight: 700;
}

.skip-link:focus {
  top: 1rem;
}

.age-gate-open {
  overflow: hidden;
}

.bg-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 0.6px, transparent 0.6px);
  background-size: 4px 4px;
  opacity: 0.45;
  z-index: -1;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(2, 6, 16, 0.86);
  backdrop-filter: blur(9px);
  pointer-events: auto;
}

.age-gate[hidden] {
  display: none !important;
}

.age-gate.is-hidden {
  display: none !important;
}

.age-gate-card {
  width: min(560px, 96vw);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(12, 18, 35, 0.98), rgba(15, 23, 42, 0.98));
  box-shadow: var(--shadow);
  padding: 1.35rem;
  position: relative;
  z-index: 1;
  pointer-events: auto;
}

.age-kicker {
  margin: 0;
  color: #f8c089;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  font-size: 0.78rem;
}

.age-gate-card h2 {
  margin-top: 0.55rem;
}

.age-gate-card p {
  margin: 0.7rem 0 0;
  color: var(--ink-soft);
}

.age-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.age-ghost {
  color: var(--ink);
  background: rgba(19, 27, 49, 0.75);
}

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 12, 24, 0.82);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.86rem 0;
}

.brand {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  margin: 0;
}

.desktop-nav {
  display: flex;
  gap: 1rem;
}

.desktop-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.94rem;
}

.desktop-nav a:hover {
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  border: 0;
  font-weight: 800;
  padding: 0.84rem 1.28rem;
  color: #fff;
  background: linear-gradient(102deg, var(--brand), var(--brand-2));
  box-shadow: 0 10px 22px rgba(255, 51, 102, 0.3);
  transition: transform 0.18s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(255, 51, 102, 0.34);
}

.btn-small {
  font-size: 0.86rem;
  padding: 0.62rem 0.98rem;
}

.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--line);
  color: var(--ink);
  box-shadow: none;
}

.eyebrow {
  margin: 0 0 0.8rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  color: #fca5a5;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1,
h2 {
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.3rem, 5.4vw, 4.6rem);
  line-height: 1.02;
}

h2 {
  font-size: clamp(1.72rem, 3.4vw, 2.7rem);
}

h3 {
  font-size: 1.2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
  align-items: stretch;
  position: relative;
}

.hero-grid::before {
  content: '';
  position: absolute;
  inset: -100px;
  background: url('/assets/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.15;
  filter: blur(30px) saturate(1.5);
  z-index: -1;
  border-radius: 50%;
}

.hero-copy p {
  color: var(--ink-soft);
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.hero-badges {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
}

.hero-badges li {
  font-size: 0.82rem;
  color: #b7c8ec;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.33rem 0.72rem;
  background: rgba(18, 28, 52, 0.55);
}

.hero-visual {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(20, 30, 56, 0.92), rgba(12, 18, 35, 0.88));
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.live-photo {
  background: linear-gradient(140deg, rgba(18, 28, 54, 0.86), rgba(10, 16, 32, 0.96));
  transition: filter 0.24s ease, transform 0.24s ease;
}

.live-photo.is-live-photo {
  filter: saturate(1.06) contrast(1.03);
}

[data-live-photo-status] {
  color: #f3d2ac;
}

.hero-visual-info {
  padding: 1rem;
  border-top: 1px solid var(--line);
}

.hero-visual-info p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.hero-visual-info p + p {
  margin-top: 0.38rem;
}

.trust-strip {
  padding-top: 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.trust-grid article {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  padding: 0.9rem;
}

.trust-grid h3 {
  font-size: 1.8rem;
  color: #ffd1a7;
}

.trust-grid p {
  margin: 0.2rem 0 0;
  color: var(--ink-soft);
}

.section-head {
  margin-bottom: 1.25rem;
}

.section-head p {
  color: var(--ink-soft);
  max-width: 70ch;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
}

.filter-btn {
  border: 1px solid var(--line);
  background: rgba(13, 20, 38, 0.84);
  color: var(--ink-soft);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
}

.filter-btn.is-active,
.filter-btn:hover {
  color: #fff;
  border-color: rgba(252, 165, 165, 0.7);
  background: rgba(255, 51, 102, 0.2);
}

.deal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.deal-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 0.85rem;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.deal-card:hover {
  transform: translateY(-4px);
  border-color: rgba(252, 165, 165, 0.48);
  box-shadow: 0 22px 38px rgba(3, 7, 18, 0.65), 0 0 0 1px rgba(255, 42, 109, 0.25) inset;
}

.deal-card.is-hidden {
  display: none;
}

.deal-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(173, 192, 255, 0.22);
}

.deal-card:hover .deal-image {
  transform: scale(1.05);
}

.deal-logo {
  object-fit: cover;
  background: transparent;
  padding: 0;
}
.deal-fit {
  margin: 0;
  color: #d8e4ff;
  font-weight: 700;
}

.deal-card ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--ink-soft);
  display: grid;
  gap: 0.28rem;
  font-size: 0.92rem;
}

.deal-card .btn {
  margin-top: auto;
  width: fit-content;
}

.finder-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  padding: 1rem;
  margin-bottom: 0.8rem;
}

.finder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.finder-grid label {
  display: grid;
  gap: 0.35rem;
}

.finder-grid span {
  color: #f3d2ac;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.finder-grid select {
  width: 100%;
  background: rgba(9, 15, 30, 0.9);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.62rem;
}

.finder-actions {
  margin-top: 0.8rem;
}

.finder-result {
  margin-top: 0.75rem;
  border: 1px dashed rgba(255, 159, 67, 0.5);
  border-radius: 12px;
  background: rgba(10, 16, 34, 0.75);
  padding: 0.75rem;
  color: var(--ink-soft);
}

.finder-result strong {
  color: #fff;
}

.table-wrap {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: auto;
  background: var(--surface);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.compare-table th,
.compare-table td {
  padding: 0.75rem;
  border-bottom: 1px solid rgba(167, 189, 255, 0.12);
  text-align: left;
}

.compare-table th {
  color: #f3d2ac;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

.model-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.model-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.model-card .meta {
  padding: 0.6rem;
}

.model-card h3 {
  font-size: 0.95rem;
  margin: 0 0 0.2rem;
}

.model-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.model-card .btn {
  margin: 0.6rem;
}

.section-featured {
  background: linear-gradient(180deg, rgba(8, 13, 26, 0.98), rgba(11, 18, 35, 0.98));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.featured-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: start;
}

.featured-intro {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  padding: 0.85rem;
}

.featured-widgets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  align-items: start;
}

.small-note {
  font-size: 0.86rem;
  color: var(--ink-soft);
}

.featured-art {
  display: block;
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.widget-box {
  min-width: 0;
  width: 100%;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-2);
  display: grid;
  place-items: center;
}

.widget-box iframe {
  display: block;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.tip-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  padding: 0.9rem;
}

.tip-card h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.tip-card p {
  color: var(--ink-soft);
  margin: 0;
}

.tip-card a,
.footer-links a,
.small-note a {
  color: #fda4af;
  text-decoration: none;
}

.tip-card a:hover,
.footer-links a:hover,
.small-note a:hover {
  color: #fecdd3;
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface);
}

.faq-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  padding: 0.96rem;
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.27s ease;
}

.faq-content p {
  margin: 0;
  color: var(--ink-soft);
  padding: 0 0.96rem 0.96rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(8, 12, 24, 0.86);
  padding: 1rem 0;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer-wrap p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.footer-links {
  display: flex;
  gap: 0.8rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.28s;
}

/* Articles hub */
.articles-hero {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(19, 28, 51, 0.88), rgba(12, 19, 36, 0.92));
  overflow: hidden;
  box-shadow: var(--shadow);
}

.articles-hero img {
  width: 100%;
  display: block;
  aspect-ratio: 21 / 7;
  object-fit: cover;
}

.articles-hero-copy {
  padding: 1rem;
}

.article-controls {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(11, 18, 36, 0.82);
  padding: 0.8rem;
}

.article-search {
  width: 100%;
  background: rgba(9, 15, 30, 0.9);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.72rem;
  font: inherit;
}

.guide-filter-row {
  display: flex;
  gap: 0.45rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 0.2rem;
  scrollbar-width: thin;
}

.guide-filter-btn {
  border: 1px solid var(--line);
  background: rgba(13, 20, 38, 0.84);
  color: var(--ink-soft);
  border-radius: 999px;
  padding: 0.42rem 0.76rem;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
}

.guide-filter-btn.is-active,
.guide-filter-btn:hover {
  color: #fff;
  border-color: rgba(252, 165, 165, 0.7);
  background: rgba(255, 51, 102, 0.2);
}

.article-results-summary {
  margin: 0;
  color: #f3d2ac;
  font-size: 0.88rem;
}

.article-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.article-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.article-card:hover {
  transform: translateY(-3px);
  border-color: rgba(252, 165, 165, 0.5);
  box-shadow: 0 16px 30px rgba(3, 7, 18, 0.55);
}

.article-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-card-body {
  padding: 0.85rem;
  display: grid;
  gap: 0.45rem;
}

.article-card h3 {
  font-size: 1.02rem;
  line-height: 1.18;
}

.article-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card .meta {
  color: #f3d2ac;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.article-card a {
  text-decoration: none;
  color: #fda4af;
  font-weight: 700;
}

.article-card a:hover {
  color: #fecdd3;
}

.article-empty {
  margin-top: 1rem;
  border: 1px dashed var(--line);
  border-radius: 12px;
  padding: 0.8rem;
  color: var(--ink-soft);
  display: none;
}

.article-actions {
  margin-top: 0.9rem;
  display: flex;
  justify-content: center;
}

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

  .hero-grid,
  .featured-layout,
  .featured-widgets,
  .finder-grid,
  .models-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .widget-box {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 3.8rem 0;
  }

  .deal-grid,
  .tips-grid {
    grid-template-columns: 1fr;
  }

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

  .btn,
  .btn-small,
  .btn-ghost {
    width: 100%;
  }

  .age-actions .btn {
    width: 100%;
  }
}

/* ----- INJECTED SEO + UI MODERNIZATION ----- */
.hero-h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-weight: 800;
  line-height: 1.05;
  background: linear-gradient(135deg, #fff 0%, #ff3366 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.hero-subline {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

.stat-number {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  color: var(--brand);
}

.btn {
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
}

.btn:hover, .btn:focus {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 20px -10px var(--brand);
}

/* Better responsive card styling */
.deal-card {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  transition: all 0.3s ease;
  overflow: hidden;
}

.deal-card:hover {
  border-color: var(--brand);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 51, 102, 0.15);
}

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