:root {
    --ink: #262330;
    --muted: #777180;
    --pink: #ff4f87;
    --pink-dark: #e63d73;
    --blush: #fff2f6;
    --cream: #fffaf6;
    --line: #eee7eb;
    --white: #ffffff;
    --shadow: 0 18px 50px rgba(73, 44, 58, 0.10);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: #fffdfd;
    font-family: "Microsoft YaHei", "PingFang SC", system-ui, sans-serif;
    line-height: 1.7;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image: radial-gradient(circle at 10% 5%, rgba(255, 79, 135, .07), transparent 28%), radial-gradient(circle at 90% 30%, rgba(139, 108, 255, .06), transparent 24%);
    content: "";
    pointer-events: none;
}

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

img {
    display: block;
    max-width: 100%;
    object-fit: cover;
}

svg {
    width: 1.15em;
    height: 1.15em;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.shell {
    width: min(1200px, calc(100% - 40px));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(238, 231, 235, .9);
    background: rgba(255, 253, 253, .94);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    min-height: 78px;
    align-items: center;
    gap: 28px;
}

.brand,
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    display: grid;
    width: 46px;
    aspect-ratio: 1;
    place-items: center;
    border-radius: 15px 15px 15px 5px;
    color: #fff;
    background: linear-gradient(135deg, #ff4f87, #ff7ca4);
    box-shadow: 0 10px 22px rgba(255, 79, 135, .28);
    font-size: 22px;
    font-weight: 900;
}

.brand-copy {
    display: grid;
    line-height: 1.25;
    white-space: nowrap;
}

.brand-copy strong {
    font-size: 18px;
}

.brand-copy small {
    color: var(--muted);
    font-size: 11px;
    letter-spacing: .2em;
}

.main-nav {
    display: flex;
    margin-left: auto;
    align-items: center;
    gap: 4px;
}

.nav-link {
    display: flex;
    padding: 9px 10px;
    align-items: center;
    gap: 5px;
    border-radius: 12px;
    color: #5e5866;
    font-size: 13px;
    white-space: nowrap;
    transition: .2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--pink-dark);
    background: var(--blush);
}

.menu-button {
    display: none;
    margin-left: auto;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    color: var(--ink);
}

.hero {
    display: grid;
    min-height: 600px;
    margin-top: 54px;
    padding: 72px 74px;
    grid-template-columns: 1.08fr .92fr;
    align-items: center;
    gap: 70px;
    overflow: hidden;
    border: 1px solid #f4e4ea;
    border-radius: 36px;
    background: linear-gradient(135deg, #fff7fa 0%, #fff 52%, #f7f3ff 100%);
    box-shadow: var(--shadow);
}

.hero-copy h1 {
    max-width: 620px;
    margin: 18px 0;
    font-size: clamp(40px, 5.2vw, 68px);
    line-height: 1.12;
    letter-spacing: -.05em;
}

.hero-copy h1 a {
    background: linear-gradient(120deg, #23202b 20%, #e43e76 78%);
    -webkit-background-clip: text;
    color: transparent;
}

.hero-copy > p {
    max-width: 590px;
    margin: 0 0 30px;
    color: var(--muted);
    font-size: 17px;
}

.hero-pill,
.hero-pill span,
.button,
.text-link,
.text-link span {
    display: inline-flex;
    align-items: center;
}

.hero-pill {
    gap: 8px;
    color: var(--pink-dark);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
}

.hero-actions,
.app-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.button {
    min-height: 50px;
    padding: 0 22px;
    justify-content: center;
    gap: 9px;
    border-radius: 14px;
    font-weight: 700;
    transition: transform .2s ease, box-shadow .2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button.primary {
    color: #fff;
    background: linear-gradient(135deg, var(--pink), #f76b91);
    box-shadow: 0 12px 24px rgba(255, 79, 135, .24);
}

.button.secondary,
.button.light {
    border: 1px solid var(--line);
    background: #fff;
}

.button.dark {
    color: #fff;
    background: var(--ink);
}

.hero-stats {
    display: flex;
    margin: 38px 0 0;
    padding: 0;
    gap: 34px;
    list-style: none;
}

.hero-stats li {
    display: grid;
}

.hero-stats strong {
    font-size: 22px;
}

.hero-stats span {
    color: var(--muted);
    font-size: 12px;
}

.hero-art {
    position: relative;
    min-height: 430px;
}

.hero-main-cover {
    position: absolute;
    inset: 0 36px 0 28px;
    overflow: hidden;
    border: 9px solid #fff;
    border-radius: 30px;
    transform: rotate(3deg);
    box-shadow: 0 26px 70px rgba(76, 54, 69, .2);
}

.hero-main-cover img {
    width: 100%;
    height: 100%;
}

.floating-note {
    position: absolute;
    z-index: 2;
    display: flex;
    padding: 12px 16px;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 14px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 12px 30px rgba(50,30,42,.15);
    font-size: 12px;
    font-weight: 700;
}

.note-one {
    top: 32px;
    left: -6px;
    color: var(--pink-dark);
}

.note-two {
    right: 0;
    bottom: 44px;
    color: #6f56d9;
}

.quick-strip {
    display: grid;
    margin-top: 34px;
    padding: 24px;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fff;
}

.quick-strip > a {
    display: flex;
    padding: 10px 18px;
    align-items: center;
    gap: 13px;
    border-right: 1px solid var(--line);
}

.quick-strip > a:last-child {
    border-right: 0;
}

.quick-strip svg {
    flex: 0 0 24px;
    color: var(--pink);
    font-size: 24px;
}

.quick-strip span {
    display: grid;
}

.quick-strip small {
    color: var(--muted);
}

.content-section {
    margin-top: 110px;
    scroll-margin-top: 110px;
}

.content-section.tinted {
    width: 100%;
    padding: 90px 0;
    background: linear-gradient(135deg, #fff5f8, #f9f6ff);
}

.section-heading {
    display: flex;
    margin-bottom: 34px;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
}

.section-heading h2,
.about-copy h2,
.app-copy h2 {
    margin: 4px 0 7px;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.25;
}

.section-heading p {
    max-width: 680px;
    margin: 0;
    color: var(--muted);
}

.eyebrow {
    color: var(--pink-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
}

.text-link {
    flex: 0 0 auto;
    gap: 8px;
    color: var(--pink-dark);
    font-weight: 700;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    position: relative;
    display: flex;
    min-height: 260px;
    padding: 28px;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    transition: .25s ease;
}

.category-card::after {
    position: absolute;
    right: -35px;
    bottom: -55px;
    width: 130px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent) 13%, white);
    content: "";
}

.category-card:hover {
    border-color: color-mix(in srgb, var(--accent) 45%, white);
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.category-icon {
    display: grid;
    width: 52px;
    aspect-ratio: 1;
    place-items: center;
    border-radius: 16px;
    color: var(--accent);
    background: color-mix(in srgb, var(--accent) 12%, white);
    font-size: 25px;
}

.category-card h3 {
    margin: 18px 0 4px;
}

.category-card p {
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 14px;
}

.category-more {
    display: flex;
    margin-top: auto;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
}

.spotlight {
    display: grid;
    min-height: 480px;
    grid-template-columns: 1.15fr .85fr;
    overflow: hidden;
    border-radius: 30px;
    color: #fff;
    background: #282333;
    box-shadow: var(--shadow);
}

.spotlight > img {
    width: 100%;
    height: 100%;
}

.spotlight-copy {
    display: flex;
    padding: 50px;
    flex-direction: column;
    justify-content: center;
}

.spotlight-copy h3 {
    margin: 8px 0 14px;
    font-size: 34px;
}

.spotlight-copy p {
    color: #d4cfda;
}

.story-facts {
    display: grid;
    margin: 24px 0 30px;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.story-facts div {
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255,255,255,.07);
}

.story-facts dt {
    color: #aaa2b4;
    font-size: 11px;
}

.story-facts dd {
    margin: 0;
    font-size: 13px;
}

.comic-grid {
    display: grid;
    gap: 22px;
}

.comic-grid.four {
    grid-template-columns: repeat(4, 1fr);
}

.comic-grid.category-five {
    grid-template-columns: repeat(5, 1fr);
}

.comic-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    transition: .25s ease;
}

.comic-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.cover-link {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.cover-link img {
    width: 100%;
    height: 100%;
    transition: transform .4s ease;
}

.comic-card:hover img {
    transform: scale(1.03);
}

.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 9px;
    border-radius: 30px;
    color: #fff;
    background: rgba(39, 31, 44, .78);
    backdrop-filter: blur(8px);
    font-size: 11px;
}

.card-body {
    padding: 18px;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    color: var(--pink-dark);
    font-size: 11px;
}

.card-body h3 {
    margin: 6px 0;
    font-size: 18px;
    line-height: 1.35;
}

.card-body p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 13px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.ranking-panel {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 26px;
}

.ranking-list {
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fff;
    list-style: none;
}

.ranking-list li {
    display: grid;
    padding: 16px 20px;
    grid-template-columns: 50px 72px 1fr;
    align-items: center;
    gap: 18px;
    border-bottom: 1px solid var(--line);
}

.ranking-list li:last-child {
    border-bottom: 0;
}

.ranking-list img {
    width: 72px;
    aspect-ratio: 4 / 5;
    border-radius: 10px;
}

.rank-number {
    color: #d9cfd4;
    font-family: Georgia, serif;
    font-size: 30px;
    font-weight: 700;
}

.ranking-list li:first-child .rank-number {
    color: var(--pink);
}

.ranking-list h3,
.ranking-list p {
    margin: 0;
}

.ranking-list p {
    overflow: hidden;
    color: var(--muted);
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ranking-list div > span {
    color: var(--pink-dark);
    font-size: 11px;
}

.ranking-aside {
    display: flex;
    padding: 34px;
    flex-direction: column;
    justify-content: center;
    border-radius: 24px;
    color: #fff;
    background: linear-gradient(145deg, #322d3b, #4e3d50);
}

.ranking-aside > svg {
    color: #ffd36d;
    font-size: 46px;
}

.ranking-aside h3 {
    margin: 18px 0 4px;
    font-size: 26px;
}

.ranking-aside p {
    color: #d8d1dc;
}

.feature-row {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 22px;
}

.feature-large {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-radius: 26px;
}

.feature-large::after {
    position: absolute;
    inset: 35% 0 0;
    background: linear-gradient(transparent, rgba(20,14,24,.88));
    content: "";
}

.feature-large > img {
    width: 100%;
    height: 100%;
}

.feature-large > div {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    padding: 34px;
    color: #fff;
}

.feature-large h3 {
    margin: 5px 0;
    font-size: 30px;
}

.feature-large p {
    margin: 0;
    color: #e7e1e9;
}

.feature-stack {
    display: grid;
    gap: 16px;
}

.feature-stack article {
    display: grid;
    padding: 14px;
    grid-template-columns: 138px 1fr;
    align-items: center;
    gap: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
}

.feature-stack img {
    width: 138px;
    height: 132px;
    border-radius: 12px;
}

.feature-stack span {
    color: var(--pink-dark);
    font-size: 11px;
}

.feature-stack h3,
.feature-stack p {
    margin: 3px 0;
}

.feature-stack p {
    display: -webkit-box;
    overflow: hidden;
    color: var(--muted);
    font-size: 12px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.timeline {
    position: relative;
    display: grid;
}

.timeline::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 106px;
    width: 1px;
    background: #f0d6df;
    content: "";
}

.timeline > a {
    position: relative;
    display: grid;
    padding: 18px 20px;
    grid-template-columns: 70px 16px 1fr 24px;
    align-items: center;
    gap: 18px;
    border-bottom: 1px solid var(--line);
}

.timeline > a:hover {
    border-radius: 14px;
    background: var(--blush);
}

.timeline time {
    font-size: 13px;
    font-weight: 800;
}

.timeline-dot {
    z-index: 1;
    width: 12px;
    aspect-ratio: 1;
    border: 3px solid #fff;
    border-radius: 50%;
    background: var(--pink);
    box-shadow: 0 0 0 1px #f0c7d5;
}

.timeline h3,
.timeline p {
    margin: 0;
}

.timeline p {
    color: var(--muted);
    font-size: 13px;
}

.mood-grid,
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.mood-grid a {
    display: flex;
    min-height: 260px;
    padding: 26px;
    flex-direction: column;
    border-radius: 22px;
    color: #fff;
    background: linear-gradient(145deg, #fd6b9b, #db4e7d);
}

.mood-grid a:nth-child(2) {
    background: linear-gradient(145deg, #ef825f, #c84f42);
}

.mood-grid a:nth-child(3) {
    background: linear-gradient(145deg, #7f73dd, #4f56a8);
}

.mood-grid a:nth-child(4) {
    background: linear-gradient(145deg, #44b88a, #22816d);
}

.mood-grid a > span {
    font-size: 30px;
}

.mood-grid h3 {
    margin: 36px 0 4px;
}

.mood-grid p {
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: 13px;
}

.mood-grid strong {
    margin-top: auto;
    font-size: 13px;
}

.completed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.completed-grid article {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
}

.completed-cover {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.completed-cover img {
    width: 100%;
    height: 100%;
}

.completed-cover span {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 5px 10px;
    border-radius: 20px;
    color: #fff;
    background: #288d6e;
    font-size: 11px;
}

.completed-grid article > div:last-child {
    padding: 22px;
}

.completed-grid h3,
.completed-grid p {
    margin: 0 0 6px;
}

.completed-grid p,
.completed-grid small {
    color: var(--muted);
    font-size: 13px;
}

.benefit-grid article {
    padding: 30px;
    border: 1px solid rgba(255,255,255,.8);
    border-radius: 20px;
    background: rgba(255,255,255,.72);
}

.benefit-grid article > span {
    display: grid;
    width: 48px;
    aspect-ratio: 1;
    place-items: center;
    border-radius: 14px;
    color: var(--pink-dark);
    background: var(--blush);
    font-size: 23px;
}

.benefit-grid h3 {
    margin: 18px 0 5px;
}

.benefit-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.guide-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 24px;
}

.guide-main {
    display: flex;
    padding: 42px;
    flex-direction: column;
    justify-content: center;
    border-radius: 24px;
    color: #fff;
    background: #2c2733;
}

.guide-main h3 {
    margin: 10px 0;
    font-size: 30px;
}

.guide-main p {
    color: #d4cdd8;
}

.guide-main .text-link {
    color: #ff8eb1;
}

.guide-tips {
    display: grid;
    gap: 14px;
}

.guide-tips article {
    display: grid;
    padding: 24px;
    grid-template-columns: 54px 1fr;
    align-items: center;
    gap: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
}

.guide-tips article > strong {
    color: #f3c4d3;
    font-family: Georgia, serif;
    font-size: 30px;
}

.guide-tips h3,
.guide-tips p {
    margin: 0;
}

.guide-tips p {
    color: var(--muted);
    font-size: 13px;
}

.about-section {
    display: grid;
    padding: 64px;
    grid-template-columns: .8fr 1.2fr;
    align-items: center;
    gap: 70px;
    border-radius: 30px;
    background: linear-gradient(135deg, #fff1f5, #f4efff);
}

.about-visual {
    position: relative;
    display: grid;
    min-height: 350px;
    place-items: center;
}

.about-mark {
    display: grid;
    width: 210px;
    aspect-ratio: 1;
    place-items: center;
    border-radius: 50% 50% 50% 20%;
    color: #fff;
    background: linear-gradient(145deg, var(--pink), #916de5);
    box-shadow: 0 25px 55px rgba(116, 75, 113, .2);
    font-size: 92px;
    font-weight: 900;
}

.mini-card {
    position: absolute;
    padding: 9px 14px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(80, 52, 71, .12);
    font-size: 12px;
    font-weight: 700;
}

.card-a { top: 28px; left: 0; }
.card-b { top: 80px; right: 0; }
.card-c { bottom: 22px; left: 25px; }

.about-copy p {
    color: var(--muted);
}

.about-points {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.about-points span {
    padding: 6px 12px;
    border-radius: 20px;
    color: var(--pink-dark);
    background: #fff;
    font-size: 12px;
}

.app-section {
    display: grid;
    margin-top: 110px;
    margin-bottom: 80px;
    padding: 60px 70px;
    grid-template-columns: 1fr 220px;
    align-items: center;
    gap: 80px;
    border-radius: 30px;
    color: #fff;
    background: linear-gradient(125deg, #302a39, #493846 58%, #7c435f);
    overflow: hidden;
}

.app-copy p {
    max-width: 690px;
    color: #d8d1dc;
}

.app-actions small {
    color: #bfb6c4;
}

.brand-qr {
    position: relative;
    display: grid;
    width: 190px;
    aspect-ratio: 1;
    place-items: center;
    border: 12px solid #fff;
    border-radius: 22px;
    color: var(--pink);
    background: repeating-conic-gradient(#2f2937 0 25%, #fff 0 50%) 0 / 24px 24px;
    overflow: hidden;
}

.brand-qr > span {
    display: grid;
    z-index: 1;
    width: 72px;
    aspect-ratio: 1;
    place-items: center;
    border: 8px solid #fff;
    border-radius: 18px;
    color: #fff;
    background: var(--pink);
    font-size: 34px;
    font-weight: 900;
}

.brand-qr strong {
    position: absolute;
    right: 22px;
    bottom: 6px;
    left: 22px;
    padding: 2px;
    color: #fff;
    background: #2f2937;
    text-align: center;
    font-size: 10px;
}

.site-footer {
    padding: 60px 0 24px;
    color: #e7e1e9;
    background: #211d27;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 70px;
}

.footer-brand {
    align-items: flex-start;
}

.footer-brand p {
    max-width: 350px;
    margin: 5px 0;
    color: #a79fae;
    font-size: 13px;
}

.site-footer h2 {
    margin: 0 0 14px;
    font-size: 15px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 7px;
}

.footer-links a {
    color: #aaa2b0;
    font-size: 13px;
}

.footer-links a:hover {
    color: #fff;
}

.copyright {
    margin-top: 44px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.08);
    color: #77717e;
    font-size: 12px;
}

.inner-main {
    padding-top: 42px;
    padding-bottom: 90px;
}

.breadcrumb {
    display: flex;
    margin-bottom: 28px;
    align-items: center;
    gap: 9px;
    color: var(--muted);
    font-size: 13px;
}

.breadcrumb strong {
    color: var(--ink);
}

.category-hero {
    display: flex;
    min-height: 300px;
    padding: 54px 64px;
    align-items: center;
    gap: 34px;
    border-radius: 30px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 13%, white), #fff);
    box-shadow: var(--shadow);
}

.category-icon.large {
    flex: 0 0 90px;
    width: 90px;
    border-radius: 25px;
    font-size: 42px;
}

.category-hero h1 {
    margin: 3px 0;
    font-size: 44px;
}

.category-hero p {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
}

.category-stats {
    display: flex;
    margin-top: 18px;
    gap: 9px;
    flex-wrap: wrap;
}

.category-stats span {
    padding: 5px 11px;
    border-radius: 18px;
    color: var(--accent);
    background: rgba(255,255,255,.8);
    font-size: 11px;
    font-weight: 700;
}

.category-content {
    margin-top: 80px;
}

.category-five .card-body p {
    display: none;
}

.category-five .card-body h3 {
    font-size: 16px;
}

.channel-note {
    display: grid;
    margin-top: 80px;
    padding: 36px 42px;
    grid-template-columns: 260px 1fr;
    align-items: center;
    gap: 40px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--cream);
}

.channel-note > div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.channel-note h2,
.channel-note p {
    margin: 0;
}

.channel-note svg {
    color: var(--pink);
    font-size: 26px;
}

.channel-note p {
    color: var(--muted);
    font-size: 14px;
}

.article-shell {
    max-width: 1040px;
}

.reader-article {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--shadow);
}

.article-header {
    padding: 58px 70px 44px;
    text-align: center;
    background: linear-gradient(135deg, #fff4f7, #f8f5ff);
}

.article-header h1 {
    margin: 8px 0 14px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.25;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 12px;
}

.reading-notice {
    display: flex;
    margin: 34px 56px;
    padding: 22px 26px;
    gap: 16px;
    border-left: 4px solid var(--pink);
    border-radius: 14px;
    background: var(--blush);
}

.reading-notice > span {
    color: var(--pink);
    font-size: 25px;
}

.reading-notice h2,
.reading-notice p {
    margin: 0;
}

.reading-notice h2 {
    font-size: 16px;
}

.reading-notice p {
    color: var(--muted);
    font-size: 13px;
}

.chapter-nav {
    display: grid;
    margin: 36px 56px;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 14px;
}

.chapter-nav a {
    padding: 11px 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 12px;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 12px;
}

.chapter-nav a:last-child {
    color: #fff;
    border-color: var(--pink);
    background: var(--pink);
}

.chapter-list {
    color: var(--pink-dark);
}

.chapter-story {
    padding: 10px 56px 20px;
}

.chapter-story > h2 {
    margin: 30px 0 12px;
    text-align: center;
}

.chapter-story > p {
    max-width: 760px;
    margin: 26px auto;
    color: #5f5965;
    font-size: 15px;
    text-indent: 2em;
}

.reader-page {
    max-width: 820px;
    margin: 28px auto;
    overflow: hidden;
    border-radius: 16px;
    background: #f6f1f3;
}

.reader-page img {
    width: 100%;
    aspect-ratio: 5 / 7;
}

.reader-page figcaption {
    padding: 9px 14px;
    color: var(--muted);
    text-align: center;
    font-size: 11px;
}

.chapter-end {
    margin: 40px 56px;
    padding: 42px;
    border-radius: 20px;
    background: var(--cream);
    text-align: center;
}

.chapter-end > svg {
    color: #28a879;
    font-size: 38px;
}

.chapter-end h2 {
    margin: 10px 0 4px;
}

.chapter-end p {
    max-width: 650px;
    margin: auto;
    color: var(--muted);
    font-size: 13px;
}

@media (max-width: 1100px) {
    .header-inner {
        min-height: 70px;
    }

    .menu-button {
        display: grid;
        place-items: center;
    }

    .main-nav {
        position: absolute;
        top: 70px;
        right: 20px;
        left: 20px;
        display: none;
        padding: 14px;
        grid-template-columns: repeat(3, 1fr);
        border: 1px solid var(--line);
        border-radius: 18px;
        background: #fff;
        box-shadow: var(--shadow);
    }

    .main-nav.open {
        display: grid;
    }

    .nav-link {
        justify-content: center;
    }

    .hero {
        padding: 58px 48px;
        gap: 35px;
    }

    .comic-grid.category-five {
        grid-template-columns: repeat(4, 1fr);
    }

    .comic-grid.category-five .comic-card:last-child {
        grid-column: span 4;
        display: grid;
        grid-template-columns: 200px 1fr;
    }

    .comic-grid.category-five .comic-card:last-child .cover-link {
        aspect-ratio: 1;
    }
}

@media (max-width: 820px) {
    .shell {
        width: min(100% - 28px, 1200px);
    }

    .hero {
        min-height: auto;
        margin-top: 28px;
        padding: 46px 28px;
        grid-template-columns: 1fr;
    }

    .hero-art {
        min-height: 430px;
    }

    .quick-strip,
    .category-grid,
    .comic-grid.four,
    .mood-grid,
    .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-strip > a:nth-child(2) {
        border-right: 0;
    }

    .spotlight,
    .ranking-panel,
    .feature-row,
    .guide-layout,
    .about-section,
    .app-section,
    .channel-note {
        grid-template-columns: 1fr;
    }

    .spotlight > img {
        max-height: 430px;
    }

    .completed-grid {
        grid-template-columns: 1fr;
    }

    .about-section,
    .app-section {
        padding: 46px 34px;
    }

    .brand-qr {
        margin: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .comic-grid.category-five {
        grid-template-columns: repeat(2, 1fr);
    }

    .comic-grid.category-five .comic-card:last-child {
        grid-column: span 2;
    }

    .category-hero {
        padding: 42px 34px;
    }
}

@media (max-width: 560px) {
    .brand-copy small {
        display: none;
    }

    .main-nav {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero {
        border-radius: 24px;
    }

    .hero-copy h1 {
        font-size: 40px;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-stats {
        justify-content: space-between;
        gap: 10px;
    }

    .hero-art {
        min-height: 340px;
    }

    .hero-main-cover {
        right: 18px;
        left: 18px;
    }

    .quick-strip,
    .category-grid,
    .comic-grid.four,
    .mood-grid,
    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .quick-strip > a {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .quick-strip > a:last-child {
        border-bottom: 0;
    }

    .content-section {
        margin-top: 78px;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .spotlight-copy {
        padding: 32px 24px;
    }

    .story-facts {
        grid-template-columns: 1fr;
    }

    .ranking-list li {
        padding: 12px;
        grid-template-columns: 34px 60px 1fr;
        gap: 10px;
    }

    .ranking-list img {
        width: 60px;
    }

    .ranking-list p {
        display: none;
    }

    .feature-stack article {
        grid-template-columns: 110px 1fr;
    }

    .feature-stack img {
        width: 110px;
        height: 110px;
    }

    .timeline::before {
        left: 78px;
    }

    .timeline > a {
        padding-inline: 4px;
        grid-template-columns: 55px 12px 1fr 18px;
        gap: 10px;
    }

    .about-section,
    .app-section {
        padding: 38px 22px;
    }

    .about-mark {
        width: 170px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .category-hero {
        padding: 34px 24px;
        align-items: flex-start;
        flex-direction: column;
    }

    .category-hero h1 {
        font-size: 36px;
    }

    .comic-grid.category-five {
        grid-template-columns: 1fr;
    }

    .comic-grid.category-five .comic-card:last-child {
        grid-column: auto;
        display: block;
    }

    .comic-grid.category-five .comic-card:last-child .cover-link {
        aspect-ratio: 3 / 4;
    }

    .article-header {
        padding: 42px 20px 32px;
    }

    .reading-notice,
    .chapter-nav,
    .chapter-end {
        margin-right: 18px;
        margin-left: 18px;
    }

    .chapter-story {
        padding-right: 18px;
        padding-left: 18px;
    }

    .chapter-nav {
        grid-template-columns: 1fr 1fr;
    }

    .chapter-nav .chapter-list {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .chapter-nav a {
        white-space: normal;
    }
}
