 @charset "utf-8";
 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --bg:       #0a0a0c;
    --surface:  #111116;
    --card:     #16161e;
    --border: rgba(255,255,255,0.12);
    --accent:   #e8195a;
    --accent2:  #ff6b35;
    --gold:     #f5c842;
    --text:     #f2f2ff;
    --muted:    #9090b0;
    --online:   #22d66f;
    --hd:       #3ab4f2;
    --radius:   10px;
    --font-head: 'Bebas Neue', cursive;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'DM Mono', monospace;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.5;
    min-height: 100vh;
    overflow-x: hidden;
  }

  a { color: inherit; text-decoration: none; }

  /* ── AGE GATE ── */
  #age-gate {
    position: fixed; inset: 0; z-index: 9999;
    background: #000;
    display: flex; align-items: center; justify-content: center;
    animation: fadeIn .3s ease;
  }
  .gate-box {
    max-width: 480px; width: 92%; text-align: center;
    padding: 56px 40px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 0 80px rgba(232,25,90,0.15);
  }
  .gate-box h2 {
    font-family: var(--font-head);
    font-size: 26px;
    letter-spacing: 1px;
    color: var(--text);
    margin-bottom: 12px;
  }
  .gate-box p {
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 32px;
    line-height: 1.7;
  }
  .gate-box p a { color: var(--accent); }
  .btn-enter {
    display: block; width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #fff;
    border: none; border-radius: var(--radius);
    font-family: var(--font-head);
    font-size: 20px;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: opacity .2s, transform .15s;
  }
  .btn-enter:hover { opacity: .9; transform: translateY(-1px); }
  .btn-leave {
    display: block; width: 100%; margin-top: 12px;
    padding: 14px;
    background: transparent;
    color: var(--muted);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 13px;
    cursor: pointer;
  }
  .btn-leave:hover { color: var(--text); border-color: rgba(255,255,255,0.2); }
  .gate-legal {
    margin-top: 24px;
    font-size: 11px;
    color: var(--muted);
    line-height: 1.6;
  }

  /* ── HEADER ── */
  header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(10,10,12,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
  }
  .header-inner {
    max-width: 1600px; margin: 0 auto;
    display: flex; align-items: center; gap: 24px;
    padding: 0 20px; height: 60px;
  }
  .logo { display: flex; align-items: center; flex-shrink: 0; }
  .logo-img { height: 32px; width: auto; display: block; }
  .gate-logo { margin-bottom: 8px; }
  .gate-logo-img { height: 56px; width: auto; margin: 0 auto; display: block; }

  .live-pill {
    display: flex; align-items: center; gap: 6px;
    padding: 4px 10px;
    background: rgba(34,214,111,0.1);
    border: 1px solid rgba(34,214,111,0.25);
    border-radius: 20px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--online);
    flex-shrink: 0;
  }
  .live-pill.stale {
    background: rgba(245,200,66,0.1);
    border-color: rgba(245,200,66,0.30);
    color: var(--gold);
  }
  .live-dot {
    width: 6px; height: 6px;
    background: currentColor;
    border-radius: 50%;
    animation: pulse 1.6s infinite;
  }
  .header-search {
    flex: 1; max-width: 380px;
    position: relative;
    margin-left: auto;
  }
  .header-search input {
    width: 100%;
    padding: 9px 16px 9px 38px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 13px;
    outline: none;
  }
  .header-search input::placeholder { color: var(--muted); }
  .header-search input:focus { border-color: rgba(232,25,90,0.5); }
  .search-icon {
    position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
    color: var(--muted); pointer-events: none;
  }

  /* ── FILTER BAR ── */
  .filter-bar {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    position: sticky; top: 60px; z-index: 90;
  }
  .filter-inner {
    max-width: 1600px; margin: 0 auto;
    padding: 0 20px;
    display: flex; align-items: center; gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    height: 52px;
  }
  .filter-inner::-webkit-scrollbar { display: none; }
  .filter-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
    white-space: nowrap;
    flex-shrink: 0;
    margin-right: 4px;
  }
  .filter-btn {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    color: #c4c4d8;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
    transition: all .18s;
  }
  .filter-btn:hover { color: #fff; border-color: rgba(255,255,255,0.30); background: rgba(255,255,255,0.09); }
  .filter-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
  }
  .filter-divider {
    width: 1px; height: 24px;
    background: var(--border);
    flex-shrink: 0;
    margin: 0 4px;
  }
  .sort-select {
    margin-left: auto;
    padding: 6px 28px 6px 12px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 12px;
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6b80' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    flex-shrink: 0;
  }

  /* ── MAIN ── */
  main {
    max-width: 1600px; margin: 0 auto;
    padding: 24px 20px 60px;
  }

  .section-header {
    display: flex; align-items: baseline; gap: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
  }
  .section-title {
    font-family: var(--font-head);
    font-size: 32px;
    letter-spacing: 1px;
    color: var(--text);
  }
  .section-count {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--muted);
  }
  .updated-info {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--muted);
    margin-left: auto;
  }
  .intro-line {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 20px;
    max-width: 800px;
  }

  /* ── GRID ── */
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
  }

  /* ── CARD ── */
  .card {
    display: block;
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: transform .2s, box-shadow .2s, border-color .2s;
    animation: fadeUp .35s ease both;
    color: inherit;
  }
  .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    border-color: rgba(232,25,90,0.35);
  }
  .card-thumb {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #0d0d14;
  }
  .card-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s;
  }
  .card:hover .card-thumb img { transform: scale(1.05); }
  .card-badges {
    position: absolute; top: 8px; left: 8px;
    display: flex; gap: 5px; flex-wrap: wrap;
  }
  .badge {
    padding: 2px 7px;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .5px;
  }
  .badge-hd { background: rgba(58,180,242,0.9); color: #fff; }
  .badge-new { background: rgba(245,200,66,0.9); color: #000; }
  .badge-pvt { background: rgba(232,25,90,0.85); color: #fff; }
  .viewers-badge {
    position: absolute; bottom: 8px; right: 8px;
    display: flex; align-items: center; gap: 5px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(6px);
    padding: 3px 8px;
    border-radius: 20px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: #fff;
  }
  .viewers-dot {
    width: 5px; height: 5px;
    background: var(--online);
    border-radius: 50%;
  }
  .card-body { padding: 12px 12px 14px; }
  .card-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .card-meta {
    display: flex; align-items: center; gap: 6px;
    margin-top: 3px;
    font-size: 12px;
    color: var(--muted);
  }
  .card-gender {
    font-size: 11px;
    padding: 1px 6px;
    border-radius: 3px;
    font-weight: 500;
  }
  .gender-f { background: rgba(232,25,90,0.15); color: #f06; }
  .gender-m { background: rgba(58,130,242,0.15); color: #5af; }
  .gender-c { background: rgba(245,200,66,0.15); color: var(--gold); }
  .gender-t { background: rgba(170,80,255,0.15); color: #b66eff; }
  .card-subject {
    margin-top: 7px;
    font-size: 12px;
    color: var(--muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .card-tags {
    display: flex; gap: 5px; flex-wrap: wrap;
    margin-top: 8px;
  }
  .tag {
    padding: 2px 8px;
    border-radius: 4px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    font-size: 11px;
    color: var(--muted);
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    transition: color .15s, border-color .15s;
  }
  .tag:hover { color: var(--accent); border-color: rgba(232,25,90,0.4); }

  /* ── PAGINATION ── */
  .pagination {
    display: flex; align-items: center; justify-content: center;
    gap: 8px;
    margin-top: 40px;
    flex-wrap: wrap;
  }
  .page-link {
    padding: 10px 16px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    min-width: 42px;
    text-align: center;
    transition: all .2s;
  }
  .page-link:hover {
    border-color: var(--accent);
    color: var(--accent);
  }
  .page-link.current {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
  }
  .page-link.disabled {
    opacity: .35; cursor: default; pointer-events: none;
  }
  .page-ellipsis { color: var(--muted); padding: 0 4px; }

  /* ── EMPTY ── */
  .empty {
    grid-column: 1/-1;
    text-align: center;
    padding: 80px 20px;
    color: var(--muted);
  }
  .empty-icon { font-size: 48px; margin-bottom: 16px; }
  .empty h2 { font-family: var(--font-head); font-size: 28px; color: var(--text); margin-bottom: 8px; }

  /* ── SEO SECTION ── */
  .seo-section {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 56px 20px;
  }
  .seo-inner { max-width: 860px; margin: 0 auto; }
  .seo-section h2 {
    font-family: var(--font-head);
    font-size: 26px;
    letter-spacing: .5px;
    color: var(--text);
    margin: 28px 0 12px;
  }
  .seo-section h2:first-child { margin-top: 0; }
  .seo-section p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 14px;
  }
  .seo-section img {
    max-width: 100%; height: auto; display: block; border-radius: var(--radius);
  }
  .seo-section a { color: var(--accent); }
  .seo-section a:hover { text-decoration: underline; }

  footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 32px 20px;
    text-align: center;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.8;
  }
  footer a { color: var(--muted); margin: 0 6px; }
  footer a:hover { color: var(--accent); }

  /* ── ANIMATIONS ── */
  @keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
  @keyframes fadeUp { from { opacity:0; transform: translateY(16px); } to { opacity:1; transform: none; } }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: .5; transform: scale(.85); }
  }

  @media (max-width: 600px) {
    .header-search { display: none; }
    .grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; }
    .section-title { font-size: 24px; }
    main { padding: 16px 12px 40px; }
  }