/* roulang page: index */
/* ===== PANE DESIGN TOKENS ===== */
:root {
  --paper: #FBF8F3;
  --paper-deep: #F2ECE3;
  --ink: #241F1A;
  --ink-2: #51483F;
  --ink-3: #8A7E71;
  --sakura: #C83E55;
  --sakura-soft: #F6D2D5;
  --sakura-deep: #8F2636;
  --line: #E3DBD0;
  --line-strong: #C4B9A9;
  --night: #2B2620;
  --success: #4D7C5F;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-full: 999px;
  --shadow-1: 0 1px 2px rgba(36,31,26,.04), 0 4px 12px rgba(36,31,26,.05);
  --shadow-2: 0 2px 4px rgba(36,31,26,.06), 0 12px 32px rgba(36,31,26,.1);
  --font-sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
  --font-serif: "Noto Serif SC", "Songti SC", "SimSun", serif;
  --space-section: clamp(64px, 8vw, 104px);
  --ease: cubic-bezier(.33, 0, .2, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink);
  background-color: var(--paper);
  -webkit-font-smoothing: antialiased;
  font-variant-east-asian: normal;
}
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--sakura); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--sakura);
  outline-offset: 2px;
}
button { font-family: inherit; }
ul, ol { list-style: none; margin: 0; padding: 0; }
.container-main { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
@media (max-width: 768px) {
  .container-main { padding: 0 16px; }
}

/* ===== UTILITY ===== */
.section-space { padding: var(--space-section) 0; }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .12em;
  font-weight: 500;
  color: var(--sakura);
  margin-bottom: 12px;
}
.section-title-serif {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0;
  color: var(--ink);
}
.section-title-serif::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 3px;
  background: var(--sakura);
  margin-right: 10px;
  vertical-align: middle;
  border-radius: 2px;
}
.text-lead {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.8;
  max-width: 560px;
}

/* ===== BUTTON SYSTEM ===== */
.btn-sakura {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--sakura) !important;
  color: #fff !important;
  border: none;
  border-radius: var(--radius-sm);
  padding: 12px 26px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
}
.btn-sakura:hover, .btn-sakura:focus {
  background: var(--sakura-deep) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(200, 62, 85, .2);
}
.btn-sakura:active {
  background: #711C2A !important;
  transform: none;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 11px 24px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition: color .3s var(--ease), border-color .3s var(--ease), background-color .3s var(--ease);
}
.btn-ghost:hover {
  color: var(--sakura);
  border-color: var(--sakura);
  background: rgba(200, 62, 85, .04);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-2);
  font-weight: 500;
  font-size: 15px;
  border-bottom: 1px solid transparent;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.text-link:hover { color: var(--sakura); border-bottom-color: var(--sakura); }
.text-link .arr { transition: transform .3s var(--ease); font-size: 18px; line-height: 1; }
.text-link:hover .arr { transform: translateX(3px); }

/* ===== ICON GRID NAVIGATION ===== */
.genre-nav-wrap {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  position: relative;
}
.genre-nav-row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  height: 84px;
  border-left: 1px solid var(--line);
}
.genre-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-right: 1px solid var(--line);
  color: var(--ink-2);
  text-decoration: none;
  transition: color .25s var(--ease);
  position: relative;
  min-width: 0;
}
.genre-item svg {
  width: 24px;
  height: 24px;
  stroke: var(--ink-2);
  stroke-width: 1.6;
  fill: none;
  transition: stroke .3s var(--ease), transform .3s var(--ease);
}
.genre-item .genre-label {
  font-size: 12px;
  letter-spacing: .05em;
}
.genre-item:hover { color: var(--ink); }
.genre-item:hover svg {
  stroke: var(--sakura);
  transform: scale(1.06);
}
.genre-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--sakura);
  transition: width .3s var(--ease);
}
.genre-item.active::after { width: 32px; }
.genre-item.active { color: var(--ink); }
.genre-item.active svg { stroke: var(--sakura); }
.genre-item.active .genre-label { font-weight: 700; color: var(--ink); }

/* ===== HEADER ===== */
.sakura-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 248, 243, .85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.top-strip {
  height: 36px;
  background: var(--paper-deep);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-2);
}
.top-strip .container-main {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-strip-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.top-strip-links a {
  color: var(--ink-2);
  font-size: 13px;
  text-decoration: none;
  transition: color .25s var(--ease);
  position: relative;
}
.top-strip-links a:hover { color: var(--sakura); }
.top-strip-side {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--ink-3);
  font-size: 12px;
}
.navbar-brand-wrap {
  padding: 20px 0;
  display: flex;
  align-items: center;
  width: 100%;
}
.logo-text {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 24px;
  color: var(--ink);
  letter-spacing: .02em;
  line-height: 1;
  white-space: nowrap;
}
.logo-text span {
  color: var(--sakura);
}
.header-search-box {
  flex: 0 0 340px;
  margin-left: 0;
}
.search-outline {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line-strong);
  padding: 4px 0;
  transition: border-color .3s var(--ease);
}
.search-outline:focus-within { border-bottom-color: var(--sakura); box-shadow: 0 2px 0 rgba(200, 62, 85, .08); }
.search-outline input {
  border: none;
  background: transparent;
  flex: 1;
  padding: 6px 0;
  font-size: 14px;
  color: var(--ink);
  outline: none;
}
.search-outline input::placeholder { color: var(--ink-3); font-size: 13px; }
.search-outline svg { width: 18px; height: 18px; stroke: var(--ink-3); stroke-width: 1.8; fill: none; margin-right: 8px; }
.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.header-icon-btn {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--ink-2);
  cursor: pointer;
  transition: background-color .25s var(--ease), color .25s var(--ease);
}
.header-icon-btn:hover { background: rgba(200, 62, 85, .08); color: var(--sakura); }
.header-icon-btn svg { width: 19px; height: 19px; stroke: currentColor; stroke-width: 1.8; fill: none; }
.navbar-toggler-custom {
  border: none;
  width: 38px;
  height: 38px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
  color: var(--ink);
  line-height: 1;
}
.navbar-toggler-custom:hover { background: rgba(200, 62, 85, .08); }

/* mobile head links */
.mobile-sections {
  display: none;
  flex-direction: column;
  background: var(--paper-deep);
  border-bottom: 1px solid var(--line);
}
.mobile-sections.open { display: flex; }
.mobile-sections a {
  padding: 14px 16px;
  font-size: 15px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-sections a:last-child { border-bottom: none; }
.mobile-sections a i { color: var(--ink-3); font-style: normal; font-size: 13px; }

/* mobile genre nav */
.mobile-genre-nav {
  display: none;
  overflow-x: auto;
  padding: 0 16px;
  margin-bottom: 12px;
  scrollbar-width: none;
}
.mobile-genre-nav::-webkit-scrollbar { display: none; }
.mobile-genre-nav .genre-slider {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
}

/* ===== HERO BENTO ===== */
.hero-zone {
  position: relative;
  padding: clamp(48px, 6vw, 80px) 0 64px;
  background: var(--paper);
}
.hero-zone::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Ccircle cx='2' cy='2' r='1.3' fill='%23C83E55' fill-opacity='0.045'/%3E%3C/svg%3E");
  background-size: 12px 12px;
  pointer-events: none;
}
.hero-zone .container-main { position: relative; z-index: 2; }
.bento-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  grid-template-rows: auto auto;
  gap: 20px;
  align-items: stretch;
}
.bento-double {
  grid-column: span 1;
  grid-row: span 2;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  background: var(--night);
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-1);
}
.bento-double img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
  transition: transform .8s var(--ease);
}
.bento-double:hover img { transform: scale(1.03); }
.bento-content {
  position: relative;
  z-index: 2;
  padding: 36px;
  width: 100%;
}
.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, .35);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  color: rgba(255, 255, 255, .9);
  margin-bottom: 18px;
  backdrop-filter: blur(4px);
  letter-spacing: .04em;
}
.main-hero-card {
  color: #fff;
}
.bento-double .h1-hero {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.6vw, 42px);
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 14px;
  color: #fff;
}
.bento-double .h1-hero .sakura-accent { color: #FFD6DA; }
.hero-desc-dark {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .82);
  max-width: 470px;
  margin-bottom: 24px;
}
.hero-dark-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.btn-white {
  background: #fff !important;
  color: var(--ink) !important;
  border-radius: var(--radius-sm);
  padding: 12px 26px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  transition: background-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.btn-white:hover { background: var(--sakura-soft) !important; color: var(--ink) !important; transform: translateY(-1px); box-shadow: var(--shadow-2); }
.hero-link-light {
  color: rgba(255,255,255,.85);
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.5);
  padding-bottom: 2px;
}
.hero-link-light:hover { color: #fff; border-color: #fff; }
.hero-micro {
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, .55);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-micro .dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,.5); }

.bento-small {
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  background: var(--paper-deep);
  border: 1px solid var(--line);
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.bento-small:hover { border-color: var(--line-strong); box-shadow: var(--shadow-1); }
.bento-small-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.bento-small-title svg {
  width: 18px; height: 18px; stroke: var(--sakura); fill: none; stroke-width: 2;
  margin-right: 8px;
}
.bento-small-title .spacer { flex: 1; }
.bento-small-title .badge-num {
  background: var(--sakura);
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-weight: 600;
}
.bento-small-text { font-size: 13px; color: var(--ink-2); margin-bottom: 14px; line-height: 1.7; }
.bento-small-list { display: flex; flex-wrap: wrap; gap: 8px; }
.bento-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 12px;
  color: var(--ink-2);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.bento-chip:hover { border-color: var(--sakura); color: var(--sakura); }
.bento-chip i { font-style: normal; color: var(--sakura); }
.bento-btn-text {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  font-size: 13px;
  color: var(--sakura);
  margin-top: 10px;
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease);
}
.bento-btn-text:hover { border-bottom-color: var(--sakura); }
.small-bento-links {
  display: flex !important;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  min-height: 40px;
  padding: 0;
  background: transparent;
  border: none;
}

/* ===== SECTION HEADER GENERIC ===== */
.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

/* ===== FEATURE ZONE ===== */
.feature-area {
  background: var(--paper);
  padding-bottom: 0;
}
.feature-grid-raw {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
}
.feature-block {
  background: var(--paper-deep);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: clamp(28px, 3vw, 40px);
}
.feature-block-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  color: var(--ink);
}
.feature-block-title .ctl {
  width: 4px;
  height: 18px;
  background: var(--sakura);
  border-radius: 2px;
  margin-right: 10px;
}
.genre-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.genre-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  font-size: 13px;
  color: var(--ink-2);
  transition: all .25s var(--ease);
  cursor: pointer;
}
.genre-tag:hover { border-color: var(--sakura); color: var(--sakura); background: rgba(200, 62, 85, .04); }
.genre-tag.hot { border-color: var(--sakura-soft); background: var(--sakura-soft); color: var(--sakura-deep); font-weight: 500; }
.letter-index-row {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.letter-index-row span {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--ink-3);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all .2s var(--ease);
}
.letter-index-row span:hover { background: var(--sakura-soft); color: var(--sakura-deep); }
.letters-more { font-size: 12px; color: var(--ink-3); display: inline-flex; align-items: center; cursor: pointer; margin-left: 6px; }
.feature-rows-vertical { display: flex; flex-direction: column; margin-top: 16px; }
.feature-vertical-item {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
  transition: padding .3s var(--ease);
}
.feature-vertical-item:last-child { border-bottom: none; }
.fv-icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.fv-icon svg { width: 20px; height: 20px; stroke: var(--sakura); fill: none; stroke-width: 1.8; }
.fv-title { font-weight: 700; font-size: 16px; margin-bottom: 4px; }
.fv-text { font-size: 13px; color: var(--ink-2); line-height: 1.7; margin: 0; }
.feature-strip-outside { margin-top: 72px; padding: 20px 0 0; border-top: 1px solid var(--line); }
.feature-strip {
  display: flex;
  align-items: center;
  background: var(--paper-deep);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  padding: 16px 0;
  overflow: hidden;
}
.feature-strip-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 20px;
  border-right: 1px solid var(--line);
}
.feature-strip-item:last-child { border-right: none; }
.feature-strip-item:last-child { border-right: none !important; }
.feature-strip-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--sakura);
  fill: none;
  stroke-width: 1.8;
  flex: 0 0 auto;
}
.feature-strip-item .fs-label { font-size: 13px; color: var(--ink-2); white-space: nowrap; font-weight: 500; }
.feature-strip-item .fs-label strong { display: block; font-size: 16px; color: var(--ink); font-weight: 700; }

/* ===== SCENE / DARK ===== */
.scene-zone {
  background: var(--night);
  padding: var(--space-section) 0;
  position: relative;
  overflow: hidden;
}
.scene-zone .bg-layer {
  position: absolute;
  inset: 0;
  opacity: .28;
  background-size: cover;
  background-position: center;
}
.scene-zone .container-main { position: relative; z-index: 3; }
.scene-head { color: #fff; }
.scene-head .section-title-serif { color: #fff; }
.scene-head .section-title-serif::before { background: #FFD6DA; }
.scene-head p { color: rgba(255, 255, 255, .7); }
.scene-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 48px;
}
.scene-item {
  border-top: 1px solid rgba(255, 255, 255, .18);
  padding-top: 28px;
  transition: border-color .3s var(--ease);
}
.scene-item:hover { border-top-color: #FFD6DA; }
.scene-item .scene-num {
  font-family: var(--font-serif);
  font-size: 14px;
  color: #FFD6DA;
  letter-spacing: .12em;
  margin-bottom: 14px;
  font-weight: 700;
}
.scene-item h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: .02em;
}
.scene-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, .68);
  margin: 0;
  line-height: 1.9;
}
.scene-note {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
}

/* ===== WEEK HOT (case area) ===== */
.showcase-zone { background: var(--paper); }
.showcase-grid-top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}
.horizontal-comic-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: flex;
  overflow: hidden;
  min-height: 200px;
  transition: box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.horizontal-comic-card:hover { border-color: var(--line-strong); box-shadow: var(--shadow-1); }
.hcc-img {
  flex: 0 0 42%;
  min-height: 100%;
  position: relative;
  overflow: hidden;
}
.hcc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform .6s var(--ease);
}
.horizontal-comic-card:hover .hcc-img img { transform: scale(1.04); }
.hcc-body {
  padding: 22px 22px 18px;
  display: flex;
  flex-direction: column;
}
.hcc-badge-line { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; flex-wrap: wrap; }
.badge-pill {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 500;
  background: var(--sakura-soft);
  color: var(--sakura-deep);
}
.badge-pill.outline { background: transparent; border: 1px solid var(--line-strong); color: var(--ink-3); }
.hcc-title { font-size: 20px; font-weight: 700; margin: 4px 0 8px; color: var(--ink); line-height: 1.4; }
.hcc-desc {
  font-size: 13px; color: var(--ink-2); line-height: 1.7;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  margin-bottom: 10px;
}
.hcc-tags { display: flex; gap: 6px; margin-top: auto; flex-wrap: wrap; }
.hcc-tag { font-size: 12px; color: var(--ink-3); background: var(--paper-deep); padding: 2px 8px; border-radius: 3px; transition: background-color .2s var(--ease), color .2s var(--ease); }
.hcc-tag:hover { background: var(--sakura-soft); color: var(--sakura-deep); }
.rate-star { color: var(--sakura); font-size: 12px; margin-right: 2px; }
.showcase-grid-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.vertical-cover-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.vertical-cover-card:hover { border-color: var(--line-strong); box-shadow: var(--shadow-1); }
.vcc-img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
  background: var(--paper-deep);
}
.vcc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.vertical-cover-card:hover .vcc-img img { transform: scale(1.035); }
.vcc-rank {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(43, 38, 32, .85);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 600;
  padding: 2px 10px;
  backdrop-filter: blur(4px);
  letter-spacing: .06em;
  z-index: 2;
}
.vcc-body { padding: 14px 16px 16px; }
.vcc-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; color: var(--ink); line-height: 1.4; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: color .25s var(--ease); }
.vertical-cover-card:hover .vcc-title { color: var(--sakura); }
.vcc-meta-line {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.pill-tiny {
  font-size: 11px;
  padding: 1px 8px;
  border-radius: var(--radius-full);
  border: 1px solid var(--line);
  color: var(--ink-3);
  background: var(--paper);
  transition: all .2s var(--ease);
}
.pill-tiny:hover { border-color: var(--sakura); color: var(--sakura); }
.rank-score {
  font-size: 12px;
  color: var(--sakura);
  font-weight: 600;
  letter-spacing: .04em;
}

/* ===== PRICING ===== */
.pricing-zone { background: #fff; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 24px;
  align-items: start;
}
.pricing-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  padding: 30px;
  position: relative;
  transition: border-color .3s var(--ease), box-shadow .35s var(--ease);
}
.pricing-card:hover { border-color: var(--line-strong); box-shadow: var(--shadow-1); }
.pricing-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 3px;
  background: transparent;
  border-radius: 0 2px 2px 0;
  transition: background-color .3s var(--ease);
}
.pricing-card:hover::before { background: var(--sakura); }
.pricing-card .feat-name {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--sakura);
  margin-bottom: 10px;
  text-transform: none;
}
.pricing-card .feat-amount {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.3;
}
.pricing-card .feat-amount small { font-size: 13px; font-weight: 400; color: var(--ink-3); margin-left: 6px; letter-spacing: .02em; }
.pricing-card .feat-desc { font-size: 13px; color: var(--ink-2); margin: 0 0 18px; }
.pricing-list { margin: 18px 0; }
.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--ink);
  padding: 6px 0;
  line-height: 1.6;
}
.pricing-list li::before {
  content: "✓";
  font-size: 13px;
  font-weight: 700;
  color: var(--success);
  flex: 0 0 16px;
  margin-top: 2px;
}
.pricing-card .btn-block-pricing {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 6px;
}
.pricing-footnote {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 24px;
  font-size: 13px;
  color: var(--ink-3);
}
.pricing-footnote .tick-item { display: inline-flex; align-items: center; gap: 5px; }
.pricing-footnote .tick-item::before { content: "✓"; color: var(--success); font-weight: 700; }

/* ===== NEWS WIRES ===== */
.news-zone { background: var(--paper-deep); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.news-grid-layout {
  display: grid;
  grid-template-columns: 1fr 48%;
  gap: 40px;
}
.newswire-list { border-top: 1px solid var(--line); margin-top: 2px; }
.news-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  gap: 18px;
  transition: padding-left .3s var(--ease);
}
.news-item:hover { padding-left: 6px; }
.news-item .news-date { font-size: 12px; color: var(--ink-3); flex: 0 0 auto; font-variant-numeric: tabular-nums; }
.news-item .news-title { font-size: 14px; color: var(--ink-2); font-weight: 500; display: flex; align-items: center; gap: 8px; }
.news-item .news-title a { color: var(--ink); font-weight: 500; }
.news-item .news-title a:hover { color: var(--sakura); }
.news-item .badge-update {
  background: var(--sakura-soft);
  color: var(--sakura-deep);
  font-size: 10px;
  font-weight: 500;
  border-radius: 3px;
  padding: 0px 5px;
  flex: 0 0 auto;
}
.news-right-side {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
}
.news-side-list { margin-top: 12px; }
.side-entry {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}
.side-entry:last-child { border-bottom: none; }
.side-thumb {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--line);
}
.side-title { font-size: 13px; font-weight: 600; color: var(--ink); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.side-meta { font-size: 11px; color: var(--ink-3); margin-top: 4px; display: flex; gap: 8px; align-items: center; }
.side-meta .hot-dot { display: inline-block; width: 5px; height: 5px; background: var(--sakura); border-radius: 50%; }

/* ===== FAQ ===== */
.faq-zone { background: var(--paper); }
.faq-wrap { max-width: 780px; }
.accordion-faq .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0 !important;
}
.accordion-faq .accordion-button {
  background: transparent;
  box-shadow: none;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  padding: 20px 0;
  border: none;
  font-family: var(--font-sans);
  transition: color .3s var(--ease);
  border-radius: 0 !important;
}
.accordion-faq .accordion-button::after {
  content: "+";
  background: none;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  width: auto;
  height: auto;
  transition: transform .35s var(--ease);
  color: var(--sakura);
}
.accordion-faq .accordion-button:not(.collapsed)::after {
  content: "+";
  transform: rotate(45deg);
}
.accordion-faq .accordion-button:not(.collapsed) {
  color: var(--sakura);
  background: transparent;
  box-shadow: none;
}
.accordion-faq .accordion-body {
  padding: 4px 0 22px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.9;
}

/* ===== CTA STRIP ===== */
.cta-zone {
  background: var(--paper-deep);
  border-top: 1px solid var(--line);
  padding: 48px 0;
}
.cta-inner {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 54px) clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-inner::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(200,62,85,.06), transparent);
  pointer-events: none;
}
.cta-label { font-size: 13px; color: var(--ink-3); margin-bottom: 8px; letter-spacing: .05em; }
.cta-title { font-family: var(--font-serif); font-size: clamp(20px,2.5vw,26px); font-weight: 700; color: var(--ink); margin: 0 0 6px; }
.cta-sub { font-size: 14px; color: var(--ink-2); margin: 0; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--ink);
  padding-top: 64px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Ccircle cx='2' cy='2' r='1' fill='white' fill-opacity='.04'/%3E%3C/svg%3E");
  background-size: 10px 10px;
  pointer-events: none;
}
.site-footer .container-main { position: relative; z-index: 2; }
.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.foot-brand { color: #fff; font-family: var(--font-serif); font-weight: 800; font-size: 20px; letter-spacing: .04em; margin-bottom: 12px; }
.foot-brand span { color: #FFD6DA; }
.footer-desc {
  font-size: 14px;
  color: var(--ink-3);
  color: #A89C8E;
  line-height: 1.8;
  max-width: 320px;
  margin-bottom: 16px;
}
.footer-col-title {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  font-weight: 500;
  letter-spacing: .08em;
  margin-bottom: 16px;
  text-transform: none;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: #CBBFB2;
  margin-bottom: 10px;
  transition: color .25s var(--ease), padding-left .25s var(--ease);
}
.footer-col a:hover { color: #fff; padding-left: 4px; }
.footer-bottom {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.4);
}
.footer-bottom .dot-group { display: flex; gap: 16px; }
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: #fff; }
.footer-compliance {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  line-height: 1.8;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 12px;
  margin-bottom: 12px;
}

/* ===== REVEAL ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ===== RESPONSIVE ===== */
@media (min-width: 1200px) {
  .container-main { max-width: 1200px; }
}
@media (min-width: 992px) {
  .desktop-visible { display: flex !important; }
}
@media (max-width: 991.98px) {
  .top-strip-links { display: none; }
  .top-strip-side { margin-left: auto; }
  .header-search-box { display: none; }
  .header-actions { display: none; }
  .navbar-toggler-custom { display: flex; }
  .navbar-brand-wrap { padding: 12px 0; justify-content: space-between; }
  .logo-text { font-size: 21px; }
  .main-hero-card .desktop-only-badge { font-size: 11px; }

  .genre-nav-wrap { display: none; }
  .genre-nav-strip { display: none !important; }

  .bento-grid { grid-template-columns: 1fr; }
  .bento-double { min-height: 360px; }
  .bento-content { padding: 28px; }

  .feature-grid-raw { grid-template-columns: 1fr; gap: 28px; }
  .feature-strip { flex-wrap: wrap; }
  .feature-strip-item { border-right: none; border-bottom: 1px solid var(--line); flex: 0 0 50%; }
  .feature-strip-item:nth-last-child(-n+2) { border-bottom: none; }

  .scene-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .scene-item { border-top-color: rgba(255,255,255,.18) !important; }
  .scene-item:nth-child(3) { grid-column: span 2; border-top: 1px solid rgba(255,255,255,.18); }

  .showcase-grid-bottom { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card:last-child { grid-column: span 2; }
  .pricing-card .btn-block-pricing { max-width: 280px; margin-left: auto; margin-right: auto; }

  .news-grid-layout { grid-template-columns: 1fr; gap: 32px; }
  .news-right-side { order: -1; }
  .footer-top-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (min-width: 769px) and (max-width: 991.98px) {
  .mobile-toggle-area { display: none; }
}

@media (max-width: 768px) {
  body { font-size: 14px; }
  .section-space { padding: 56px 0; }
  .top-strip { height: 36px; }
  .top-strip .container-main { padding: 0 16px; }
  .top-strip-side { font-size: 11px; gap: 10px; }
  .logo-text { font-size: 19px; }
  .top-strip-links { display: none; }
  .navbar-toggler-custom { display: flex; }

  .genre-nav-wrap { display: none; }

  .mobile-genre-nav { display: block; }
  .genre-chip-mini {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 76px;
    padding: 10px 6px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    color: var(--ink-2);
    font-size: 11px;
    background: #fff;
    transition: all .25s var(--ease);
    white-space: nowrap;
  }
  .genre-chip-mini svg { width: 20px; height: 20px; stroke: var(--ink-2); stroke-width: 1.8; fill: none; display: block; margin: 0 auto 2px; }
  .genre-chip-mini:hover { border-color: var(--sakura); color: var(--sakura); }
  .genre-chip-mini:hover svg { stroke: var(--sakura); }

  .bento-double { min-height: 0; border-radius: var(--radius-lg); }
  .bento-content { padding: 26px 22px; }
  .hero-zone { padding-top: 32px; }
  .bento-small { min-height: 130px; padding: 18px; }
  .bento-small-text { margin-bottom: 10px; }
  .btn-sakura { padding: 10px 18px; font-size: 14px; }
  .btn-white { padding: 10px 18px; font-size: 14px; }
  .hero-desc-dark { font-size: 14px; }
  .bento-double .h1-hero { font-size: 24px; line-height: 1.4; }

  .section-title-serif { font-size: 20px; }
  .feature-strip-item { flex: 0 0 100%; border-bottom: 1px solid var(--line); justify-content: flex-start; padding: 10px 18px; }
  .feature-strip-item:nth-last-child(1) { border-bottom: none; }
  .feature-strip { border-radius: var(--radius-md); }

  .scene-grid { grid-template-columns: 1fr; gap: 0; }
  .scene-item { grid-column: span 1 !important; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .scene-item:last-child { border-bottom: none; }
  .scene-note { font-size: 12px; flex-wrap: wrap; }

  .showcase-grid-top { grid-template-columns: 1fr; }
  .horizontal-comic-card { flex-direction: column; }
  .hcc-img { flex: 0 0 160px; position: relative; }
  .hcc-img img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
  .showcase-grid-bottom { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .vertical-cover-card:nth-child(3n) { grid-column: auto; }
  .vcc-body { padding: 12px 12px 14px; }
  .vcc-title { font-size: 14-5px; font-size: 14px; }

  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .pricing-card:last-child { grid-column: span 1; }
  .pricing-grid .btn-block-pricing { max-width: none; }

  .news-item { flex-direction: row; align-items: flex-start; gap: 12px; }
  .news-item .news-title a { font-size: 13px; display: block; }
  .news-item .badge-update { font-size: 10px; }

  .footer-top-grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .footer-left-full { grid-column: span 2; }
  .footer-desc { font-size: 13px; }
  .footer-bottom { flex-direction: column; text-align: center; justify-content: center; }
  .cta-zone { padding: 32px 0; }
  .cta-inner { flex-direction: column; align-items: flex-start; gap: 20px; padding: 24px; }
  .cta-inner .btn-sakura { width: 100%; }
}

@media (min-width: 540px) and (max-width: 768px) {
  .showcase-grid-bottom { grid-template-columns: repeat(2, 1fr); }
  .horizontal-comic-card { flex-direction: row; }
  .hcc-img { flex: 0 0 40%; min-height: auto; }
}

@media (min-width: 769px) {
  .mobile-genre-nav { display: none !important; }
  .mobile-sections { display: none !important; }
}

/* roulang page: category1 */
/* ===== SAKURA COMIC PANE · DESIGN TOKENS ===== */
:root {
  --paper: #FBF8F3;
  --paper-deep: #F2ECE3;
  --ink: #241F1A;
  --ink-2: #51483F;
  --ink-3: #8A7E71;
  --sakura: #C83E55;
  --sakura-soft: #F6D2D5;
  --sakura-deep: #8F2636;
  --line: #E3DBD0;
  --line-strong: #C4B9A9;
  --night: #2B2620;
  --success: #4D7C5F;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-full: 999px;
  --shadow-1: 0 1px 2px rgba(36,31,26,.04), 0 4px 12px rgba(36,31,26,.05);
  --shadow-2: 0 2px 4px rgba(36,31,26,.06), 0 12px 32px rgba(36,31,26,.1);
  --font-sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
  --font-serif: "Noto Serif SC", "Songti SC", "SimSun", serif;
  --space-section: clamp(64px, 8vw, 104px);
  --ease: cubic-bezier(.33, 0, .2, 1);
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink);
  background-color: var(--paper);
  -webkit-font-smoothing: antialiased;
  font-variant-east-asian: normal;
}
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--sakura); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--sakura);
  outline-offset: 2px;
}
button { font-family: inherit; }
.container-main { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== UTILITY ===== */
.section-space { padding: var(--space-section) 0; }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .12em;
  font-weight: 500;
  color: var(--sakura);
  margin-bottom: 12px;
}
.section-title-serif {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0;
  color: var(--ink);
}
.section-title-serif::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 3px;
  background: var(--sakura);
  margin-right: 10px;
  vertical-align: middle;
  border-radius: 2px;
}
.text-lead {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.8;
  max-width: 560px;
}

/* ===== BUTTON SYSTEM ===== */
.btn-sakura {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--sakura) !important;
  color: #fff !important;
  border: none;
  border-radius: var(--radius-sm) !important;
  padding: 12px 26px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
}
.btn-sakura:hover, .btn-sakura:focus {
  background: var(--sakura-deep) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(200, 62, 85, .2);
}
.btn-sakura:active {
  background: #711C2A !important;
  transform: none;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong) !important;
  border-radius: var(--radius-sm) !important;
  padding: 11px 24px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition: color .3s var(--ease), border-color .3s var(--ease), background-color .3s var(--ease);
}
.btn-ghost:hover {
  color: var(--sakura);
  border-color: var(--sakura) !important;
  background: rgba(200, 62, 85, .04);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-2);
  font-weight: 500;
  font-size: 15px;
  border-bottom: 1px solid transparent;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.text-link:hover { color: var(--sakura); border-bottom-color: var(--sakura); }
.text-link .arr { transition: transform .3s var(--ease); font-size: 18px; line-height: 1; }
.text-link:hover .arr { transform: translateX(3px); }

/* ===== HEADER ===== */
.sakura-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 248, 243, .85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.top-strip {
  border-bottom: 1px solid var(--line);
  height: 36px;
  font-size: 13px;
}
.top-strip-links a {
  color: var(--ink-2);
  margin-right: 16px;
  text-decoration: none;
  font-size: 13px;
  line-height: 1;
  transition: color .25s var(--ease);
}
.top-strip-links a:hover { color: var(--sakura); }
.top-strip-side {
  color: var(--ink-3);
  font-size: 12px;
}
.navbar-brand-wrap {
  padding: 18px 0;
  display: flex;
  align-items: center;
  width: 100%;
  gap: 20px;
}
.logo-text {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 24px;
  color: var(--ink);
  letter-spacing: .02em;
  line-height: 1;
  white-space: nowrap;
}
.logo-text span { color: var(--sakura); }
.header-search-box { flex: 0 0 340px; }
.search-outline {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--line-strong);
  padding: 4px 0;
  transition: border-color .25s var(--ease);
}
.search-outline:focus-within { border-bottom-color: var(--sakura); }
.search-outline svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--ink-3);
  stroke-width: 1.8;
  flex-shrink: 0;
}
.search-outline input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
  width: 100%;
  color: var(--ink);
  font-family: var(--font-sans);
}
.search-outline input::placeholder { color: var(--ink-3); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.header-icon-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-2);
  cursor: pointer;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.header-icon-btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}
.header-icon-btn:hover {
  color: var(--sakura);
  background: rgba(200, 62, 85, .08);
}
.navbar-toggler-custom {
  display: none;
  border: none;
  font-size: 22px;
  background: transparent;
  color: var(--ink);
  width: 38px;
  height: 38px;
  cursor: pointer;
}
.mobile-sections {
  display: none;
  padding: 0 0 12px;
  background: var(--paper);
}
.mobile-sections.show { display: block; }
.mobile-sections a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 6px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink);
}
.mobile-sections a i {
  font-style: normal;
  color: var(--ink-3);
}

/* ===== GENRE NAV ICON ROW ===== */
.genre-nav-wrap {
  width: 100%;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.genre-nav-row {
  display: flex;
  height: 78px;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  scrollbar-width: none;
}
.genre-nav-row::-webkit-scrollbar { display: none; }
.genre-item {
  flex: 0 0 auto;
  min-width: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--ink-2);
  border-right: 1px solid var(--line);
  position: relative;
  text-decoration: none;
  transition: color .25s var(--ease);
  margin: 0;
}
.genre-item svg {
  width: 23px;
  height: 23px;
  stroke: var(--ink-2);
  stroke-width: 1.6;
  fill: none;
  transition: stroke .3s var(--ease), transform .3s var(--ease);
}
.genre-item .genre-label {
  font-size: 12px;
  line-height: 1;
  letter-spacing: .02em;
}
.genre-item:hover { color: var(--ink); }
.genre-item:hover svg { stroke: var(--sakura); transform: scale(1.06); }
.genre-item.active { color: var(--ink); }
.genre-item.active svg { stroke: var(--sakura); }
.genre-item.active .genre-label { font-weight: 700; }
.genre-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--sakura);
  transition: width .3s var(--ease);
}
.genre-item.active::after { width: 32px; }

/* ===== CATEGORY HERO ===== */
.category-hero {
  border-bottom: 1px solid var(--line);
  padding: 56px 0 40px;
  background-image: radial-gradient(rgba(200,62,85,.055) 1px, transparent 1px);
  background-size: 18px 18px;
}
.crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: 24px;
}
.crumb a:hover { color: var(--sakura); }
.crumb .sep { color: var(--line-strong); margin: 0 6px; }
.category-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4.2vw, 42px);
  font-weight: 800;
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 16px;
  letter-spacing: .01em;
}
.category-hero .cat-hero-desc {
  max-width: 590px;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 28px;
}
.periodical-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--sakura-deep);
  background: var(--sakura-soft);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  letter-spacing: .08em;
  margin-bottom: 18px;
}
.cat-tools-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 14px;
  height: 100%;
}
.cat-tools-right .mini-tip {
  font-size: 12px;
  color: var(--ink-3);
  max-width: 260px;
  text-align: right;
  line-height: 1.6;
}
.view-control {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.select-quiet {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--ink-2);
  font-size: 13px;
  padding: 8px 32px 8px 14px;
  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='%23A09384' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
  line-height: 1.2;
}
.select-quiet:hover { border-color: var(--sakura); }

/* chips */
.filter-bar {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  background: var(--paper);
}
.chips-line {
  display: flex;
  overflow-x: auto;
  gap: 8px;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.chips-line::-webkit-scrollbar { display: none; }
.chip {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-full);
  background: var(--paper);
  color: var(--ink-2);
  padding: 7px 17px;
  font-size: 13px;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  transition: all .25s var(--ease);
  font-family: var(--font-sans);
}
.chip:hover {
  color: var(--sakura-deep);
  border-color: var(--sakura);
  background: rgba(200, 62, 85, .05);
}
.chip.active {
  background: var(--sakura);
  border-color: var(--sakura);
  color: #fff;
  font-weight: 500;
}
.chip-group-label {
  flex-shrink: 0;
  align-self: center;
  font-size: 13px;
  color: var(--ink-3);
  letter-spacing: .05em;
  margin-right: 4px;
}

/* card styles */
.wide-comic-card {
  display: flex;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.wide-comic-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-1);
}
.wide-comic-card .card-img-holder {
  flex: 0 0 44%;
  max-width: 44%;
  overflow: hidden;
  background: var(--paper-deep);
  position: relative;
}
.wide-comic-card .card-img-holder img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease);
}
.wide-comic-card:hover .card-img-holder img { transform: scale(1.025); }
.wide-comic-card .card-body {
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.badge-row { display: flex; flex-wrap: wrap; gap: 6px; }
.tag-badge {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  line-height: 1;
  background: var(--sakura-soft);
  color: var(--sakura-deep);
  border-radius: var(--radius-full);
  padding: 4px 11px;
}
.status-badge {
  font-size: 12px;
  line-height: 1;
  border: 1px solid var(--line-strong);
  color: var(--ink-2);
  border-radius: var(--radius-full);
  padding: 4px 11px;
  background: var(--paper);
}
.score-note {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 700;
}
.score-note svg {
  width: 14px;
  height: 14px;
  fill: #D49B6A;
  stroke: #D49B6A;
}
.card-name {
  font-family: var(--font-serif);
  font-size: 23px;
  font-weight: 700;
  line-height: 1.35;
}
.card-synopsis {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 2px;
}
.comic-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: var(--ink-3);
}

/* compact cards */
.cover-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.cover-card:hover { border-color: var(--line-strong); box-shadow: var(--shadow-1); }
.cover-img-holder {
  aspect-ratio: 4 / 4.6;
  overflow: hidden;
  background: var(--paper-deep);
  position: relative;
}
.cover-img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.cover-card:hover .cover-img-holder img { transform: scale(1.04); }
.cover-card .cover-info {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cover-card .cover-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--ink);
}
.cover-card:hover .cover-name { color: var(--sakura); }
.cover-desc {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cover-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2px;
}

/* editorial band */
.editorial-band {
  border: 1px solid var(--line);
  background: var(--night);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.editorial-band .band-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  min-height: 0;
}
.editorial-img {
  position: relative;
  min-height: 280px;
}
.editorial-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.editorial-body {
  padding: clamp(26px, 4vw, 52px);
  color: #EFE7DC;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  align-items: flex-start;
}
.editorial-body .editor-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-full);
  padding: 5px 14px;
  color: #D9C9BA;
  font-size: 12px;
  letter-spacing: .12em;
}
.editorial-body h3 {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
  color: #fff;
}
.editorial-body p {
  color: #CBBFB2;
  font-size: 14px;
  line-height: 1.9;
  margin: 0;
}
.editorial-body .btn-light-sakura {
  background: rgba(200, 62, 85, .16);
  color: #ffd8dd;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  padding: 9px 20px;
  font-size: 14px;
  transition: all .3s var(--ease);
}
.editorial-body .btn-light-sakura:hover {
  background: rgba(200, 62, 85, .3);
  color: #fff;
  border-color: rgba(255,255,255,.3);
}

/* pagination */
.pagination-sakura {
  display: flex;
  justify-content: center;
  gap: 4px;
  align-items: center;
  margin-top: 52px;
}
.pagination-sakura a,
.pagination-sakura span {
  min-width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--ink-2);
  font-size: 14px;
  padding: 0 6px;
  transition: all .25s var(--ease);
}
.pagination-sakura a:hover {
  border-color: var(--sakura);
  color: var(--sakura);
  background: rgba(200, 62, 85, .04);
}
.pagination-sakura .active-page {
  background: var(--sakura);
  border-color: var(--sakura);
  color: #fff;
  font-weight: 500;
}
.pagination-sakura .disabled-link {
  opacity: .4;
  pointer-events: none;
}

/* category SEO + guide */
.duotone-block {
  background: var(--paper-deep);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 64px);
  margin-top: 32px;
}
.duo-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
}
.guide-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}
.guide-body {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.9;
}
.guide-body p { margin-bottom: 14px; }
.guide-question {
  border-bottom: 1px solid var(--line);
  padding: 17px 0;
}
.guide-question:last-child { border-bottom: none; }
.guide-question h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  display: flex;
  gap: 8px;
}
.guide-question h4 span { color: var(--sakura); }
.guide-question p {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

/* bottom CTA */
.bottom-cta {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 52px 0;
  background-image: radial-gradient(rgba(200,62,85,.05) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
}
.cta-narrow {
  background: #fff8F0;
  border-radius: var(--radius-lg);
  padding: clamp(30px, 4vw, 56px);
  box-shadow: var(--shadow-1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-narrow h2 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.6vw, 30px);
  margin: 0 0 8px;
}
.cta-narrow p {
  margin: 0;
  color: var(--ink-2);
  max-width: 520px;
  font-size: 14px;
}

/* reveal */
.reveal {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: no-preference) {
  .reveal-init {
    opacity: 0;
    transform: translateY(14px);
  }
  .reveal-init.in-view {
    transition: opacity .7s var(--ease), transform .7s var(--ease);
    opacity: 1;
    transform: none;
  }
}

/* footer */
.site-footer {
  background: var(--night);
  color: #CBBFB2;
  margin-top: 0;
}
.footer-top-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 44px;
  padding: 64px 0 48px;
}
.footer-brand-foot {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
}
.footer-brand-foot span { color: #F096A5; }
.footer-desc { color: #CBBFB2; font-size: 14px; line-height: 1.85; margin-top: 14px; }
.footer-col h4 {
  color: #E6D9CD;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .06em;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: #B9AB9D;
  font-size: 13px;
  padding: 5px 0;
  transition: color .25s var(--ease);
}
.footer-col a:hover { color: #fff; }
.footer-compliance {
  border-top: 1px solid rgba(255,255,255,.09);
  padding: 22px 0;
  font-size: 12px;
  color: #918477;
  line-height: 1.7;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.09);
  padding: 22px 0 34px;
  font-size: 12px;
  color: #8D8073;
}
.footer-bottom a { color: #CBBFB2; }
.footer-bottom a:hover { color: #fff; }
.dot-group { display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap; }

/* responsive */
@media (max-width: 991.98px) {
  .header-search-box { display: none; }
  .category-hero { padding-top: 44px; }
  .cat-tools-right { align-items: flex-start; text-align: left; margin-top: 20px; }
  .cat-tools-right .mini-tip { text-align: left; }
  .editorial-band .band-grid { grid-template-columns: 1fr; }
  .editorial-img { min-height: 240px; }
  .footer-top-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .duo-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 767.98px) {
  .top-strip-links a:nth-child(n+4) { display: none; }
  .top-strip-side { display: none; }
  .navbar-brand-wrap { padding: 14px 0; flex-wrap: wrap; }
  .header-actions { margin-left: auto; }
  .header-actions .header-icon-btn, .header-actions .btn-sakura { display: none; }
  .navbar-toggler-custom { display: inline-flex; align-items: center; justify-content: center; margin-left: 0; }
  .mobile-sections.show { display: block; }
  .category-hero h1 { font-size: 27px; }
  .wide-comic-card { flex-direction: column; }
  .wide-comic-card .card-img-holder { flex: none; max-width: 100%; }
  .wide-comic-card .card-img-holder img { min-height: 0; aspect-ratio: 16/9; }
  .footer-top-grid { grid-template-columns: 1fr; padding: 48px 0 32px; }
  .cta-narrow { flex-direction: column; align-items: flex-start; }
  .duotone-block { padding: 26px 22px; }
}
@media (max-width: 520px) {
  .top-strip-links a { margin-right: 12px; }
  .genre-item { min-width: 76px; }
  .filter-bar { padding: 14px 0; }
  .chip { padding: 6px 13px; }
  .pagination-sakura span.extra-page { display: none; }
}

/* roulang: framework shim */
/* 覆盖 Bootstrap 等对 a/btn 的全局默认，避免导航出现下划线/蓝链 */
.site-header a,.site-header a:hover,.navbar a,.navbar a:hover,.nav-links a,.nav-links a:hover,header nav a,header nav a:hover{text-decoration:none}
.site-header .btn,.navbar .btn,.nav-cta{text-decoration:none}
