:root {
  --bg-deep: #0b0b12;
  --bg-card: #14141f;
  --bg-card-hover: #1a1a2a;
  --pink-main: #e84393;
  --pink-light: #fd79a8;
  --pink-glow: rgba(232, 67, 147, 0.25);
  --pink-subtle: rgba(232, 67, 147, 0.08);
  --text-primary: #eee8f0;
  --text-secondary: #9a8fa3;
  --text-dim: #6b6078;
  --border: rgba(232, 67, 147, 0.12);
  --radius: 8px;
}

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

body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: 'Noto Sans JP', 'Zen Kaku Gothic New', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 60vh;
  background: radial-gradient(ellipse, rgba(232, 67, 147, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === HEADER === */
.site-header { padding: 64px 0 48px; text-align: center; }

.site-header .circle-name {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pink-main);
  margin-bottom: 16px;
}

.site-header h1 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.site-header h1 span {
  background: linear-gradient(135deg, var(--pink-light), var(--pink-main));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.site-header .description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 24px;
}

.author-link {
  color: var(--pink-light);
  text-decoration: none;
  border-bottom: 1px solid var(--pink-glow);
  transition: all 0.25s ease;
}

.author-link:hover {
  color: var(--pink-main);
  border-bottom-color: var(--pink-main);
}

.store-links { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

.store-links a {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: all 0.25s ease;
}

.store-links a:hover {
  color: var(--pink-light);
  border-color: var(--pink-main);
  box-shadow: 0 0 12px var(--pink-glow);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
}

.site-nav a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: all 0.25s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--pink-light);
  border-bottom-color: var(--pink-main);
}

/* === SECTION === */
.section { margin-bottom: 64px; }

.section-label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pink-main);
  margin-bottom: 4px;
}

.section-title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

/* === FEATURED (New Release) === */
.featured-grid { display: flex; flex-direction: column; gap: 24px; }

.featured-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.featured-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(232, 67, 147, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232, 67, 147, 0.08);
}

.featured-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pink-main), transparent);
  z-index: 1;
}

.featured-card .thumb,
.featured-card .thumb-placeholder {
  width: 100%;
  aspect-ratio: 2/1;
  object-fit: cover;
  display: block;
  background: var(--bg-deep);
}

.featured-card .info { padding: 24px; }

.featured-card .badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink-main);
  background: var(--pink-subtle);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.featured-card .work-title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
}

.featured-card .work-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.8;
}

/* === BUTTONS === */
.purchase-links { display: flex; gap: 10px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 400;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: var(--radius);
  transition: all 0.25s ease;
}

.btn-dlsite {
  background: rgba(30, 110, 200, 0.15);
  color: #6cb4ee;
  border: 1px solid rgba(30, 110, 200, 0.3);
}
.btn-dlsite:hover { background: rgba(30, 110, 200, 0.25); box-shadow: 0 0 16px rgba(30, 110, 200, 0.2); }

.btn-fanza {
  background: rgba(220, 60, 60, 0.12);
  color: #e88;
  border: 1px solid rgba(220, 60, 60, 0.25);
}
.btn-fanza:hover { background: rgba(220, 60, 60, 0.22); box-shadow: 0 0 16px rgba(220, 60, 60, 0.2); }

.btn-booth {
  background: rgba(230, 140, 30, 0.12);
  color: #e8a84c;
  border: 1px solid rgba(230, 140, 30, 0.28);
}
.btn-booth:hover { background: rgba(230, 140, 30, 0.22); box-shadow: 0 0 16px rgba(230, 140, 30, 0.2); }

.btn-pixiv {
  background: rgba(0, 150, 250, 0.12);
  color: #5cb8fc;
  border: 1px solid rgba(0, 150, 250, 0.28);
}
.btn-pixiv:hover { background: rgba(0, 150, 250, 0.22); box-shadow: 0 0 16px rgba(0, 150, 250, 0.2); }

.btn-soon {
  color: var(--text-dim);
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  cursor: default;
}

.btn .arrow { font-size: 0.7em; opacity: 0.6; }

/* === WORK GRID === */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.work-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
}

.work-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(232, 67, 147, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232, 67, 147, 0.08);
}

.work-card .thumb,
.work-card .thumb-placeholder {
  width: 100%;
  aspect-ratio: 2/1;
  object-fit: cover;
  display: block;
  background: var(--bg-deep);
}

.work-card .card-body { padding: 14px 16px 16px; }
.work-card .card-meta { font-size: 0.68rem; color: var(--text-dim); margin-bottom: 6px; }
.work-card .card-title { font-size: 0.85rem; font-weight: 600; line-height: 1.5; margin-bottom: 6px; }

.work-card .card-desc {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.6;
}

.work-card .purchase-links { gap: 6px; }
.work-card .btn { font-size: 0.7rem; padding: 6px 12px; }

/* === UPDATE LIST (Discord history) === */
.update-list { display: flex; flex-direction: column; gap: 12px; }

.update-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  transition: all 0.25s ease;
  flex-wrap: wrap;
}

.update-row:hover {
  background: var(--bg-card-hover);
  border-color: rgba(232, 67, 147, 0.25);
}

.update-row .update-date {
  font-size: 0.8rem;
  color: var(--text-dim);
  min-width: 90px;
}

.update-row .update-note {
  font-size: 0.85rem;
  color: var(--text-secondary);
  flex: 1;
}

/* === EMPTY STATE === */
.empty-state {
  text-align: center;
  color: var(--text-dim);
  font-size: 0.85rem;
  padding: 48px 0;
}

/* === FOOTER === */
.site-footer {
  text-align: center;
  padding: 48px 0;
  font-size: 0.75rem;
  color: var(--text-dim);
  border-top: 1px solid var(--border);
}

/* === RESPONSIVE === */
@media (max-width: 640px) {
  .site-header { padding: 48px 0 32px; }
  .featured-card .info { padding: 16px; }
  .work-grid { grid-template-columns: 1fr; gap: 16px; }
  .work-card .btn { padding: 5px 10px; font-size: 0.65rem; }
  .featured-card .btn { padding: 5px 10px; font-size: 0.65rem; }
  .update-row { flex-direction: column; align-items: flex-start; gap: 8px; }
}

.thumb-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #1a1a2e, #16132a);
  color: var(--text-dim);
  font-size: 0.75rem;
}
