* { margin: 0; padding: 0; box-sizing: border-box; }
  body { background: #0a0a0a; color: #fff; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; min-height: 100vh; }
  a { color: inherit; text-decoration: none; }
  
  /* Header */
  .header { position: sticky; top: 0; z-index: 50; background: rgba(10,10,10,0.95); backdrop-filter: blur(8px); border-bottom: 1px solid #222; }
  .header-inner { max-width: 1280px; margin: 0 auto; padding: 12px 16px; display: flex; align-items: center; gap: 16px; }
  .logo { font-size: 24px; font-weight: bold; color: #e50914; flex-shrink: 0; }
  .search-box { flex: 1; max-width: 560px; }
  .search-box input { width: 100%; background: #141414; border: 1px solid #333; border-radius: 8px; padding: 8px 16px; font-size: 14px; color: #fff; outline: none; }
  .search-box input:focus { border-color: #e50914; }
  .nav-btns { display: flex; gap: 4px; flex-shrink: 0; }
  .nav-btns button, .nav-btns a { background: none; border: none; color: #999; padding: 6px 10px; cursor: pointer; font-size: 14px; text-decoration: none; }
  .nav-btns button:hover, .nav-btns a:hover { color: #fff; }
  .tg-btn { background: #0088cc !important; color: #fff !important; border-radius: 4px; padding: 4px 10px !important; font-size: 13px !important; }
  .tg-btn:hover { background: #006da3 !important; }
  
  /* Layout */
  .main { max-width: 1280px; margin: 0 auto; padding: 24px 16px; display: flex; gap: 24px; }
  .content { flex: 1; min-width: 0; }
  .sidebar { display: none; width: 272px; flex-shrink: 0; }
  @media (min-width: 1024px) { .sidebar { display: block; } }
  
  /* Grid */
  .grid { display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr); }
  @media (min-width: 640px) { .grid { grid-template-columns: repeat(3, 1fr); } }
  @media (min-width: 768px) { .grid { grid-template-columns: repeat(4, 1fr); } }
  
  /* Cards */
  .video-card { display: block; border-radius: 8px; overflow: hidden; background: #141414; transition: transform 0.2s; }
  .video-card:hover { transform: scale(1.03); }
	  .thumb-container { position: relative; padding-bottom: 142%; overflow: hidden; background: #1a1a1a; border-radius: 6px; }
	  .thumb-container img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: right; }
	  .thumb-actress { position: absolute; left: 8px; right: 8px; bottom: 8px; padding: 5px 7px; border-radius: 5px; background: linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.78)); color: #fff; font-size: 12px; font-weight: 700; line-height: 1.2; text-shadow: 0 1px 2px #000; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
	  .card-info { padding: 10px; }
  .card-title { font-size: 14px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .card-meta { display: flex; gap: 12px; margin-top: 6px; font-size: 13px; color: #888; }
  
  /* Pagination */
  .pagination { display: flex; justify-content: center; gap: 8px; margin: 32px 0 48px; }
  .pagination button { background: #141414; border: none; color: #fff; padding: 6px 12px; border-radius: 4px; cursor: pointer; }
  .pagination button:hover { background: #1a1a1a; }
  .pagination button.active { background: #e50914; }
  
  /* Footer */
  .footer { border-top: 1px solid #222; padding: 24px; text-align: center; color: #666; font-size: 13px; }
  .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 10px; }
  .footer-links a { color: #888; }
  .footer-links a:hover { color: #fff; }
  
  /* Video page */
	  .video-player { background: #000; border-radius: 8px; overflow: hidden; margin-bottom: 16px; }
	  .video-player video { width: 100%; display: block; }
	  .video-cover-panel { margin: 0 0 18px; border-radius: 8px; overflow: hidden; background: #111; border: 1px solid #222; }
	  .video-cover-panel img { display: block; width: 100%; max-height: 720px; object-fit: contain; background: #000; }
	  .video-ad-slot { display: flex; justify-content: center; margin: 24px 0 4px; min-height: 0; }
	  .video-info { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
  .video-actions { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
  .video-title { font-size: 20px; font-weight: bold; }
  .video-stats { display: flex; gap: 16px; margin-top: 6px; font-size: 14px; color: #888; }
  .like-btn { background: #141414; border: none; color: #fff; padding: 8px 16px; border-radius: 8px; cursor: pointer; font-size: 14px; }
  .like-btn:hover { background: #e50914; }
  .report-btn { background: transparent; border: 1px solid #3a3a3a; color: #bbb; padding: 8px 14px; border-radius: 8px; cursor: pointer; font-size: 14px; }
  .report-btn:hover { border-color: #e50914; color: #fff; }
  .tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
  .tag { background: #141414; padding: 4px 10px; border-radius: 4px; font-size: 12px; color: #ccc; }
	  .section-title { font-size: 18px; font-weight: 600; margin-bottom: 16px; }
	  .catalog-hero, .actress-hero { margin-bottom: 24px; padding: 20px; border: 1px solid #222; border-radius: 8px; background: #101010; }
	  .catalog-hero h1, .actress-hero h1 { font-size: 28px; line-height: 1.15; margin: 6px 0 8px; }
	  .catalog-hero p, .actress-hero p { color: #aaa; max-width: 760px; line-height: 1.55; font-size: 14px; }
	  .catalog-kicker { color: #e50914; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.8px; }
	  .catalog-stats { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; color: #bbb; font-size: 12px; }
	  .catalog-stats span { border: 1px solid #282828; background: #151515; border-radius: 999px; padding: 4px 9px; }
	  .catalog-chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin: -4px 0 22px; }
	  .catalog-featured { margin-bottom: 24px; }
	  .actress-hero { display: grid; grid-template-columns: 96px 1fr; gap: 18px; align-items: center; }
	  .actress-hero img, .actress-avatar { width: 96px; height: 128px; border-radius: 7px; object-fit: cover; background: #181818; border: 1px solid #2a2a2a; }
	  .actress-avatar { display: flex; align-items: center; justify-content: center; color: #666; font-size: 42px; font-weight: 800; }
	  @media (max-width: 640px) { .actress-hero { grid-template-columns: 1fr; } .catalog-hero h1, .actress-hero h1 { font-size: 23px; } }

	  /* Sidebar categories - clean look */
  .sidebar-wrap { padding: 0 0 16px 0; }
  .sidebar-header { display: flex; align-items: center; gap: 8px; padding: 12px 14px 8px; font-size: 10px; font-weight: 700; color: #e50914; text-transform: uppercase; letter-spacing: 2.5px; border-bottom: 1px solid #1e1e1e; }
  .sidebar-cat { margin-bottom: 4px; }
  .sidebar-cat-header { display: flex; align-items: center; gap: 8px; padding: 8px 14px; text-decoration: none; border-radius: 6px; margin: 0 6px; transition: background 0.15s; cursor: pointer; }
  .sidebar-cat-header:hover { background: #141414; }
  .sidebar-cat-icon { font-size: 14px; width: 18px; text-align: center; flex-shrink: 0; }
  .sidebar-cat-name { flex: 1; font-size: 13px; font-weight: 600; color: #ccc; letter-spacing: 0.3px; }
  .sidebar-cat-count { font-size: 10px; color: #444; background: #1a1a1a; padding: 1px 6px; border-radius: 10px; }
  .sidebar-tags { padding: 2px 14px 6px; display: flex; flex-wrap: wrap; gap: 4px; }
  .sidebar-tag { display: inline-block; padding: 2px 7px; background: #141414; border: 1px solid #222; border-radius: 4px; font-size: 11px; color: #777; text-decoration: none; white-space: nowrap; transition: all 0.15s; }
  .sidebar-tag:hover { border-color: #e50914; color: #e50914; }
  .sidebar-tag-more { font-size: 10px; color: #555; padding: 2px 0; text-align: center; }
  .sidebar-all-link { display: block; text-align: center; padding: 8px; font-size: 12px; color: #555; text-decoration: none; border-top: 1px solid #1a1a1a; margin-top: 4px; transition: color 0.15s; }
  .sidebar-all-link:hover { color: #e50914; }

  
  ::-webkit-scrollbar { width: 8px; }
  ::-webkit-scrollbar-track { background: #0a0a0a; }
  ::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }

  /* Sidebar polish */
  .sidebar { border-left: 1px solid #1a1a1a; }
  .sidebar a { transition: color 0.15s, background 0.15s, border-color 0.15s; }

  /* ===== HALL OF FAME ===== */
  .hof-hero { text-align: center; padding: 48px 16px 32px; background: linear-gradient(180deg, #1a0a00 0%, #0a0a0a 100%); border-bottom: 1px solid #2a1a00; margin-bottom: 32px; }
  .hof-hero h1 { font-size: clamp(28px, 5vw, 48px); font-weight: 800; background: linear-gradient(135deg, #ffd700, #ff8c00, #ffd700); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 12px; }
  .hof-hero p { color: #999; font-size: 16px; max-width: 640px; margin: 0 auto; line-height: 1.6; }
  .hof-stats { display: flex; justify-content: center; gap: 32px; margin-top: 24px; flex-wrap: wrap; }
  .hof-stat { text-align: center; }
  .hof-stat-num { font-size: 28px; font-weight: 700; color: #ffd700; }
  .hof-stat-label { font-size: 12px; color: #666; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
  .hof-grid { display: grid; gap: 20px; grid-template-columns: repeat(2, 1fr); padding: 0 16px 48px; max-width: 1280px; margin: 0 auto; }
  @media (min-width: 480px) { .hof-grid { grid-template-columns: repeat(3, 1fr); } }
  @media (min-width: 768px) { .hof-grid { grid-template-columns: repeat(4, 1fr); } }
  @media (min-width: 1024px) { .hof-grid { grid-template-columns: repeat(5, 1fr); } }
  @media (min-width: 1280px) { .hof-grid { grid-template-columns: repeat(6, 1fr); } }
  .hof-card { position: relative; border-radius: 10px; overflow: hidden; background: #111; transition: transform 0.2s, box-shadow 0.2s; display: block; }
  .hof-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(255,215,0,0.15); }
  .hof-card.no-link { cursor: default; }
  .hof-card.no-link:hover { transform: none; box-shadow: none; }
  .hof-rank { position: absolute; top: 8px; left: 8px; z-index: 10; font-size: 11px; font-weight: 800; padding: 3px 7px; border-radius: 4px; letter-spacing: 0.5px; }
  .hof-rank.gold { background: linear-gradient(135deg, #ffd700, #ffb300); color: #000; box-shadow: 0 2px 8px rgba(255,215,0,0.5); }
  .hof-rank.silver { background: linear-gradient(135deg, #c0c0c0, #a0a0a0); color: #000; box-shadow: 0 2px 8px rgba(192,192,192,0.4); }
  .hof-rank.bronze { background: linear-gradient(135deg, #cd7f32, #a0522d); color: #fff; box-shadow: 0 2px 8px rgba(205,127,50,0.4); }
  .hof-photo { position: relative; padding-bottom: 140%; overflow: hidden; background: #1a1a1a; }
  .hof-photo img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.3s; }
  .hof-card:hover .hof-photo img { transform: scale(1.05); }
  .hof-photo-overlay { position: absolute; bottom: 0; left: 0; right: 0; height: 60%; background: linear-gradient(transparent, rgba(0,0,0,0.85)); pointer-events: none; }
  .hof-badge { position: absolute; bottom: 8px; right: 8px; z-index: 5; }
  .hof-badge svg { width: 28px; height: 28px; }
  .hof-info { padding: 10px 12px 12px; }
  .hof-name-en { font-size: 13px; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .hof-name-jp { font-size: 11px; color: #888; margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .hof-meta { display: flex; gap: 6px; margin-top: 8px; flex-wrap: wrap; }
  .hof-tag { font-size: 10px; padding: 2px 6px; border-radius: 3px; background: #1e1e1e; color: #aaa; white-space: nowrap; }
  .hof-tag.studio { color: #e50914; }
  .hof-has-videos { position: absolute; top: 8px; right: 8px; background: #e50914; color: #fff; font-size: 9px; font-weight: 700; padding: 2px 5px; border-radius: 3px; text-transform: uppercase; }
  .hof-section-label { padding: 8px 16px; max-width: 1280px; margin: 0 auto 8px; display: flex; align-items: center; gap: 12px; }
  .hof-section-label span { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
  .hof-section-label::after { content: ''; flex: 1; height: 1px; background: currentColor; opacity: 0.2; }
  .hof-section-top10 span { color: #ffd700; }
  .hof-section-top25 span { color: #c0c0c0; }
  .hof-section-top50 span { color: #cd7f32; }

  /* Compliance */
  .age-gate { width: 100%; min-height: calc(100vh - 180px); display: flex; align-items: center; justify-content: center; padding: 48px 16px; }
  .age-gate-panel { width: min(560px, 100%); background: #111; border: 1px solid #292929; border-radius: 8px; padding: 28px; text-align: center; box-shadow: 0 16px 60px rgba(0,0,0,0.35); }
  .age-gate-mark { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: 50%; background: #e50914; color: #fff; font-weight: 800; font-size: 20px; margin-bottom: 18px; }
  .age-gate h1, .legal-page h1 { font-size: 28px; margin-bottom: 12px; }
  .age-gate p, .legal-page p { color: #c6c6c6; line-height: 1.65; }
  .age-gate-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin: 24px 0 16px; }
  .primary-action, .secondary-action { border-radius: 6px; padding: 10px 18px; font-size: 14px; font-weight: 700; cursor: pointer; }
  .primary-action { background: #e50914; border: 1px solid #e50914; color: #fff; }
  .secondary-action { background: #181818; border: 1px solid #333; color: #ddd; }
  .age-gate-note { color: #777 !important; font-size: 12px; margin: -4px 0 14px; }
  .age-gate-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; font-size: 12px; color: #888; }
  .age-gate-links a:hover { color: #fff; }
  .legal-page { width: min(860px, 100%); margin: 0 auto; padding: 18px 0 48px; }
  .legal-eyebrow { color: #e50914 !important; font-size: 12px; text-transform: uppercase; letter-spacing: 1.8px; font-weight: 800; margin-bottom: 8px; }
  .legal-intro { font-size: 17px; margin-bottom: 24px; }
  .legal-page section { border-top: 1px solid #222; padding: 18px 0; }
  .legal-page h2 { font-size: 17px; margin-bottom: 8px; }
  .report-form { display: grid; gap: 14px; margin-top: 22px; padding: 18px; background: #111; border: 1px solid #292929; border-radius: 8px; }
  .report-form label { display: grid; gap: 6px; color: #ddd; font-size: 13px; }
  .report-form input, .report-form select, .report-form textarea { width: 100%; background: #0b0b0b; border: 1px solid #333; color: #fff; border-radius: 6px; padding: 10px 12px; font: inherit; }
  .report-form input:focus, .report-form select:focus, .report-form textarea:focus { outline: none; border-color: #e50914; }
  .form-status { min-height: 20px; color: #aaa !important; font-size: 13px; }
  .report-modal { position: fixed; inset: 0; z-index: 1000; background: rgba(0,0,0,0.82); display: flex; align-items: center; justify-content: center; padding: 16px; }
  .report-dialog { width: min(560px, 100%); max-height: 92vh; overflow: auto; background: #101010; border: 1px solid #2b2b2b; border-radius: 8px; padding: 22px; position: relative; }
  .report-close { position: absolute; top: 10px; right: 12px; background: transparent; color: #aaa; border: 0; font-size: 26px; cursor: pointer; }
  .admin-page { width: min(1100px, 100%); margin: 0 auto; padding: 18px 0 48px; }
  .admin-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 18px; }
  .admin-top h1 { font-size: 28px; }
  .admin-token-box { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
  .admin-token-box input, .admin-token-box select, .admin-status, .admin-note { background: #0b0b0b; border: 1px solid #333; color: #fff; border-radius: 6px; padding: 9px 10px; }
  .admin-token-box button, .admin-report-actions button { background: #181818; border: 1px solid #333; color: #eee; border-radius: 6px; padding: 9px 12px; cursor: pointer; }
  .admin-token-box button:hover, .admin-report-actions button:hover { border-color: #e50914; }
  .admin-stats { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
  .admin-stats span { background: #151515; border: 1px solid #292929; border-radius: 999px; padding: 6px 10px; color: #bbb; font-size: 12px; }
  .admin-error { color: #ff7b7b; min-height: 20px; margin-bottom: 12px; }
  .admin-report-list { display: grid; gap: 12px; }
  .admin-empty { color: #888; padding: 18px; border: 1px solid #222; border-radius: 8px; background: #111; }
  .admin-report { background: #111; border: 1px solid #292929; border-radius: 8px; padding: 16px; }
  .admin-report-head { display: flex; justify-content: space-between; gap: 12px; align-items: flex-start; margin-bottom: 12px; }
  .admin-report-head h2 { font-size: 20px; margin: 4px 0; }
  .admin-report-head p, .admin-report-meta dd { color: #aaa; }
  .admin-report-reason { color: #e50914; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
  .admin-video-state { color: #6ee7a8; border: 1px solid #236b48; border-radius: 999px; padding: 5px 9px; font-size: 12px; white-space: nowrap; }
  .admin-video-state.disabled { color: #ff9b9b; border-color: #7a2c2c; }
  .admin-report-meta { display: grid; gap: 8px; margin-bottom: 12px; }
  .admin-report-meta div { display: grid; gap: 3px; }
  .admin-report-meta dt { color: #777; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }
  .admin-report-meta a { color: #ddd; text-decoration: underline; }
  .admin-report-actions { display: flex; gap: 8px; flex-wrap: wrap; }
  .admin-note { min-width: min(360px, 100%); flex: 1; }
  @media (max-width: 640px) {
    .header-inner { flex-wrap: wrap; }
    .nav-btns { overflow-x: auto; max-width: 100%; }
    .video-info { align-items: flex-start; gap: 14px; flex-direction: column; }
    .video-actions { justify-content: flex-start; }
    .admin-top { flex-direction: column; }
    .admin-token-box { justify-content: flex-start; }
  }
