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

  :root {
    --pink:    #d1348a;
    --pink2:   #f040a8;
    --pink-dim: rgba(209,52,138,.15);
    --bg:      #0a0a12;
    --bg2:     #0f0f1a;
    --card:    #13131f;
    --border:  #1e1e30;
    --text:    #f0eef8;
    --muted:   #7a7898;
    --white:   #ffffff;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
  }

  /* subtle noise */
  body::after {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: .028;
    pointer-events: none;
    z-index: 9999;
  }

  /* ── AGE GATE ── */
  #age-gate {
    position: fixed; inset: 0;
    background: rgba(5,5,10,.97);
    z-index: 1000;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(6px);
  }
  #age-gate .box {
    background: var(--card);
    border: 1px solid var(--border);
    border-top: 2px solid var(--pink);
    max-width: 440px; width: 92%;
    padding: 48px 40px;
    text-align: center;
  }
  .gate-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: .08em;
    color: var(--white);
    line-height: 1;
  }
  .gate-logo span { color: var(--pink); }
  .gate-tagline {
    font-size: .65rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 4px;
    margin-bottom: 24px;
  }
  .gate-icon { font-size: 2rem; margin-bottom: 16px; }
  #age-gate h2 {
    font-size: 1rem; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    margin-bottom: 10px;
  }
  #age-gate p {
    font-size: .82rem; color: var(--muted);
    line-height: 1.65; margin-bottom: 28px;
  }
  .btn-enter {
    display: block; width: 100%; padding: 15px;
    background: var(--pink); color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: .88rem; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    border: none; cursor: pointer;
    transition: background .2s, box-shadow .2s;
    margin-bottom: 10px;
    box-shadow: 0 4px 24px rgba(209,52,138,.35);
  }
  .btn-enter:hover { background: var(--pink2); box-shadow: 0 6px 32px rgba(209,52,138,.5); }
  .btn-exit {
    display: block; width: 100%; padding: 12px;
    background: transparent; color: var(--muted);
    font-family: 'Outfit', sans-serif;
    font-size: .75rem; letter-spacing: .08em; text-transform: uppercase;
    border: 1px solid var(--border); cursor: pointer;
    text-decoration: none; transition: border-color .2s, color .2s;
  }
  .btn-exit:hover { border-color: #2e2e48; color: var(--text); }

  /* ── MAIN ── */
  #main { display: none; }

  /* ── HEADER ── */
  header {
    position: sticky; top: 0;
    background: rgba(10,10,18,.93);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
    z-index: 100; padding: 0 28px; height: 60px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.7rem; letter-spacing: .08em;
    color: var(--white); line-height: 1;
    text-decoration: none;
    display: flex; align-items: center; gap: 8px;
  }
  .logo-spider {
    width: 28px; height: 28px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--pink); border-radius: 50%;
    flex-shrink: 0;
  }
  .logo-spider svg { width: 16px; height: 16px; color: #fff; }
  .logo span { color: var(--pink); }
  .header-nav { display: flex; gap: 20px; align-items: center; }
  .header-nav a {
    color: var(--muted); text-decoration: none;
    font-size: .78rem; font-weight: 600;
    letter-spacing: .08em; text-transform: uppercase;
    transition: color .2s;
  }
  .header-nav a:hover { color: var(--text); }
  .btn-cta {
    background: var(--pink) !important;
    color: #fff !important;
    padding: 9px 18px !important;
    font-size: .72rem !important;
    font-weight: 700 !important;
    border-radius: 2px;
    transition: background .2s !important;
    white-space: nowrap;
  }
  .btn-cta:hover { background: var(--pink2) !important; }

  /* ── HERO ── */
  .hero {
    position: relative;
    min-height: calc(100vh - 60px);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; padding: 80px 24px;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 90% 60% at 50% -10%, rgba(209,52,138,.2) 0%, transparent 65%),
      radial-gradient(ellipse 40% 40% at 90% 90%, rgba(209,52,138,.07) 0%, transparent 60%),
      var(--bg);
  }

  /* spider web lines - decorative */
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(209,52,138,.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(209,52,138,.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
  }

  .hero-content {
    position: relative; text-align: center; max-width: 720px;
  }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--pink-dim);
    border: 1px solid rgba(209,52,138,.25);
    padding: 6px 16px; margin-bottom: 28px;
    font-size: .68rem; font-weight: 700;
    letter-spacing: .2em; text-transform: uppercase;
    color: var(--pink);
    animation: fadeUp .5s .1s both;
  }
  .live-dot {
    width: 6px; height: 6px;
    background: var(--pink); border-radius: 50%;
    animation: blink 1.2s ease-in-out infinite;
  }

  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4.5rem, 14vw, 9rem);
    letter-spacing: .06em; line-height: .9;
    color: var(--white);
    filter: drop-shadow(0 0 60px rgba(209,52,138,.25));
    animation: fadeUp .6s .2s both;
  }
  .hero-title span { color: var(--pink); }

  .hero-domain {
    font-size: clamp(.6rem, 1.4vw, .72rem);
    letter-spacing: .35em; text-transform: uppercase;
    color: var(--muted); margin-top: 8px;
    animation: fadeUp .5s .3s both;
  }

  .hero-line {
    width: 40px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--pink), transparent);
    margin: 24px auto;
    animation: fadeUp .4s .35s both;
  }

  .hero-tagline {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    font-weight: 300; line-height: 1.55;
    color: var(--text); margin-bottom: 36px;
    animation: fadeUp .6s .4s both;
  }
  .hero-tagline strong { font-weight: 700; color: var(--white); }

  .hero-cta {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--pink); color: #fff;
    text-decoration: none; padding: 16px 40px;
    font-size: .88rem; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    transition: background .2s, transform .2s, box-shadow .2s;
    animation: fadeUp .6s .5s both;
    box-shadow: 0 6px 32px rgba(209,52,138,.4);
    position: relative; overflow: hidden;
  }
  .hero-cta::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.1) 50%, transparent 100%);
    transform: translateX(-100%); transition: transform .45s;
  }
  .hero-cta:hover::before { transform: translateX(100%); }
  .hero-cta:hover {
    background: var(--pink2);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(209,52,138,.55);
  }
  .hero-cta svg { width: 16px; height: 16px; flex-shrink: 0; }

  .hero-note {
    margin-top: 14px; font-size: .7rem;
    color: var(--muted); letter-spacing: .06em;
    animation: fadeUp .5s .6s both;
  }
  .hero-note b { color: #4ade80; }

  /* ── STATS ── */
  .stats {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .stats-inner {
    max-width: 800px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 1px; background: var(--border);
  }
  .stat {
    background: var(--bg2);
    padding: 28px 16px; text-align: center;
  }
  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem; letter-spacing: .04em;
    color: var(--white); line-height: 1;
  }
  .stat-num em { color: var(--pink); font-style: normal; }
  .stat-label {
    font-size: .65rem; font-weight: 600;
    letter-spacing: .18em; text-transform: uppercase;
    color: var(--muted); margin-top: 4px;
  }

  /* ── CATEGORIES ── */
  .categories {
    padding: 80px 24px;
    max-width: 1000px; margin: 0 auto;
  }
  .section-label {
    font-size: .65rem; font-weight: 700;
    letter-spacing: .28em; text-transform: uppercase;
    color: var(--pink); margin-bottom: 10px;
  }
  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: .06em; color: var(--white);
    margin-bottom: 40px;
  }
  .cat-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 3px;
  }
  .cat-card {
    position: relative; aspect-ratio: 3/4;
    overflow: hidden; text-decoration: none;
    display: block;
  }
  .cat-bg {
    position: absolute; inset: 0;
    transition: transform .5s cubic-bezier(.25,.46,.45,.94);
  }
  .cat-card:hover .cat-bg { transform: scale(1.06); }
  .cat-bg {
    background-size: cover !important;
    background-position: center top !important;
  }
  .cat-girls .cat-bg {
    background-image: url('/assets/home-cat-girls.jpg');
    background-size: cover;
    background-position: center top;
  }
  .cat-boys .cat-bg {
    background-image: url('/assets/home-cat-boys.jpg');
    background-size: cover;
    background-position: center top;
  }
  .cat-trans .cat-bg {
    background-image: url('/assets/home-cat-trans.jpg');
    background-size: cover;
    background-position: center top;
  }
  .cat-girls .cat-bg::after {
    content: '';position:absolute;inset:0;
    background: radial-gradient(circle at 55% 25%, rgba(209,52,138,.45) 0%, transparent 60%),
                linear-gradient(to top, rgba(10,10,18,.85) 0%, rgba(10,10,18,.3) 60%, rgba(10,10,18,.1) 100%);
  }
  .cat-boys .cat-bg::after {
    content: '';position:absolute;inset:0;
    background: radial-gradient(circle at 45% 25%, rgba(52,100,209,.4) 0%, transparent 60%),
                linear-gradient(to top, rgba(10,10,18,.85) 0%, rgba(10,10,18,.3) 60%, rgba(10,10,18,.1) 100%);
  }
  .cat-trans .cat-bg::after {
    content: '';position:absolute;inset:0;
    background: radial-gradient(circle at 50% 20%, rgba(160,52,209,.45) 0%, transparent 60%),
                linear-gradient(to top, rgba(10,10,18,.85) 0%, rgba(10,10,18,.3) 60%, rgba(10,10,18,.1) 100%);
  }
  .cat-label {
    position: absolute; top: 24px; left: 20px;
    background: var(--pink-dim);
    border: 1px solid rgba(209,52,138,.2);
    padding: 4px 10px;
    font-size: .6rem; font-weight: 700;
    letter-spacing: .2em; text-transform: uppercase;
    color: var(--pink);
    transition: background .3s;
  }
  .cat-card:hover .cat-label { background: rgba(209,52,138,.28); }
  .cat-info {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 60px 20px 22px;
    background: linear-gradient(to top, rgba(0,0,0,.9) 0%, transparent 100%);
  }
  .cat-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem; letter-spacing: .08em;
    color: var(--white); margin-bottom: 2px;
  }
  .cat-count {
    font-size: .7rem; color: var(--muted); letter-spacing: .08em;
  }
  .cat-arrow {
    position: absolute; bottom: 20px; right: 18px;
    width: 28px; height: 28px;
    border: 1px solid rgba(209,52,138,.4); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transform: translateX(6px);
    transition: opacity .3s, transform .3s;
  }
  .cat-card:hover .cat-arrow { opacity: 1; transform: translateX(0); }
  .cat-arrow svg { width: 12px; height: 12px; color: var(--pink); }

  /* ── PLAYER ── */
  .player-section {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 60px 24px;
  }
  .player-wrap {
    max-width: 800px; margin: 0 auto;
    background: #000; aspect-ratio: 16/9;
    position: relative; overflow: hidden;
  }
  .player-wrap > div {
    position: absolute; inset: 0;
    width: 100% !important; height: 100% !important;
    display: inline-block !important;
  }

  /* ── VIDEOS ── */
  .videos { padding: 80px 24px; max-width: 1100px; margin: 0 auto; }
  .video-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 3px; margin-top: 36px;
  }
  .video-card {
    display: block; text-decoration: none;
    background: var(--card); overflow: hidden;
    transition: transform .2s;
  }
  .video-card:hover { transform: scale(1.025); z-index: 1; position: relative; }
  .vthumb {
    position: relative; aspect-ratio: 16/10;
    overflow: hidden; background: #0d0d1a;
  }
  .vthumb img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .4s; filter: brightness(.8);
  }
  .video-card:hover .vthumb img { transform: scale(1.08); filter: brightness(1); }
  .voverlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 55%);
    opacity: 0; transition: opacity .25s;
    display: flex; align-items: center; justify-content: center;
  }
  .video-card:hover .voverlay { opacity: 1; }
  .vplay {
    width: 44px; height: 44px;
    background: var(--pink); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
  }
  .vplay svg { width: 18px; height: 18px; color: #fff; margin-left: 3px; }
  .vdur {
    position: absolute; bottom: 7px; right: 7px;
    background: rgba(0,0,0,.8); color: #fff;
    font-size: .62rem; font-weight: 700; padding: 2px 6px;
    letter-spacing: .04em;
  }
  .vhd {
    position: absolute; top: 7px; left: 7px;
    background: var(--pink); color: #fff;
    font-size: .58rem; font-weight: 700; padding: 2px 5px;
    letter-spacing: .08em;
  }
  .vinfo { padding: 9px 10px 11px; }
  .vtitle {
    font-size: .74rem; font-weight: 600; color: var(--text);
    line-height: 1.4; margin-bottom: 3px;
    display: -webkit-box; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
  }
  .vmodel { font-size: .67rem; color: var(--pink); font-weight: 600; }

  /* ── FEATURES ── */
  .features {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 80px 24px;
  }
  .features-inner { max-width: 940px; margin: 0 auto; }
  .features-grid {
    display: grid; grid-template-columns: repeat(2,1fr);
    gap: 3px; margin-top: 40px;
  }
  .feature {
    background: var(--card); padding: 30px 26px;
    border-left: 2px solid transparent;
    transition: border-color .25s;
  }
  .feature:hover { border-left-color: var(--pink); }
  .ficon { margin-bottom: 14px; width: 36px; height: 36px; color: var(--pink); }
  .ftitle {
    font-size: .92rem; font-weight: 700; color: var(--white);
    margin-bottom: 7px; letter-spacing: .03em;
  }
  .ftext { font-size: .8rem; color: var(--muted); line-height: 1.65; font-weight: 300; }

  /* ── BOTTOM CTA ── */
  .bottom-cta {
    padding: 100px 24px; text-align: center;
    position: relative; overflow: hidden;
  }
  .bottom-cta::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(209,52,138,.1) 0%, transparent 70%);
  }
  .btm-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 7vw, 5rem);
    letter-spacing: .06em; color: var(--white);
    margin-bottom: 8px; position: relative;
  }
  .btm-title span { color: var(--pink); }
  .btm-sub {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 300; color: var(--text);
    margin-bottom: 32px; position: relative;
  }

  /* ── FOOTER ── */
  footer {
    background: #06060f;
    border-top: 1px solid var(--border);
    padding: 32px 24px; text-align: center;
  }
  .footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem; letter-spacing: .1em;
    color: var(--white); margin-bottom: 14px;
  }
  .footer-logo span { color: var(--pink); }
  .footer-links {
    display: flex; justify-content: center;
    gap: 18px; flex-wrap: wrap; margin-bottom: 18px;
  }
  .footer-links a {
    color: var(--muted); text-decoration: none;
    font-size: .7rem; letter-spacing: .12em;
    text-transform: uppercase; transition: color .2s;
  }
  .footer-links a:hover { color: var(--text); }
  .footer-legal {
    font-size: .65rem; color: #3a3a55; line-height: 1.8;
    max-width: 600px; margin: 0 auto;
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: .15; }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .video-grid { grid-template-columns: repeat(3,1fr); }
    .features-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 640px) {
    header { padding: 0 16px; height: 52px; }
    .header-nav { gap: 10px; }
    .header-nav a:not(.btn-cta) { display: none; }
    .hero { padding: 48px 16px 60px; min-height: auto; }
    .stats-inner { grid-template-columns: repeat(3,1fr); }
    .stat { padding: 14px 8px; }
    .stat-num { font-size: 2rem; }
    .cat-grid { grid-template-columns: 1fr; }
    .cat-card { aspect-ratio: 5/2; }
    .video-grid { grid-template-columns: repeat(2,1fr); gap: 2px; }
    .features-grid { grid-template-columns: 1fr; gap: 2px; }
    .hero-cta { width: 100%; justify-content: center; }
    .bottom-cta .hero-cta { width: 100%; justify-content: center; }
    .categories, .videos, .features, .bottom-cta { padding: 48px 16px; }
    .player-section { padding: 40px 16px; }
  }
  @media (max-width: 400px) {
    .video-grid { grid-template-columns: 1fr; }
  }

/* ── SITE HEADER (category pages) ── */
.site-header {
  position: sticky; top: 0;
  background: rgba(10,10,18,.93);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
  z-index: 100; padding: 0 28px; height: 60px;
  display: flex; align-items: center; justify-content: space-between;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: 14px 28px;
  font-size: .72rem; color: var(--muted);
  letter-spacing: .06em;
  border-bottom: 1px solid var(--border);
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--pink); }
.breadcrumb span { margin: 0 6px; }

/* ── CAT HERO ── */
.cat-hero {
  padding: 48px 28px 32px;
  max-width: 1100px; margin: 0 auto;
}
.cat-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: .06em; color: var(--white);
  margin-bottom: 14px;
}
.live-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--pink-dim);
  border: 1px solid rgba(209,52,138,.25);
  padding: 5px 14px;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--pink);
}

/* ── MODEL GRID ── */
.model-grid-section { padding: 0 24px 48px; max-width: 1100px; margin: 0 auto; }
.model-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}
.model-card {
  display: block; text-decoration: none;
  background: var(--card); overflow: hidden;
}
.model-thumb {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  background: #0d0d1a;
}
.model-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s; filter: brightness(.85);
}
.model-card:hover .model-thumb img { transform: scale(1.06); filter: brightness(1); }
.model-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .25s;
}
.model-card:hover .model-overlay { opacity: 1; }
.model-enter-btn {
  background: var(--pink); color: #fff;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 9px 18px;
}
.model-status-dot {
  position: absolute; top: 8px; right: 8px;
  width: 8px; height: 8px;
  background: #4ade80; border-radius: 50%;
  box-shadow: 0 0 6px #4ade80;
}
.model-info { padding: 8px 10px 10px; }
.model-name {
  font-size: .78rem; font-weight: 600; color: var(--text);
  margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.model-rating { font-size: .68rem; color: var(--pink); }
.no-models { color: var(--muted); padding: 24px; grid-column: 1/-1; text-align: center; }

/* ── SUBCAT NAV ── */
.subcat-nav {
  padding: 0 24px 40px; max-width: 1100px; margin: 0 auto;
}
.subcat-label {
  font-size: .65rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 10px;
}
.subcat-links { display: flex; gap: 8px; flex-wrap: wrap; }
.subcat-links a {
  background: var(--card); color: var(--muted);
  border: 1px solid var(--border);
  padding: 7px 16px;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none;
  transition: border-color .2s, color .2s;
}
.subcat-links a:hover { border-color: var(--pink); color: var(--text); }
.subcat-links a.active {
  background: var(--pink); border-color: var(--pink);
  color: #fff; cursor: default;
  pointer-events: none;
}

/* ── EDITORIAL ── */
.editorial {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 24px;
}
.editorial-inner {
  max-width: 720px; margin: 0 auto;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem; color: #c8b8d4;
  line-height: 1.9; font-weight: 400;
}
.editorial-inner p { margin-bottom: 1.5em; }
.editorial-inner p:last-of-type { margin-bottom: 0; }
.editorial-blog-link {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: .88rem;
}
.editorial-blog-link a { color: var(--pink); text-decoration: none; font-weight: 600; }
.editorial-blog-link a:hover { text-decoration: underline; }

/* ── FAQ ── */
.faq { padding: 48px 24px; max-width: 760px; margin: 0 auto; }
.faq h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; letter-spacing: .06em;
  color: var(--white); margin-bottom: 24px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.faq-item summary {
  font-size: .86rem; font-weight: 600; color: var(--text);
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::after { content: '+'; color: var(--pink); font-size: 1.2rem; }
.faq-item[open] summary::after { content: '-'; }
.faq-item p { font-size: .93rem; color: var(--muted); line-height: 1.8; margin-top: 12px; }

/* ── CAT CTA ── */
.cat-cta {
  padding: 64px 24px; text-align: center;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.cta-btn {
  display: inline-block;
  background: var(--pink); color: #fff;
  text-decoration: none; padding: 16px 40px;
  font-size: .88rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  box-shadow: 0 6px 32px rgba(209,52,138,.4);
  transition: background .2s, transform .2s;
}
.cta-btn:hover { background: var(--pink2); transform: translateY(-2px); }
.cta-note { font-size: .72rem; color: var(--muted); margin-top: 12px; }

/* ── SITE FOOTER ── */
.site-footer {
  background: #06060f;
  border-top: 1px solid var(--border);
  padding: 32px 24px; text-align: center;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem; letter-spacing: .1em;
  color: var(--white); margin-bottom: 14px;
}
.footer-logo span { color: var(--pink); }
.footer-links {
  display: flex; justify-content: center;
  gap: 18px; flex-wrap: wrap; margin-bottom: 18px;
}
.footer-links a {
  color: var(--muted); text-decoration: none;
  font-size: .7rem; letter-spacing: .12em;
  text-transform: uppercase; transition: color .2s;
}
.footer-links a:hover { color: var(--text); }
.lang-switch {
  color: var(--pink) !important;
  border: 1px solid rgba(209,52,138,.3);
  padding: 3px 10px;
}
.footer-legal {
  font-size: .65rem; color: #3a3a55; line-height: 1.8;
  max-width: 600px; margin: 0 auto;
}

/* ── RESPONSIVE (category) ── */
@media (max-width: 900px) {
  .model-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .cat-hero { padding: 32px 16px 20px; }
  .model-grid-section, .subcat-nav, .editorial, .faq, .cat-cta { padding-left: 16px; padding-right: 16px; }
  .model-grid { grid-template-columns: repeat(2, 1fr); }
  .site-header { padding: 0 16px; }
  .header-nav a:not(.btn-cta) { display: none; }
}

/* ── HAMBURGER + MOBILE SLIDE MENU ─────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: background .2s;
}
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  z-index: 200;
}
.mobile-overlay.open { display: block; }
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 260px;
  height: 100%;
  background: #0f0f0f;
  border-left: 1px solid rgba(255,255,255,.08);
  z-index: 300;
  display: flex;
  flex-direction: column;
  padding: 64px 24px 32px;
  gap: 4px;
  transform: translateX(100%);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .15s;
}
.mobile-menu a:hover { color: #fff; }
.mobile-menu-cta {
  margin-top: 20px !important;
  background: #e31c5f !important;
  color: #fff !important;
  text-align: center;
  padding: 13px 0 !important;
  border-radius: 6px;
  border: none !important;
  font-weight: 700;
  font-size: 1rem;
}
.mobile-menu-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  color: #aaa;
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
}
.mobile-menu-close:hover { color: #fff; }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .header-nav { display: none; }
}

/* ── LEGAL PAGES ────────────────────────────────────────────────────────────── */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  color: #ccc;
  line-height: 1.75;
  font-size: .97rem;
}
.legal-page h1 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 32px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: .04em;
}
.legal-page h2 {
  font-size: 1.1rem;
  color: #fff;
  margin: 32px 0 8px;
  font-weight: 700;
}
.legal-page p { margin-bottom: 14px; }
.legal-page a { color: #e31c5f; }

.legal-crosslink {
  margin-top: 36px;
  padding: 18px 24px;
  background: rgba(227,28,95,.08);
  border: 1px solid rgba(227,28,95,.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.legal-crosslink span {
  color: #b0a0b8;
  font-size: .9rem;
}
.legal-crosslink a {
  white-space: nowrap;
  font-weight: 600;
  font-size: .9rem;
  color: #e31c5f;
  text-decoration: none;
}
.legal-crosslink a:hover { text-decoration: underline; }
