﻿:root {
      --bg: #0d0a0f;
      --bg-card: #16121c;
      --bg-card-hover: #1f1826;
      --rose: #ff4d8d;
      --rose-light: #ff7eb3;
      --rose-dark: #c9185b;
      --purple: #a855f7;
      --purple-light: #c084fc;
      --coral: #ff6b4a;
      --amber: #fbbf24;
      --teal: #2dd4bf;
      --text: #f5f0f4;
      --text-muted: #9b8fa8;
      --border: rgba(255, 77, 141, 0.12);
      --glow: rgba(255, 77, 141, 0.35);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
    }

    .bg-mesh {
      position: fixed;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 50% at 20% -10%, rgba(255,77,141,0.12), transparent),
        radial-gradient(ellipse 60% 40% at 90% 100%, rgba(168,85,247,0.1), transparent);
      pointer-events: none;
      z-index: 0;
    }

    .bg-dots {
      position: fixed;
      inset: 0;
      background-image: radial-gradient(rgba(255,77,141,0.08) 1px, transparent 1px);
      background-size: 32px 32px;
      pointer-events: none;
      z-index: 0;
    }

    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 1rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(13, 10, 15, 0.88);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      transition: padding 0.3s;
    }

    .logo {
      font-family: 'Syne', sans-serif;
      font-size: 1.5rem;
      font-weight: 800;
      background: linear-gradient(135deg, var(--rose-light), var(--purple));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .logo-link {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      background: none;
      -webkit-text-fill-color: unset;
      -webkit-background-clip: unset;
      background-clip: unset;
    }

    .logo-mark {
      width: 32px;
      height: 32px;
      border-radius: 9px;
      flex-shrink: 0;
      box-shadow: 0 0 0 1px rgba(255, 126, 179, 0.25), 0 4px 14px rgba(168, 85, 247, 0.25);
    }

    .logo-text {
      font-family: 'Syne', sans-serif;
      font-size: 1.45rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      background: linear-gradient(135deg, var(--rose-light), var(--purple));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .footer-brand .logo-mark {
      width: 28px;
      height: 28px;
    }

    .footer-brand .logo-text {
      font-size: 1.25rem;
    }

    nav { display: flex; gap: 1.75rem; align-items: center; }

    nav a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.88rem;
      font-weight: 500;
      transition: color 0.2s;
    }

    nav a:hover { color: var(--rose-light); }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.8rem 1.6rem;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.9rem;
      text-decoration: none;
      cursor: pointer;
      border: none;
      transition: all 0.3s;
      text-align: center;
      max-width: 100%;
    }

    .hide-mobile { display: inline; }
    .show-mobile { display: none; }

    .btn-primary {
      background: linear-gradient(135deg, var(--rose), var(--rose-dark));
      color: #fff;
      box-shadow: 0 4px 24px var(--glow);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 32px var(--glow);
    }

    .btn-outline {
      background: transparent;
      color: var(--rose-light);
      border: 1px solid var(--border);
    }

    .btn-outline:hover {
      background: rgba(255, 77, 141, 0.08);
      border-color: var(--rose);
    }

    .btn-sm { padding: 0.6rem 1.2rem; font-size: 0.85rem; }

    .btn-sub {
      display: block;
      font-size: 0.72rem;
      font-weight: 500;
      opacity: 0.85;
      margin-top: 0.15rem;
    }

    .btn-lg {
      padding: 0.95rem 2rem;
      font-size: 1rem;
      flex-direction: column;
      gap: 0.1rem;
      line-height: 1.3;
    }

    .ref-link { position: relative; }

    /* Hero */
    .hero {
      position: relative;
      z-index: 1;
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 3rem;
      padding: 8rem 2rem 4rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.4rem 1rem;
      background: rgba(255, 77, 141, 0.1);
      border: 1px solid var(--border);
      border-radius: 50px;
      font-size: 0.78rem;
      color: var(--rose-light);
      margin-bottom: 1.25rem;
      animation: fadeUp 0.7s ease;
    }

    .badge::before {
      content: '';
      width: 6px; height: 6px;
      background: var(--teal);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.35; }
    }

    .hero h1 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(2.4rem, 5.5vw, 4rem);
      font-weight: 800;
      line-height: 1.08;
      margin-bottom: 1.25rem;
      animation: fadeUp 0.7s ease 0.1s both;
    }

    .hero h1 .grad {
      background: linear-gradient(135deg, var(--rose-light), var(--purple-light));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-desc {
      font-size: 1.1rem;
      color: var(--text-muted);
      max-width: 480px;
      margin-bottom: 1rem;
      animation: fadeUp 0.7s ease 0.2s both;
    }

    .hero-offer {
      display: inline-flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 1.5rem;
      animation: fadeUp 0.7s ease 0.25s both;
    }

    .offer-pill {
      padding: 0.35rem 0.85rem;
      border-radius: 50px;
      font-size: 0.78rem;
      font-weight: 700;
      background: rgba(45, 212, 191, 0.12);
      color: var(--teal);
      border: 1px solid rgba(45, 212, 191, 0.25);
    }

    .offer-pill.urgent {
      background: rgba(255, 107, 74, 0.12);
      color: var(--coral);
      border-color: rgba(255, 107, 74, 0.3);
      animation: urgentPulse 2s infinite;
    }

    @keyframes urgentPulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.7; }
    }

    .hero-cta-note {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-top: 0.75rem;
      animation: fadeUp 0.7s ease 0.35s both;
    }

    .hero-cta-note span { color: var(--rose-light); font-weight: 600; }

    .hero-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      animation: fadeUp 0.7s ease 0.3s both;
    }

    .hero-stats {
      display: flex;
      gap: 2.5rem;
      margin-top: 2.5rem;
      animation: fadeUp 0.7s ease 0.4s both;
    }

    .stat-num {
      font-family: 'Syne', sans-serif;
      font-size: 1.75rem;
      font-weight: 800;
      color: var(--rose-light);
      line-height: 1;
    }

    .stat-label {
      font-size: 0.78rem;
      color: var(--text-muted);
      margin-top: 0.2rem;
    }

    .hero-visual {
      position: relative;
      animation: fadeUp 0.7s ease 0.2s both;
    }

    .match-stack {
      position: relative;
      width: 100%;
      max-width: 400px;
      margin: 0 auto;
      height: 420px;
    }

    .match-card {
      position: absolute;
      width: 260px;
      padding: 1.5rem;
      border-radius: 24px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      box-shadow: 0 24px 60px rgba(0,0,0,0.4);
      animation: float 7s ease-in-out infinite;
    }

    .match-card:nth-child(1) {
      left: 0; top: 40px;
      transform: rotate(-8deg);
      animation-delay: 0s;
    }

    .match-card:nth-child(2) {
      left: 80px; top: 0;
      z-index: 2;
      border-color: rgba(255,77,141,0.35);
      box-shadow: 0 24px 60px var(--glow);
      animation-delay: -2.3s;
    }

    .match-card:nth-child(3) {
      left: 120px; top: 60px;
      transform: rotate(6deg);
      animation-delay: -4.6s;
    }

    .match-avatar {
      width: 56px; height: 56px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 0.75rem;
    }

    .match-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.2rem; }
    .match-card p { font-size: 0.82rem; color: var(--text-muted); }
    .match-tag {
      display: inline-block;
      margin-top: 0.6rem;
      padding: 0.2rem 0.6rem;
      border-radius: 50px;
      font-size: 0.72rem;
      font-weight: 600;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
      50% { transform: translateY(-12px) rotate(var(--r, 0deg)); }
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to { opacity: 1; transform: translateY(0); }
    }

    section {
      position: relative;
      z-index: 1;
      padding: 5rem 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .section-header h2 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(1.8rem, 4vw, 2.75rem);
      font-weight: 800;
      margin-bottom: 0.6rem;
    }

    .section-header p {
      color: var(--text-muted);
      max-width: 540px;
      margin: 0 auto;
    }

    /* Quick picks */
    .quick-picks {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1rem;
      margin-bottom: 1rem;
    }

    .quick-pick {
      text-align: center;
      padding: 1.25rem 0.75rem;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 16px;
      text-decoration: none;
      color: var(--text);
      transition: all 0.3s;
    }

    .quick-pick:hover {
      border-color: var(--rose);
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(255,77,141,0.15);
    }

    .quick-pick .icon { font-size: 1.75rem; margin-bottom: 0.5rem; }
    .quick-pick .name { font-size: 0.82rem; font-weight: 600; color: var(--rose-light); }
    .quick-pick .qp-count { font-size: 0.68rem; color: var(--teal); margin-top: 0.25rem; font-weight: 600; }

    /* Activity feed */
    .activity-feed {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 1rem 1.25rem;
      margin-bottom: 2.5rem;
      overflow: hidden;
    }

    .activity-feed h3 {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--text-muted);
      margin-bottom: 0.75rem;
    }

    .activity-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.5rem 0;
      font-size: 0.85rem;
      color: var(--text-muted);
      border-bottom: 1px solid rgba(255,77,141,0.06);
      animation: slideIn 0.5s ease;
    }

    .activity-item:last-child { border-bottom: none; }

    .activity-dot {
      width: 8px; height: 8px;
      background: var(--teal);
      border-radius: 50%;
      flex-shrink: 0;
    }

    .activity-item strong { color: var(--text); font-weight: 600; }
    .activity-item em { color: var(--rose-light); font-style: normal; font-weight: 600; }
    .activity-time { margin-left: auto; font-size: 0.72rem; opacity: 0.6; flex-shrink: 0; }

    /* Site cards */
    .sites-list { display: flex; flex-direction: column; gap: 2rem; }

    .site-card {
      display: grid;
      grid-template-columns: 280px 1fr auto;
      gap: 2rem;
      align-items: center;
      padding: 2rem;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 24px;
      transition: all 0.35s;
      position: relative;
      overflow: hidden;
    }

    .site-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 4px; height: 100%;
      background: var(--accent, var(--rose));
      opacity: 0.8;
    }

    .site-card:hover {
      background: var(--bg-card-hover);
      border-color: rgba(255,77,141,0.25);
      transform: translateY(-2px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    }

    .site-card.featured {
      border-color: rgba(255,77,141,0.35);
      box-shadow: 0 0 50px rgba(255,77,141,0.08);
    }

    .site-brand {
      text-align: center;
    }

    .site-logo {
      width: 80px; height: 80px;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      margin: 0 auto 1rem;
      background: linear-gradient(135deg, var(--accent, var(--rose)), var(--accent2, var(--purple)));
      box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    }

    .site-brand h3 {
      font-family: 'Syne', sans-serif;
      font-size: 1.35rem;
      font-weight: 800;
      margin-bottom: 0.35rem;
    }

    .site-rating {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0.35rem;
      font-size: 0.85rem;
    }

    .stars { color: var(--amber); letter-spacing: 1px; }
    .rating-num { color: var(--text-muted); }
    .rating-label {
      display: block;
      width: 100%;
      font-size: 0.68rem;
      color: var(--text-muted);
      opacity: 0.85;
      font-weight: 500;
      letter-spacing: 0.02em;
    }

    .site-body h4 {
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 0.6rem;
      color: var(--rose-light);
    }

    .site-body p {
      color: var(--text-muted);
      font-size: 0.92rem;
      margin-bottom: 1rem;
    }

    .site-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 1rem;
    }

    .tag {
      padding: 0.3rem 0.75rem;
      border-radius: 50px;
      font-size: 0.75rem;
      font-weight: 600;
      background: rgba(255,77,141,0.08);
      color: var(--rose-light);
      border: 1px solid var(--border);
    }

    .site-perks {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.5rem;
    }

    .perk {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.82rem;
      color: var(--text-muted);
    }

    .perk::before {
      content: '✓';
      color: var(--teal);
      font-weight: 700;
      font-size: 0.75rem;
    }

    .site-cta {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
      min-width: 160px;
    }

    .members-count {
      font-size: 0.78rem;
      color: var(--text-muted);
      text-align: center;
    }

    .members-count strong {
      display: block;
      font-family: 'Syne', sans-serif;
      font-size: 1.1rem;
      color: var(--rose-light);
    }

    .site-nearby {
      font-size: 0.82rem;
      color: var(--teal);
      font-weight: 600;
      text-align: center;
    }

    .site-bonus {
      padding: 0.5rem 0.85rem;
      background: rgba(45, 212, 191, 0.08);
      border: 1px solid rgba(45, 212, 191, 0.18);
      border-radius: 10px;
      font-size: 0.76rem;
      font-weight: 500;
      color: var(--text-muted);
      text-align: center;
      margin-bottom: 0.25rem;
      line-height: 1.35;
    }

    .site-urgency {
      font-size: 0.72rem;
      color: var(--coral);
      font-weight: 600;
      text-align: center;
    }

    .editors-choice {
      position: absolute;
      top: 1rem; right: 1rem;
      padding: 0.3rem 0.75rem;
      background: linear-gradient(135deg, var(--rose), var(--purple));
      border-radius: 50px;
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    /* How it works */
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .step-card {
      padding: 2rem;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 20px;
      text-align: center;
      transition: all 0.3s;
    }

    .step-card:hover {
      border-color: rgba(255,77,141,0.3);
      transform: translateY(-4px);
    }

    .step-num {
      width: 48px; height: 48px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--rose), var(--purple));
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1.2rem;
      margin: 0 auto 1.25rem;
    }

    .step-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
    .step-card p { font-size: 0.88rem; color: var(--text-muted); }

    /* Testimonials */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }

    .testimonial {
      padding: 1.75rem;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 20px;
    }

    .testimonial .quote {
      font-size: 0.92rem;
      color: var(--text-muted);
      margin-bottom: 1.25rem;
      font-style: italic;
      line-height: 1.7;
    }

    .testimonial .author {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .author-avatar {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--rose), var(--purple));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
    }

    .author-name { font-weight: 600; font-size: 0.9rem; }
    .author-meta { font-size: 0.72rem; color: var(--text-muted); }
    .author-via { font-size: 0.75rem; color: var(--rose-light); }

    .story-label {
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
      font-size: 0.68rem;
      color: var(--text-muted);
      font-weight: 500;
      margin-top: 0.15rem;
      font-style: italic;
    }

    .testimonial .stars-small {
      color: var(--amber);
      font-size: 0.8rem;
      margin-bottom: 0.75rem;
      letter-spacing: 2px;
    }

    /* CTA banner */
    .cta-banner {
      background: linear-gradient(135deg, rgba(255,77,141,0.18), rgba(168,85,247,0.12));
      border: 1px solid var(--border);
      border-radius: 28px;
      padding: 3.5rem 2rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-banner::after {
      content: '💋';
      position: absolute;
      right: -10px; bottom: -20px;
      font-size: 9rem;
      opacity: 0.06;
    }

    .cta-banner h2 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(1.8rem, 4vw, 2.5rem);
      font-weight: 800;
      margin-bottom: 0.75rem;
    }

    .cta-banner p {
      color: var(--text-muted);
      max-width: 480px;
      margin: 0 auto 2rem;
    }

    .cta-links {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      justify-content: center;
    }

    /* FAQ */
    .faq-list {
      max-width: 700px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .faq-item {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      padding: 1.2rem 1.5rem;
      background: none;
      border: none;
      color: var(--text);
      font-family: inherit;
      font-size: 0.95rem;
      font-weight: 600;
      text-align: left;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: color 0.2s;
    }

    .faq-question:hover { color: var(--rose-light); }
    .faq-question .icon { color: var(--rose); transition: transform 0.3s; }
    .faq-item.open .faq-question .icon { transform: rotate(45deg); }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s;
      padding: 0 1.5rem;
      color: var(--text-muted);
      font-size: 0.9rem;
    }

    .faq-item.open .faq-answer {
      max-height: 220px;
      padding: 0 1.5rem 1.2rem;
    }

    footer {
      position: relative;
      z-index: 1;
      border-top: 1px solid var(--border);
      padding: 3rem 2rem 2rem;
      margin-top: 2rem;
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 3rem;
    }

    .footer-brand p { color: var(--text-muted); font-size: 0.85rem; max-width: 300px; margin-top: 0.75rem; }

    .footer-col h4 {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--rose-light);
      margin-bottom: 1rem;
    }

    .footer-col a {
      display: block;
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.88rem;
      margin-bottom: 0.45rem;
      transition: color 0.2s;
    }

    .footer-col a:hover { color: var(--text); }

    .footer-bottom {
      max-width: 1200px;
      margin: 2rem auto 0;
      padding-top: 2rem;
      border-top: 1px solid var(--border);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-bottom p { color: var(--text-muted); font-size: 0.78rem; }

    .age-badge {
      padding: 0.4rem 0.8rem;
      background: rgba(255,77,141,0.12);
      border: 1px solid rgba(255,77,141,0.3);
      border-radius: 8px;
      font-size: 0.78rem;
      color: var(--rose-light);
      font-weight: 600;
    }

    .reveal {
      opacity: 0;
      transform: translateY(36px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .reveal.visible { opacity: 1; transform: translateY(0); }

    @keyframes slideIn {
      from { opacity: 0; transform: translateX(-12px); }
      to { opacity: 1; transform: translateX(0); }
    }

    /* Sticky CTA */
    .sticky-cta {
      position: fixed;
      bottom: 0; left: 0; right: 0;
      z-index: 100;
      padding: 0.75rem 1rem;
      background: rgba(13, 10, 15, 0.96);
      border-top: 1px solid var(--border);
      backdrop-filter: blur(16px);
      display: none;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      transform: translateY(100%);
      transition: transform 0.35s ease;
    }

    .sticky-cta.show { transform: translateY(0); }

    .sticky-cta-text { font-size: 0.82rem; }
    .sticky-cta-text strong { display: block; color: var(--rose-light); font-size: 0.9rem; }

    .disclaimer {
      font-size: 0.72rem;
      color: var(--text-muted);
      opacity: 0.75;
      margin-top: 0.5rem;
    }

    .activity-feed .disclaimer { margin-top: 0.75rem; margin-bottom: 0; }

    .sites-legal-note {
      margin: 1.5rem auto 0;
      max-width: 720px;
      padding: 0.9rem 1.1rem;
      font-size: 0.78rem;
      line-height: 1.45;
      color: var(--text-muted);
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 12px;
      text-align: center;
    }

    .sites-legal-note strong { color: var(--text); font-weight: 600; }
    .sites-legal-note a { color: var(--rose-light); }

    /* Redirect modal */
    .modal-overlay {
      position: fixed;
      inset: 0;
      z-index: 200;
      background: rgba(0, 0, 0, 0.75);
      backdrop-filter: blur(6px);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.25s, visibility 0.25s;
    }

    .modal-overlay.open { opacity: 1; visibility: visible; }

    .modal {
      width: 100%;
      max-width: 440px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 2rem;
      transform: translateY(20px) scale(0.97);
      transition: transform 0.25s;
      box-shadow: 0 32px 80px rgba(0,0,0,0.5);
    }

    .modal-overlay.open .modal { transform: translateY(0) scale(1); }

    .modal-icon {
      width: 56px; height: 56px;
      border-radius: 16px;
      background: linear-gradient(135deg, var(--rose), var(--purple));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 1.25rem;
    }

    .modal h3 {
      font-family: 'Syne', sans-serif;
      font-size: 1.35rem;
      font-weight: 800;
      margin-bottom: 0.75rem;
    }

    .modal p {
      color: var(--text-muted);
      font-size: 0.92rem;
      margin-bottom: 0.75rem;
      line-height: 1.65;
    }

    .modal-steps {
      background: rgba(255,77,141,0.06);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 1rem 1.15rem;
      margin: 1.25rem 0;
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    .modal-steps li {
      margin-bottom: 0.4rem;
      list-style: none;
      padding-left: 1.4rem;
      position: relative;
    }

    .modal-steps li::before {
      content: '→';
      position: absolute;
      left: 0;
      color: var(--rose-light);
      font-weight: 700;
    }

    .modal-steps li:last-child { margin-bottom: 0; }

    .modal-actions {
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
      margin-top: 1.5rem;
    }

    .modal-close {
      background: none;
      border: none;
      color: var(--text-muted);
      font-family: inherit;
      font-size: 0.85rem;
      cursor: pointer;
      padding: 0.5rem;
      transition: color 0.2s;
    }

    .modal-close:hover { color: var(--text); }

    /* Tablet */
    @media (max-width: 1024px) {
      nav { display: none; }

      .hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
        padding: 6.5rem 1.5rem 3rem;
      }

      .hero-visual { order: -1; }
      .quick-picks { grid-template-columns: repeat(3, 1fr); }
      .steps-grid, .testimonials-grid { grid-template-columns: 1fr; }
      .footer-inner { grid-template-columns: 1fr 1fr; }
    }

    /* Mobile */
    @media (max-width: 768px) {
      .show-mobile { display: inline; }
      .hide-mobile { display: none; }

      header {
        padding: 0.7rem 1rem;
        gap: 0.5rem;
      }

      .logo { font-size: 1.25rem; flex-shrink: 0; }
      .logo-text { font-size: 1.15rem; }
      .logo-mark { width: 28px; height: 28px; }

      header .btn-sm {
        padding: 0.55rem 1rem;
        font-size: 0.8rem;
        flex-shrink: 0;
      }

      .hero {
        padding: 1.5rem 1rem 2.5rem;
        text-align: left;
      }

      .hero h1 {
        font-size: clamp(1.75rem, 8vw, 2.35rem);
        margin-bottom: 1rem;
      }

      .hero-desc {
        font-size: 0.95rem;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
      }

      .hero-offer {
        justify-content: flex-start;
        margin-bottom: 1.25rem;
      }

      .offer-pill { font-size: 0.72rem; }

      .hero-actions {
        flex-direction: column;
        width: 100%;
      }

      .hero-actions .btn {
        width: 100%;
        white-space: normal;
      }

      .btn-lg {
        padding: 0.9rem 1.25rem;
        font-size: 0.92rem;
      }

      .hero-stats {
        justify-content: space-between;
        gap: 0.75rem;
        margin-top: 1.75rem;
        width: 100%;
      }

      .stat-num { font-size: 1.4rem; }
      .stat-label { font-size: 0.7rem; }

      /* Match cards: vertical stack, no overflow */
      .hero-visual { width: 100%; }
      .match-stack {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.65rem;
        max-width: 100%;
      }

      .match-card {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        width: 100%;
        max-width: none;
        transform: none !important;
        animation: none;
        padding: 1rem 1.15rem;
        display: flex;
        align-items: center;
        gap: 0.85rem;
        border-radius: 16px;
      }

      .match-avatar {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        margin-bottom: 0;
        flex-shrink: 0;
      }

      .match-card > div:not(.match-avatar) { flex: 1; min-width: 0; }
      .match-card h4 { font-size: 0.92rem; }
      .match-card p { font-size: 0.78rem; }
      .match-tag { margin-top: 0.35rem; font-size: 0.68rem; }

      section {
        padding: 2.5rem 1rem;
      }

      .section-header {
        margin-bottom: 2rem;
        text-align: left;
      }

      .section-header h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
      }

      .section-header p {
        margin: 0;
        max-width: none;
      }

      /* Horizontal scroll quick picks */
      .quick-picks {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 0.65rem;
        margin: 0 -1rem 1.5rem;
        padding: 0 1rem 0.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
      }

      .quick-picks::-webkit-scrollbar { display: none; }

      .quick-pick {
        flex: 0 0 9.5rem;
        scroll-snap-align: start;
        padding: 1rem 0.65rem;
      }

      .quick-pick .name { font-size: 0.75rem; word-break: break-word; }

      /* Site cards */
      .site-card {
        grid-template-columns: 1fr;
        gap: 1.15rem;
        padding: 1.25rem;
        text-align: left;
      }

      .site-card.featured { padding-top: 2.75rem; }

      .editors-choice {
        top: 0.75rem;
        right: 0.75rem;
        left: 0.75rem;
        text-align: center;
        font-size: 0.65rem;
      }

      .site-brand {
        display: grid;
        grid-template-columns: 56px 1fr;
        grid-template-rows: auto auto;
        column-gap: 1rem;
        row-gap: 0.15rem;
        align-items: center;
        text-align: left;
      }

      .site-logo {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
        margin: 0;
        grid-row: 1 / 3;
        align-self: center;
        border-radius: 14px;
      }

      .site-brand h3 { font-size: 1.15rem; margin-bottom: 0; }
      .site-rating { justify-content: flex-start; }

      .site-body h4 { font-size: 0.98rem; }
      .site-body p { font-size: 0.88rem; }

      .site-tags { justify-content: flex-start; }
      .site-perks { grid-template-columns: 1fr; }

      .perk {
        align-items: flex-start;
        font-size: 0.8rem;
      }

      .site-cta {
        width: 100%;
        min-width: 0;
        align-items: stretch;
        margin-top: 0.25rem;
        padding-top: 1rem;
        border-top: 1px solid var(--border);
      }

      .site-cta .btn {
        width: 100%;
        white-space: normal;
        padding: 0.85rem 1rem;
      }

      .site-bonus, .site-nearby, .site-urgency {
        text-align: left;
        width: 100%;
      }

      .activity-item {
        flex-wrap: wrap;
        font-size: 0.82rem;
        gap: 0.5rem;
      }

      .activity-time {
        margin-left: 0;
        width: 100%;
        padding-left: 1.25rem;
      }

      .cta-banner {
        padding: 2rem 1.25rem;
        border-radius: 20px;
        text-align: left;
      }

      .cta-banner h2 { font-size: 1.5rem; }
      .cta-banner p { margin-left: 0; margin-right: 0; }

      .cta-links {
        flex-direction: column;
        align-items: stretch;
      }

      .cta-links .btn {
        width: 100%;
        white-space: normal;
      }

      .step-card, .testimonial { padding: 1.5rem; }

      .footer-inner {
        grid-template-columns: 1fr;
        gap: 1.75rem;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }

      /* Sticky CTA */
      .sticky-cta {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.6rem;
        padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
      }

      .sticky-cta .btn { width: 100%; }

      body { padding-bottom: calc(7.5rem + env(safe-area-inset-bottom)); }

      /* Modal: bottom sheet */
      .modal-overlay {
        align-items: flex-end;
        padding: 0;
      }

      .modal {
        border-radius: 24px 24px 0 0;
        max-height: 88vh;
        overflow-y: auto;
        padding: 1.5rem 1.25rem calc(1.5rem + env(safe-area-inset-bottom));
      }

      .modal h3 { font-size: 1.2rem; }
      #modal-continue { width: 100%; }
      .modal-actions .btn { width: 100%; white-space: normal; }
    }

    @media (max-width: 380px) {
      .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.85rem;
      }

      .stat-num { font-size: 1.25rem; }
    }

    /* Affiliate notice */
    .affiliate-notice {
      position: relative;
      z-index: 1;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0.55rem 2rem;
      font-size: 0.72rem;
      color: var(--text-muted);
      text-align: center;
      border-bottom: 1px solid rgba(255,77,141,0.06);
    }

    .affiliate-notice a { color: var(--rose-light); }

    /* Age gate */
    .age-gate {
      position: fixed;
      inset: 0;
      z-index: 300;
      background: rgba(0, 0, 0, 0.92);
      backdrop-filter: blur(10px);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
    }

    .age-gate.hidden { display: none; }

    /* Set by early <head> script when localStorage/cookie already verified */
    html.dg-age-ok .age-gate { display: none !important; }
    html.dg-age-ok body.age-locked { overflow: auto; }
    html.dg-consent-ok .cookie-banner { display: none !important; }

    .age-gate-card {
      width: 100%;
      max-width: 440px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 2rem;
      text-align: center;
      box-shadow: 0 32px 80px rgba(0,0,0,0.5);
    }

    .age-gate-card h2 {
      font-family: 'Syne', sans-serif;
      font-size: 1.5rem;
      font-weight: 800;
      margin-bottom: 0.75rem;
    }

    .age-gate-card p {
      color: var(--text-muted);
      font-size: 0.92rem;
      margin-bottom: 1.5rem;
      line-height: 1.65;
    }

    .age-gate-actions {
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
    }

    .age-gate-decline {
      background: none;
      border: none;
      color: var(--text-muted);
      font-family: inherit;
      font-size: 0.85rem;
      cursor: pointer;
      padding: 0.5rem;
    }

    .age-gate-decline:hover { color: var(--text); }

    body.age-locked { overflow: hidden; }

    /* Cookie banner */
    .cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 150;
      padding: 1rem 1.25rem calc(1rem + env(safe-area-inset-bottom));
      background: rgba(22, 18, 28, 0.98);
      border-top: 1px solid var(--border);
      backdrop-filter: blur(16px);
      display: none;
    }

    .cookie-banner.show { display: block; }

    .cookie-banner[hidden] { display: none !important; }

    .cookie-banner-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .cookie-banner-title {
      width: 100%;
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--text);
      margin: 0 0 0.25rem;
    }

    .cookie-banner p#cookie-banner-desc {
      flex: 1;
      min-width: 220px;
      font-size: 0.82rem;
      color: var(--text-muted);
      margin: 0;
      line-height: 1.5;
    }

    .cookie-banner a { color: var(--rose-light); }

    .cookie-actions {
      display: flex;
      gap: 0.5rem;
      flex-shrink: 0;
    }

    @media (max-width: 768px) {
      .affiliate-notice { padding: 0.55rem 1rem; font-size: 0.68rem; }
      .cookie-banner-inner { flex-direction: column; align-items: stretch; }
      .cookie-actions { width: 100%; }
      .cookie-actions .btn { flex: 1; }
    }
