:root {
    --ink: #101a2f;
    --muted: #667085;
    --paper: #f6f8fc;
    --surface: #ffffff;
    --line: #dfe5ee;
    --navy: #111f3d;
    --cyan: #16c5c7;
    --orange: #ff7657;
    --violet: #7a67e8;
    --pink: #ec5f8e;
    --blue: #3f7ff0;
    --green: #39a875;
    --red: #ef5350;
    --shadow: 0 18px 50px rgba(27, 43, 76, 0.10);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Microsoft YaHei", "PingFang SC", system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

button {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(223, 229, 238, 0.86);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 12px;
}

.brand-mark {
    position: relative;
    display: flex;
    width: 44px;
    height: 44px;
    padding: 9px 7px;
    border-radius: 14px;
    background: var(--navy);
    box-shadow: 0 8px 20px rgba(17, 31, 61, 0.2);
}

.brand-mark::after {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 2px;
    height: 28px;
    background: var(--cyan);
    content: "";
    transform: translateX(-50%);
}

.brand-panel {
    width: 50%;
    border: 2px solid #ffffff;
}

.brand-panel-left {
    border-right: 0;
    border-radius: 6px 0 0 6px;
    transform: skewY(7deg);
}

.brand-panel-right {
    border-left: 0;
    border-radius: 0 6px 6px 0;
    transform: skewY(-7deg);
}

.brand-copy {
    display: grid;
    line-height: 1.1;
}

.brand-copy strong {
    font-size: 1.12rem;
    letter-spacing: 0.08em;
}

.brand-copy small {
    margin-top: 5px;
    color: var(--muted);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
}

.main-nav {
    margin-left: auto;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 11px;
    border-radius: 12px;
    color: #526077;
    font-size: 0.88rem;
    font-weight: 700;
    white-space: nowrap;
    transition: 0.2s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
    color: var(--navy);
    background: #e8fbfb;
}

.nav-icon {
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 7px;
    background: #eef2f8;
    color: var(--navy);
    font-size: 0.82rem;
}

.main-nav a.is-active .nav-icon {
    color: #ffffff;
    background: var(--cyan);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 10px;
    border: 0;
    border-radius: 12px;
    background: var(--navy);
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 4px 0;
    border-radius: 2px;
    background: #ffffff;
}

.hero {
    padding: 56px 0 24px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    min-height: 600px;
    overflow: hidden;
    border-radius: 34px;
    background: var(--navy);
    box-shadow: var(--shadow);
}

.hero-copy {
    align-self: center;
    padding: 68px 62px;
    color: #ffffff;
}

.hero-kicker,
.eyebrow {
    display: inline-block;
    color: #078b8d;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-kicker {
    color: var(--cyan);
}

.hero h1 {
    max-width: 560px;
    margin: 20px 0;
    font-size: clamp(3rem, 6vw, 5.6rem);
    line-height: 1.04;
    letter-spacing: -0.07em;
}

.hero h1 a {
    background: linear-gradient(130deg, #ffffff 20%, #8cf4ee 100%);
    background-clip: text;
    color: transparent;
}

.hero-copy > p {
    max-width: 610px;
    color: #c8d2e5;
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border: 0;
    border-radius: 14px;
    font-weight: 800;
    cursor: pointer;
}

.button-primary {
    color: var(--navy);
    background: var(--cyan);
    box-shadow: 0 10px 26px rgba(22, 197, 199, 0.24);
}

.button-ghost {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.button-outline {
    border: 1px solid var(--line);
    background: var(--surface);
}

.button-light {
    color: var(--navy);
    background: #ffffff;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-top: 30px;
    color: #8fa0bc;
    font-size: 0.82rem;
}

.hero-proof span::before {
    margin-right: 7px;
    color: var(--cyan);
    content: "✓";
}

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

.hero-art > a,
.hero-art img {
    width: 100%;
    height: 100%;
}

.hero-art img {
    filter: saturate(0.85) contrast(1.04);
}

.hero-art::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--navy) 0%, transparent 35%, transparent 72%, rgba(17, 31, 61, 0.25) 100%);
    content: "";
    pointer-events: none;
}

.hero-caption {
    position: absolute;
    right: 28px;
    bottom: 28px;
    z-index: 1;
    display: grid;
    min-width: 260px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 18px;
    color: #ffffff;
    background: rgba(12, 23, 45, 0.78);
    backdrop-filter: blur(10px);
}

.hero-caption span,
.hero-caption small {
    color: #9fe9e7;
}

.hero-caption strong {
    font-size: 1.2rem;
}

.section {
    padding: 72px 0;
}

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

.section-heading h2 {
    margin: 7px 0 0;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.2;
    letter-spacing: -0.04em;
}

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

.spotlight {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.spotlight-cover img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1.35 / 1;
}

.spotlight-copy {
    align-self: center;
    padding: 46px;
}

.spotlight-copy h2 {
    margin: 8px 0 16px;
    font-size: 2rem;
    line-height: 1.3;
}

.spotlight-copy > p,
.detail-list dd {
    color: var(--muted);
}

.detail-list {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 8px 16px;
    margin: 22px 0;
}

.detail-list dt {
    font-weight: 800;
}

.detail-list dd {
    margin: 0;
}

.text-link {
    color: #087f82;
    font-weight: 800;
}

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

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

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

.comic-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--surface);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.comic-cover {
    position: relative;
    display: block;
    overflow: hidden;
}

.comic-cover img {
    width: 100%;
    aspect-ratio: 3 / 4;
}

.cover-badge {
    position: absolute;
    right: 12px;
    bottom: 12px;
    padding: 5px 10px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(17, 31, 61, 0.85);
    font-size: 0.75rem;
}

.comic-card-body {
    padding: 19px;
}

.comic-card h3 {
    margin: 10px 0 7px;
    font-size: 1.08rem;
}

.comic-card p {
    display: -webkit-box;
    min-height: 54px;
    margin: 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.9rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.tag {
    display: inline-flex;
    padding: 4px 9px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
}

.tag-cyan {
    color: #087a7c;
    background: #dffafa;
}

.tag-orange {
    color: #a13a25;
    background: #ffe7e0;
}

.tag-violet {
    color: #5741be;
    background: #ece8ff;
}

.tag-red {
    color: #a92f2f;
    background: #ffe3e3;
}

.tag-pink {
    color: #a7335c;
    background: #ffe4ed;
}

.tag-blue {
    color: #285bb4;
    background: #e2ebff;
}

.tag-green {
    color: #247854;
    background: #ddf5e9;
}

.comic-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 14px;
    color: #8993a4;
    font-size: 0.78rem;
}

.section-action {
    margin-top: 30px;
    text-align: center;
}

.category-section {
    background: #edf1f7;
}

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

.category-card {
    position: relative;
    min-height: 220px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 22px;
    background: #ffffff;
}

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

.category-card::after {
    position: absolute;
    right: -26px;
    bottom: -42px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: var(--card-color, var(--cyan));
    content: "";
    opacity: 0.12;
}

.category-cyan {
    --card-color: var(--cyan);
}

.category-orange {
    --card-color: var(--orange);
}

.category-violet {
    --card-color: var(--violet);
}

.category-red {
    --card-color: var(--red);
}

.category-pink {
    --card-color: var(--pink);
}

.category-blue {
    --card-color: var(--blue);
}

.category-green {
    --card-color: var(--green);
}

.category-icon,
.listing-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 15px;
    color: #ffffff;
    background: var(--card-color, var(--cyan));
    font-size: 1.3rem;
}

.category-card h3 {
    margin: 20px 0 6px;
}

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

.category-link {
    color: #34435d;
    font-weight: 800;
}

.ranking-section {
    background: var(--navy);
}

.ranking-section .section-heading h2,
.ranking-section .section-heading > p {
    color: #ffffff;
}

.ranking-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
}

.ranking-winner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
}

.ranking-winner img {
    width: 100%;
    height: 100%;
}

.ranking-winner > div {
    align-self: center;
    padding: 34px;
}

.ranking-winner h3 {
    margin: 12px 0;
    font-size: 1.7rem;
}

.ranking-winner p {
    color: var(--muted);
}

.rank-number {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 1;
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 16px;
    color: var(--navy);
    background: var(--cyan);
    font-size: 1.2rem;
    font-weight: 900;
}

.ranking-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ranking-list li {
    display: grid;
    grid-template-columns: 46px 1fr 30px;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 16px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

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

.ranking-list p {
    color: #96a4bd;
    font-size: 0.82rem;
}

.rank-index {
    color: var(--cyan);
    font-size: 1.2rem;
    font-weight: 900;
}

.rank-trend {
    color: var(--cyan);
}

.story-strips {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.story-strip {
    display: grid;
    grid-template-columns: 42% 58%;
    min-height: 280px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #ffffff;
}

.story-strip img {
    width: 100%;
    height: 100%;
}

.story-strip > div {
    align-self: center;
    padding: 24px;
}

.story-index {
    color: var(--violet);
    font-size: 1.8rem;
    font-weight: 900;
}

.story-strip h3 {
    margin: 7px 0;
}

.story-strip p {
    color: var(--muted);
    font-size: 0.88rem;
}

.schedule-card {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 50px;
    padding: 50px;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.schedule-intro h2 {
    margin: 8px 0;
    font-size: 2.2rem;
}

.schedule-intro p {
    color: var(--muted);
}

.timeline {
    display: grid;
    gap: 0;
}

.timeline-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 24px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.timeline-item:last-child {
    border-bottom: 0;
}

.timeline-item time {
    color: var(--orange);
    font-size: 1.25rem;
    font-weight: 900;
}

.timeline-item h3,
.timeline-item span {
    margin: 0;
}

.timeline-item span {
    color: var(--muted);
    font-size: 0.82rem;
}

.mood-section {
    background: #e9f8f7;
}

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

.mood-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    border: 1px solid rgba(22, 197, 199, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.8);
}

.mood-card > span {
    display: grid;
    width: 54px;
    height: 54px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--navy);
    font-size: 1.3rem;
}

.mood-card h3,
.mood-card p {
    margin: 0;
}

.mood-card p {
    color: var(--muted);
    font-size: 0.88rem;
}

.editor-mosaic {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
}

.editor-tile {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.editor-tile::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(11, 22, 43, 0.9), transparent 68%);
    content: "";
}

.editor-tile img {
    width: 100%;
    height: 100%;
}

.editor-tile > div {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    padding: 28px;
    color: #ffffff;
}

.editor-tile h3,
.editor-tile p {
    margin: 4px 0 0;
}

.editor-tile span {
    color: var(--cyan);
    font-size: 0.78rem;
    font-weight: 800;
}

.editor-wide {
    grid-row: span 2;
}

.completed-section {
    background: #ffffff;
}

.completed-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.completed-row {
    display: grid;
    grid-template-columns: 46px 96px 1fr;
    align-items: center;
    gap: 16px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
}

.completed-row img {
    width: 96px;
    height: 76px;
    border-radius: 12px;
}

.completed-row h3,
.completed-row p {
    margin: 0;
}

.completed-row p {
    color: var(--muted);
    font-size: 0.82rem;
}

.completed-number {
    color: var(--green);
    font-size: 1.2rem;
    font-weight: 900;
}

.status-pill,
.completed-row > .text-link {
    grid-column: 3;
    justify-self: start;
}

.status-pill {
    padding: 3px 9px;
    border-radius: 999px;
    color: #247854;
    background: #ddf5e9;
    font-size: 0.75rem;
}

.experience-section {
    background: var(--navy);
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    color: #ffffff;
}

.eyebrow-light {
    color: var(--cyan);
}

.experience-copy h2 {
    margin: 10px 0;
    font-size: 2.5rem;
    line-height: 1.25;
}

.experience-copy p {
    color: #aab6ca;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.stat-grid div {
    display: grid;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
}

.stat-grid strong {
    color: var(--cyan);
    font-size: 2rem;
}

.stat-grid span {
    color: #aab6ca;
}

.guide-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.guide-steps article {
    padding: 32px;
    border-top: 4px solid var(--cyan);
    border-radius: 0 0 18px 18px;
    background: #ffffff;
    box-shadow: 0 12px 34px rgba(27, 43, 76, 0.07);
}

.guide-steps span {
    color: var(--cyan);
    font-size: 2.4rem;
    font-weight: 900;
}

.guide-steps h3 {
    margin: 10px 0 5px;
}

.guide-steps p {
    margin: 0;
    color: var(--muted);
}

.about-section {
    background: #e8edf5;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 70px;
}

.about-title h2 {
    margin: 8px 0 30px;
    font-size: 2.8rem;
}

.about-mark {
    display: grid;
    width: 150px;
    height: 150px;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--navy);
    box-shadow: inset 0 0 0 14px rgba(22, 197, 199, 0.18);
    font-size: 3.4rem;
    font-weight: 900;
}

.about-copy p {
    margin-top: 0;
    color: #4f5d72;
    font-size: 1.02rem;
}

.about-values {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.about-values span {
    padding: 8px 14px;
    border-radius: 999px;
    color: #ffffff;
    background: var(--navy);
    font-size: 0.85rem;
}

.app-section {
    padding-bottom: 0;
}

.app-card {
    display: grid;
    grid-template-columns: 1fr 260px;
    align-items: center;
    gap: 50px;
    padding: 54px 64px;
    overflow: hidden;
    border-radius: 30px 30px 0 0;
    color: #ffffff;
    background: linear-gradient(135deg, #1b2d54, #111f3d 62%, #113d4d);
}

.app-copy h2 {
    margin: 10px 0;
    font-size: 2.5rem;
}

.app-copy > p {
    max-width: 680px;
    color: #b8c4d7;
}

.app-note {
    margin-bottom: 0;
    font-size: 0.82rem;
}

.qr-figure {
    display: grid;
    justify-items: center;
    padding: 22px;
    border-radius: 20px;
    color: var(--navy);
    background: #ffffff;
}

.qr-grid {
    display: grid;
    grid-template-columns: repeat(5, 17px);
    gap: 4px;
    margin-bottom: 12px;
}

.qr-cell {
    width: 17px;
    height: 17px;
    border-radius: 3px;
    background: var(--navy);
}

.qr-cell-2,
.qr-cell-4 {
    background: var(--cyan);
}

.qr-figure small {
    color: var(--muted);
}

.site-footer {
    padding: 42px 0;
    color: #b7c2d5;
    background: #0a1428;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 26px;
}

.footer-brand {
    color: #ffffff;
    font-size: 1.3rem;
}

.footer-grid p {
    margin: 4px 0 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.copyright {
    grid-column: 1 / -1;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.82rem;
}

.back-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 20;
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    color: var(--navy);
    background: var(--cyan);
    box-shadow: var(--shadow);
    cursor: pointer;
}

.back-top.is-visible {
    display: block;
}

.listing-main,
.reader-main {
    padding: 36px 0 80px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 0.88rem;
}

.breadcrumbs a:hover {
    color: #087f82;
}

.listing-hero {
    --card-color: var(--cyan);
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    padding: 52px;
    border-radius: 28px;
    background: linear-gradient(135deg, #ffffff, color-mix(in srgb, var(--card-color) 12%, #ffffff));
    box-shadow: var(--shadow);
}

.listing-hero-cyan {
    --card-color: var(--cyan);
}

.listing-hero-orange {
    --card-color: var(--orange);
}

.listing-hero-violet {
    --card-color: var(--violet);
}

.listing-hero-red {
    --card-color: var(--red);
}

.listing-hero-pink {
    --card-color: var(--pink);
}

.listing-hero-blue {
    --card-color: var(--blue);
}

.listing-hero-green {
    --card-color: var(--green);
}

.listing-hero h1 {
    margin: 14px 0 8px;
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    letter-spacing: -0.05em;
}

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

.listing-facts {
    display: grid;
    grid-template-columns: auto auto;
    gap: 4px 16px;
    flex: 0 0 auto;
    padding: 18px 22px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.8);
}

.listing-facts dt {
    color: var(--muted);
}

.listing-facts dd {
    margin: 0;
    font-weight: 800;
}

.listing-section {
    padding-bottom: 54px;
}

.category-seo {
    padding: 40px;
    border-left: 5px solid var(--cyan);
    border-radius: 0 20px 20px 0;
    background: #ffffff;
}

.category-seo h2 {
    margin-top: 0;
}

.category-seo p {
    color: var(--muted);
}

.reader-container {
    max-width: 980px;
}

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

.reader-header {
    padding: 54px 56px 40px;
    text-align: center;
}

.reader-header h1 {
    margin: 18px 0 0;
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 1.2;
}

.chapter-subtitle {
    margin: 8px 0;
    color: #087f82;
    font-size: 1.2rem;
    font-weight: 800;
}

.reader-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 22px;
    color: var(--muted);
    font-size: 0.86rem;
}

.reading-note {
    margin: 0 56px 44px;
    padding: 22px 26px;
    border-radius: 16px;
    background: #ecf8f8;
}

.reading-note h2 {
    margin: 0;
    font-size: 1.1rem;
}

.reading-note p {
    margin: 6px 0 0;
    color: var(--muted);
}

.chapter-content {
    padding: 0 56px 50px;
}

.chapter-content > h2,
.chapter-content > p {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
}

.chapter-content > h2 {
    margin-bottom: 12px;
    line-height: 1.45;
    text-align: center;
}

.chapter-content > p {
    margin-top: 16px;
    margin-bottom: 32px;
    color: #4e5a6e;
}

.comic-page {
    max-width: 780px;
    margin: 34px auto;
}

.comic-page img {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 12px;
    background: #e9edf4;
}

.comic-page figcaption {
    padding: 8px 4px 0;
    color: var(--muted);
    font-size: 0.78rem;
    text-align: center;
}

.chapter-end {
    max-width: 760px;
    margin: 54px auto 0;
    padding: 40px;
    border: 1px solid var(--line);
    border-radius: 20px;
    text-align: center;
    background: var(--paper);
}

.chapter-end > span {
    color: var(--cyan);
    font-weight: 900;
    letter-spacing: 0.3em;
}

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

.chapter-end p {
    margin: 0;
    color: var(--muted);
}

.chapter-nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 18px;
    padding: 30px 56px;
    border-top: 1px solid var(--line);
    background: #f9fbfd;
}

.chapter-nav-link {
    color: #087f82;
    font-weight: 800;
}

.chapter-nav-next {
    text-align: right;
}

.is-disabled {
    color: #98a2b3;
}

@media (max-width: 1100px) {
    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 82px;
        right: 20px;
        left: 20px;
        display: none;
        padding: 16px;
        border: 1px solid var(--line);
        border-radius: 16px;
        background: #ffffff;
        box-shadow: var(--shadow);
    }

    .main-nav.is-open {
        display: block;
    }

    .main-nav ul {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .main-nav a {
        justify-content: center;
    }

    .comic-grid-five {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .comic-grid-five .comic-card:nth-child(4),
    .comic-grid-five .comic-card:nth-child(5) {
        transform: translateX(50%);
    }

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

    .story-strip {
        grid-template-columns: 180px 1fr;
    }
}

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

    .hero {
        padding-top: 32px;
    }

    .hero-grid,
    .spotlight,
    .ranking-layout,
    .schedule-card,
    .experience-grid,
    .about-grid,
    .app-card {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        padding: 48px 38px;
    }

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

    .hero-art::after {
        background: linear-gradient(0deg, rgba(17, 31, 61, 0.28), transparent 55%);
    }

    .comic-grid-four,
    .comic-grid-five,
    .category-grid,
    .mood-grid,
    .completed-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .comic-grid-five .comic-card:nth-child(5) {
        grid-column: 1 / -1;
        width: calc(50% - 12px);
        justify-self: center;
        transform: none;
    }

    .comic-grid-five .comic-card:nth-child(4) {
        transform: none;
    }

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

    .ranking-winner {
        grid-template-columns: 1fr 1fr;
    }

    .editor-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 330px 270px;
    }

    .editor-wide {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .guide-steps {
        grid-template-columns: 1fr;
    }

    .listing-hero {
        align-items: start;
        flex-direction: column;
    }

    .app-card {
        justify-items: center;
    }

    .app-copy {
        text-align: center;
    }
}

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

    .brand-copy small {
        display: none;
    }

    .main-nav {
        top: 72px;
    }

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

    .main-nav a {
        justify-content: start;
    }

    .hero {
        padding-top: 24px;
    }

    .hero-grid {
        min-height: auto;
        border-radius: 24px;
    }

    .hero-copy {
        padding: 38px 24px;
    }

    .hero h1 {
        font-size: 3rem;
    }

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

    .hero-caption {
        right: 16px;
        bottom: 16px;
        left: 16px;
        min-width: 0;
    }

    .section {
        padding: 52px 0;
    }

    .section-heading {
        display: block;
    }

    .section-heading > p {
        margin-top: 12px;
    }

    .spotlight-copy,
    .schedule-card,
    .listing-hero,
    .category-seo,
    .app-card {
        padding: 28px 24px;
    }

    .comic-grid-four,
    .comic-grid-five,
    .category-grid,
    .mood-grid,
    .completed-list,
    .stat-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .comic-grid-five .comic-card:nth-child(5) {
        grid-column: auto;
        width: 100%;
    }

    .category-card:last-child {
        grid-column: auto;
    }

    .ranking-winner {
        grid-template-columns: 1fr;
    }

    .ranking-winner img {
        aspect-ratio: 1.3 / 1;
    }

    .story-strip {
        grid-template-columns: 42% 58%;
    }

    .story-strip > div {
        padding: 18px;
    }

    .timeline-item {
        grid-template-columns: 68px 1fr;
        gap: 14px;
    }

    .editor-mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 300px);
    }

    .editor-wide {
        grid-column: auto;
    }

    .completed-row {
        grid-template-columns: 36px 82px 1fr;
        gap: 10px;
    }

    .completed-row img {
        width: 82px;
        height: 70px;
    }

    .about-mark {
        width: 110px;
        height: 110px;
    }

    .footer-links {
        gap: 10px 16px;
    }

    .copyright {
        grid-column: auto;
    }

    .reader-header,
    .chapter-content {
        padding-right: 20px;
        padding-left: 20px;
    }

    .reading-note {
        margin-right: 20px;
        margin-left: 20px;
    }

    .chapter-nav {
        grid-template-columns: 1fr;
        padding: 24px 20px;
        text-align: center;
    }

    .chapter-nav-next {
        text-align: center;
    }

    .back-top {
        right: 14px;
        bottom: 14px;
    }
}
