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

  :root {
    --bg: #0d0b10;
    --bg2: #131019;
    --bg3: #1a1624;
    --border: rgba(255,255,255,0.07);
    --border-hover: rgba(255,255,255,0.14);
    --text: #f0eaf5;
    --muted: #9585a8;
    --accent: #e0529a;
    --accent2: #c03a7e;
    --accent-glow: rgba(224,82,154,0.18);
    --rose: #ff6eb4;
    --gold: #f5c46b;
    --tag-bg: rgba(224,82,154,0.12);
    --tag-border: rgba(224,82,154,0.28);
    --online: #4ade80;
    --radius: 16px;
    --radius-sm: 10px;
  }

  html { scroll-behavior: smooth; }

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

  /* Background decorative blobs */
  body::before {
    content: '';
    position: fixed;
    top: -20vh;
    right: -10vw;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(160,40,120,0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
  }
  body::after {
    content: '';
    position: fixed;
    bottom: -10vh;
    left: -10vw;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(80,20,120,0.10) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
  }

  /* NAV */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(13,11,16,0.85);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    padding: 0 2rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }
  .logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #c03a7e, #7b2fff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
  }
  .logo-text {
    font-family: 'DM Serif Display', serif;
    font-size: 1.2rem;
    color: var(--text);
    letter-spacing: -0.02em;
  }
  .logo-text span { color: var(--accent); }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
  }
  .nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    padding: 6px 14px;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
  }
  .nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.06); }
  .nav-links a.active { color: var(--text); }

  .nav-cta {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
  }
  .nav-cta:hover { background: var(--accent2); transform: translateY(-1px); }

  /* HERO STRIP */
  .hero {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 5rem 2rem 3.5rem;
    max-width: 760px;
    margin: 0 auto;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--tag-bg);
    border: 1px solid var(--tag-border);
    color: var(--rose);
    font-size: 0.78rem;
    font-weight: 500;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.04em;
  }
  .badge-dot {
    width: 6px; height: 6px;
    background: var(--online);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }

  .hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    color: var(--text);
  }
  .hero h1 em {
    font-style: italic;
    color: var(--accent);
  }
  .hero p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto 2rem;
  }

  /* FILTERS */
  .filters-wrap {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto 2.5rem;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .filter-label {
    font-size: 0.8rem;
    color: var(--muted);
    white-space: nowrap;
  }
  .filter-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    flex: 1;
  }
  .chip {
    background: var(--bg3);
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 0.8rem;
    padding: 6px 14px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
    white-space: nowrap;
    text-decoration: none;
  }
  .chip:hover, .chip.active {
    background: var(--tag-bg);
    border-color: var(--tag-border);
    color: var(--rose);
  }

  .search-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 8px 14px;
    transition: border-color 0.2s;
  }
  .search-box:focus-within { border-color: var(--accent); }
  .search-box svg { color: var(--muted); flex-shrink: 0; }
  .search-box input {
    background: none;
    border: none;
    outline: none;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    width: 160px;
  }
  .search-box input::placeholder { color: var(--muted); }

  /* GRID */
  .grid-wrap {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
  }
  .section-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
  }
  .section-meta h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: -0.02em;
  }
  .section-meta span {
    font-size: 0.8rem;
    color: var(--muted);
  }

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

  /* CARD */
  .card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    color: var(--text);
    display: block;
    transition: transform 0.25s cubic-bezier(.22,.68,0,1.2), border-color 0.25s, box-shadow 0.25s;
    position: relative;
  }
  .card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(224,82,154,0.1);
  }

  .card-img {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--bg3);
  }
  .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
    display: block;
  }
  .card:hover .card-img img { transform: scale(1.04); }

  .card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,11,16,0.92) 0%, rgba(13,11,16,0.3) 50%, transparent 100%);
  }

  .card-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 6px;
  }
  .badge {
    font-size: 0.68rem;
    font-weight: 500;
    padding: 3px 9px;
    border-radius: 50px;
    letter-spacing: 0.04em;
  }
  .badge-verified {
    background: rgba(13,11,16,0.75);
    border: 1px solid rgba(74,222,128,0.4);
    color: #4ade80;
    backdrop-filter: blur(8px);
  }
  .badge-online {
    background: rgba(13,11,16,0.75);
    border: 1px solid rgba(74,222,128,0.25);
    color: #4ade80;
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .badge-online::before {
    content: '';
    width: 5px; height: 5px;
    background: var(--online);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

  .card-fav {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px; height: 32px;
    background: rgba(13,11,16,0.65);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 14px;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
    z-index: 2;
  }
  .card-fav:hover { color: var(--accent); border-color: var(--accent); background: rgba(224,82,154,0.12); }

  .card-info {
    padding: 14px 16px 16px;
  }
  .card-name {
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
  }
  .card-location {
    font-size: 0.78rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 10px;
  }
  .card-excerpt {
    font-size: 0.8rem;
    line-height: 1.55;
    color: #7a6d88;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 12px;
  }
  .card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .card-tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
  }
  .tag {
    font-size: 0.68rem;
    background: var(--tag-bg);
    border: 1px solid var(--tag-border);
    color: var(--rose);
    padding: 2px 8px;
    border-radius: 4px;
  }
  .card-cta {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--accent);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
  }

  /* SIDEBAR CTA */
  .layout-wrap {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 6rem;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: start;
  }

  .sidebar {
    position: sticky;
    top: 84px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .sidebar-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    overflow: hidden;
    position: relative;
  }
  .sidebar-card::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(160,40,120,0.15) 0%, transparent 70%);
    pointer-events: none;
  }

  .sidebar-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    position: relative;
  }
  .sidebar-card p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    position: relative;
  }
  .btn-full {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #c03a7e, #7b2fff);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    text-align: center;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s;
    position: relative;
  }
  .btn-full:hover { opacity: 0.9; transform: translateY(-1px); }

  .member-wall {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-top: 1rem;
  }
  .member-thumb {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg3);
  }
  .member-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
  }
  .member-thumb:hover img { transform: scale(1.08); }

  .trust-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 0.5rem;
  }
  .trust-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.8rem;
  }
  .trust-icon {
    width: 28px; height: 28px;
    border-radius: 8px;
    background: var(--tag-bg);
    border: 1px solid var(--tag-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
  }
  .trust-text strong {
    display: block;
    color: var(--text);
    font-size: 0.8rem;
    margin-bottom: 1px;
  }
  .trust-text span {
    color: var(--muted);
    font-size: 0.75rem;
    line-height: 1.4;
  }

  /* PAGINATION */
  .pagination {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 2rem 2rem 5rem;
  }
  .page-btn {
    width: 38px; height: 38px;
    border-radius: 8px;
    background: var(--bg2);
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
  }
  .page-btn:hover { border-color: var(--accent); color: var(--accent); }
  .page-btn.current { background: var(--accent); border-color: var(--accent); color: #fff; }
  .page-ellipsis { color: var(--muted); font-size: 0.875rem; padding: 0 4px; }

  /* FOOTER */
  footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
    padding: 2rem;
    text-align: center;
    font-size: 0.78rem;
    color: var(--muted);
  }
  footer a { color: var(--muted); text-decoration: none; }
  footer a:hover { color: var(--text); }

  /* AGE GATE */
  .age-gate {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(13,11,16,0.97);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
  }
  .age-box {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 420px;
    width: 100%;
    text-align: center;
  }
  .age-box .logo-icon { margin: 0 auto 1.5rem; width: 52px; height: 52px; font-size: 24px; border-radius: 14px; }
  .age-box h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
  }
  .age-box p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1.75rem;
  }
  .age-btns { display: flex; gap: 12px; }
  .btn-enter {
    flex: 1;
    background: linear-gradient(135deg, #c03a7e, #7b2fff);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: opacity 0.2s;
  }
  .btn-enter:hover { opacity: 0.9; }
  .btn-leave {
    flex: 1;
    background: var(--bg3);
    border: 1px solid var(--border);
    color: var(--muted);
    padding: 14px;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: border-color 0.2s, color 0.2s;
  }
  .btn-leave:hover { border-color: var(--border-hover); color: var(--text); }
  .age-legal { margin-top: 1.25rem; font-size: 0.72rem; color: #4a3f57; line-height: 1.5; }

  @media (max-width: 900px) {
    .layout-wrap { grid-template-columns: 1fr; }
    .sidebar { position: static; }
    .nav-links { display: none; }
    .profiles-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  }
  
  .btn-send {
    background: linear-gradient(135deg, #c03a7e, #7b2fff);
    color: #fff;
    border: none;
    padding: 13px 28px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: opacity 0.2s, transform 0.15s;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
  }
  .btn-send:hover { opacity: 0.9; transform: translateY(-1px); }
  
.alert {
    width: 100%;
    margin: 20px auto;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert p {
    padding: 5px;
    font-weight: bold;
}

.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}