:root {
  --bg: #12131a;
  --surface: #1c1e28;
  --surface-2: #262838;
  --text: #f2f2f5;
  --text-dim: #9a9db0;
  --accent: #ff5c8a;
  --accent-2: #4fd1c5;
  --border: #33364a;
  --radius: 14px;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  line-height: 1.6;
}
a { color: var(--accent-2); text-decoration: none; }

.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 20px;
}
.age-gate[hidden] { display: none; }
.age-gate__box {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px 24px;
  max-width: 420px;
  text-align: center;
}
.age-gate__logo { font-size: 18px; font-weight: 800; margin: 0 0 12px; }
.age-gate__desc { font-size: 13px; color: var(--text-dim); margin: 0 0 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.age-gate__title { font-size: 15px; color: var(--text-dim); margin: 0 0 8px; }
.age-gate__body { font-size: 20px; font-weight: 700; margin: 0 0 24px; }
.age-gate__actions { display: flex; flex-direction: column; gap: 10px; }

.app[hidden] { display: none; }
.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
}
.app-header__logo { font-weight: 800; font-size: 18px; color: var(--text); }
.app-header__nav { display: flex; gap: 18px; font-size: 14px; }
.app-main { max-width: 960px; margin: 0 auto; padding: 24px; }
.app-footer { padding: 24px; text-align: center; font-size: 12px; color: var(--text-dim); border-top: 1px solid var(--border); }

.btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  font-size: 14px;
}
.btn--primary { background: var(--accent); color: #fff; }
.btn--ghost { background: transparent; color: var(--text-dim); border: 1px solid var(--border); }
.btn--block { display: block; width: 100%; text-align: center; }

.hero-title { font-size: 28px; font-weight: 800; margin: 8px 0 4px; }
.hero-desc { color: var(--text-dim); font-size: 14px; margin-bottom: 24px; }

.section-title { font-size: 18px; font-weight: 700; margin: 32px 0 12px; }

.work-grid, .actress-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}
.work-card, .actress-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.work-card img, .actress-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; background: var(--surface-2); }
.work-card__body, .actress-card__body { padding: 10px; }
.work-card__title { font-size: 13px; margin: 0 0 4px; }
.work-card__meta { font-size: 12px; color: var(--text-dim); margin: 0; }
.work-card.owned { outline: 2px solid var(--accent-2); }

.badge {
  display: inline-block;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--accent-2);
  margin: 2px 4px 2px 0;
}
.badge--sale { color: var(--accent); }

.timeline { border-left: 2px solid var(--border); padding-left: 16px; }
.timeline-item { margin-bottom: 18px; position: relative; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -21px;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
}

.profile-table { width: 100%; border-collapse: collapse; font-size: 13px; margin: 12px 0; }
.profile-table td { padding: 6px 8px; border-bottom: 1px solid var(--border); }
.profile-table td:first-child { color: var(--text-dim); width: 40%; }

.feed-item { padding: 14px; background: var(--surface); border-radius: var(--radius); margin-bottom: 10px; border: 1px solid var(--border); }
.feed-item__kind { font-size: 11px; color: var(--accent-2); }
.article-body { background: var(--surface); padding: 20px; border-radius: var(--radius); }
