:root {
    --ink: #10162f;
    --ink-soft: #1c2548;
    --paper: #f7f8fc;
    --card: #ffffff;
    --line: #dfe3ef;
    --muted: #68708a;
    --accent: #ff5d5d;
    --accent-deep: #df3e4f;
    --gold: #ffb84d;
    --cyan: #42d9c8;
    --violet: #9c7bff;
    --shadow: 0 18px 50px rgba(16, 22, 47, 0.12);
    --radius: 22px;
}

* {
    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;
}

body::before {
    position: fixed;
    z-index: -1;
    inset: 0;
    content: "";
    pointer-events: none;
    background-image: radial-gradient(circle at 10% 10%, rgba(255, 93, 93, 0.08), transparent 25%), radial-gradient(circle at 90% 30%, rgba(66, 217, 200, 0.08), transparent 24%);
}

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

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

button,
input {
    font: inherit;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: #ffffff;
    background: var(--ink);
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

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

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    border-bottom: 1px solid rgba(223, 227, 239, 0.9);
    background: rgba(247, 248, 252, 0.94);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    align-items: center;
    width: min(1200px, calc(100% - 40px));
    min-height: 82px;
    margin-inline: auto;
    gap: 28px;
}

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

.brand-mark {
    display: grid;
    width: 44px;
    height: 44px;
    color: #ffffff;
    border-radius: 14px 14px 14px 5px;
    background: linear-gradient(135deg, var(--accent), #ff8c55);
    place-items: center;
    box-shadow: 0 9px 24px rgba(255, 93, 93, 0.28);
    transform: rotate(-3deg);
}

.brand-glyph {
    font-size: 20px;
    font-weight: 900;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-copy strong {
    font-size: 18px;
    letter-spacing: 0.02em;
}

.brand-copy small {
    margin-top: 5px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.main-nav {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: flex-end;
    gap: 3px;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    padding: 9px 10px;
    border-radius: 12px;
    color: #424a65;
    font-size: 14px;
    font-weight: 700;
    gap: 6px;
    transition: 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--ink);
    background: #ffffff;
    box-shadow: 0 7px 18px rgba(16, 22, 47, 0.08);
}

.nav-link.is-active {
    color: var(--accent-deep);
}

.nav-icon {
    display: grid;
    width: 22px;
    height: 22px;
    border-radius: 8px;
    background: rgba(255, 93, 93, 0.1);
    font-size: 13px;
    place-items: center;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--ink);
    background: #ffffff;
}

.hero {
    display: grid;
    min-height: 620px;
    margin-top: 58px;
    padding: 62px;
    border-radius: 34px;
    color: #ffffff;
    background: linear-gradient(130deg, #0c1127 0%, #172351 58%, #26336a 100%);
    grid-template-columns: 0.95fr 1.05fr;
    gap: 45px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-copy {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.hero-kicker,
.eyebrow {
    color: var(--accent);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-kicker {
    display: inline-flex;
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: #ffd0c9;
    background: rgba(255, 255, 255, 0.08);
}

.hero h1 {
    margin: 22px 0 18px;
    font-size: clamp(48px, 7vw, 84px);
    line-height: 1;
    letter-spacing: -0.06em;
}

.hero h1 a {
    background: linear-gradient(90deg, #ffffff, #ffcc94);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-lead {
    max-width: 560px;
    margin: 0;
    color: #c9d1ec;
    font-size: 18px;
}

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

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

.button-primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    box-shadow: 0 10px 25px rgba(255, 93, 93, 0.25);
}

.button-ghost {
    border: 1px solid var(--line);
    color: var(--ink);
    background: #ffffff;
}

.hero .button-ghost {
    border-color: rgba(255, 255, 255, 0.22);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.hero-stats {
    display: flex;
    margin-top: 42px;
    gap: 30px;
}

.hero-stats div {
    display: flex;
    flex-direction: column;
}

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

.hero-stats span {
    color: #98a4ce;
    font-size: 13px;
}

.hero-visual {
    position: relative;
    min-height: 500px;
}

.hero-poster {
    position: absolute;
    width: 46%;
    overflow: hidden;
    border: 5px solid rgba(255, 255, 255, 0.92);
    border-radius: 22px;
    box-shadow: 0 28px 45px rgba(0, 0, 0, 0.38);
}

.hero-image {
    aspect-ratio: 3 / 4;
}

.poster-1 {
    z-index: 3;
    top: 60px;
    left: 26%;
    transform: rotate(-3deg);
}

.poster-2 {
    z-index: 2;
    top: 4px;
    right: 0;
    transform: rotate(7deg);
}

.poster-3 {
    z-index: 1;
    bottom: -30px;
    left: 0;
    transform: rotate(-10deg);
}

.poster-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    padding: 22px 15px 13px;
    flex-direction: column;
    background: linear-gradient(transparent, rgba(8, 12, 29, 0.95));
}

.poster-caption small {
    color: #ffcf83;
}

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

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

.section-heading h2,
.spotlight h2,
.completion-intro h2,
.guide-heading h2,
.about-copy h2,
.app-copy h2 {
    margin: 6px 0 0;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    letter-spacing: -0.04em;
}

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

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

.category-tile {
    position: relative;
    display: grid;
    min-height: 190px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    grid-template-columns: 46px 1fr;
    gap: 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-tile h3 {
    margin: 4px 0 8px;
    font-size: 20px;
}

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

.category-icon {
    display: grid;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    background: #fff1ef;
    font-size: 21px;
    place-items: center;
}

.category-2 .category-icon,
.category-6 .category-icon {
    background: #fff5dc;
}

.category-3 .category-icon,
.category-7 .category-icon {
    background: #eeeaff;
}

.category-4 .category-icon,
.category-5 .category-icon {
    background: #e5faf6;
}

.tile-arrow {
    position: absolute;
    right: 18px;
    bottom: 14px;
    font-size: 22px;
}

.latest-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.5fr;
    gap: 24px;
}

.comic-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
}

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

.comic-cover img {
    aspect-ratio: 3 / 4;
    transition: transform 0.35s ease;
}

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

.cover-badge,
.issue-number {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 10px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(16, 22, 47, 0.86);
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.comic-info {
    padding: 20px;
}

.comic-info h3 {
    margin: 0;
    font-size: 20px;
}

.comic-info p {
    margin: 9px 0 16px;
    color: var(--muted);
    font-size: 14px;
}

.comic-meta,
.item-meta {
    display: flex;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 12px;
    gap: 8px;
}

.comic-meta span,
.item-meta span {
    padding: 4px 8px;
    border-radius: 8px;
    background: var(--paper);
}

.comic-card-featured {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
}

.comic-card-featured .comic-info {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.latest-list {
    display: grid;
    gap: 12px;
}

.latest-row {
    display: grid;
    min-height: 105px;
    align-items: center;
    padding: 18px 22px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #ffffff;
    grid-template-columns: 55px 1fr auto;
    gap: 16px;
}

.row-number {
    color: var(--accent);
    font-size: 24px;
    font-weight: 900;
}

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

.latest-row p {
    display: -webkit-box;
    color: var(--muted);
    font-size: 14px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.row-tag {
    padding: 5px 10px;
    border-radius: 999px;
    color: var(--accent-deep);
    background: #fff0ef;
    font-size: 12px;
    font-weight: 800;
}

.section-ink {
    padding: 90px 0;
    color: #ffffff;
    background: var(--ink);
}

.section-ink .section-heading p {
    color: #aeb7d7;
}

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

.editorial-card {
    min-height: 260px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.editorial-card:nth-child(2) {
    transform: translateY(18px);
}

.route-label {
    color: #ffbd71;
    font-size: 13px;
    font-weight: 900;
}

.editorial-card h3 {
    margin: 32px 0 10px;
    font-size: 25px;
}

.editorial-card p {
    color: #b9c1dc;
}

.editorial-card a,
.text-link {
    color: var(--accent-deep);
    font-weight: 800;
}

.editorial-card a {
    color: #ffafa5;
}

.cover-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.cover-grid .comic-info {
    padding: 16px;
}

.cover-grid .comic-info h3 {
    font-size: 17px;
}

.cover-grid .comic-info p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.spotlight {
    display: grid;
    min-height: 540px;
    padding: 24px;
    border-radius: 30px;
    background: #f0edff;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 42px;
}

.spotlight-image {
    overflow: hidden;
    border-radius: 22px;
}

.wide-image {
    height: 100%;
    aspect-ratio: 16 / 10;
}

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

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

.spotlight-links {
    display: grid;
    margin: 18px 0 22px;
    gap: 8px;
}

.spotlight-links a {
    display: flex;
    align-items: center;
    padding: 11px 0;
    border-bottom: 1px solid rgba(156, 123, 255, 0.2);
    gap: 14px;
}

.spotlight-links span {
    color: var(--violet);
    font-weight: 900;
}

.schedule-board {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.schedule-item {
    display: flex;
    min-height: 155px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #ffffff;
    flex-direction: column;
}

.schedule-item.is-today {
    color: #ffffff;
    border-color: var(--accent);
    background: linear-gradient(145deg, var(--accent), var(--accent-deep));
    transform: translateY(-9px);
    box-shadow: 0 18px 35px rgba(255, 93, 93, 0.22);
}

.schedule-day {
    margin-bottom: auto;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.schedule-item.is-today .schedule-day {
    color: #ffd8d3;
}

.schedule-item strong {
    line-height: 1.3;
}

.schedule-item small {
    margin-top: 7px;
    color: var(--muted);
}

.schedule-item.is-today small {
    color: #ffe3df;
}

.completion-panel {
    display: grid;
    padding: 52px;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: #ffffff;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
}

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

.completion-stack {
    display: grid;
}

.completion-stack a {
    display: grid;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 45px 1fr auto;
    gap: 15px;
}

.stack-index,
.rank-number {
    color: var(--accent);
    font-weight: 900;
}

.completion-stack small {
    color: var(--muted);
}

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

.ranking-card {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
}

.ranking-card h3 {
    margin: 0 0 16px;
    font-size: 22px;
}

.ranking-card a {
    display: grid;
    align-items: center;
    padding: 12px 0;
    border-top: 1px solid var(--line);
    grid-template-columns: 38px 1fr;
}

.ranking-card a > span:last-child {
    display: flex;
    flex-direction: column;
}

.ranking-card small {
    color: var(--muted);
}

.reading-guide {
    display: grid;
    padding: 50px;
    border-radius: 30px;
    color: #ffffff;
    background: linear-gradient(135deg, #17244a, #0d7f7a);
    grid-template-columns: 0.85fr 1.4fr;
    gap: 50px;
}

.guide-heading p {
    color: #c9ebe8;
}

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

.guide-step {
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
}

.guide-step > span {
    color: #8ff2e6;
    font-weight: 900;
}

.guide-step h3 {
    margin: 15px 0 5px;
}

.guide-step p {
    margin: 0;
    color: #c9ebe8;
    font-size: 14px;
}

.about-panel {
    display: grid;
    align-items: center;
    grid-template-columns: 0.65fr 1.35fr;
    gap: 65px;
}

.about-mark {
    position: relative;
    display: grid;
    aspect-ratio: 1;
    border-radius: 36% 64% 50% 50% / 55% 38% 62% 45%;
    color: #ffffff;
    background: linear-gradient(145deg, var(--accent), #ff9a55);
    place-items: center;
    box-shadow: 24px 30px 0 #ffe4d2;
}

.about-mark span {
    font-size: clamp(70px, 10vw, 125px);
    font-weight: 900;
}

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

.about-points {
    display: grid;
    padding: 0;
    list-style: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.about-points li {
    padding: 11px 14px;
    border-radius: 12px;
    background: #ffffff;
    font-weight: 700;
}

.about-points li::before {
    margin-right: 8px;
    color: var(--accent);
    content: "◆";
}

.app-banner {
    display: grid;
    margin-bottom: 96px;
    padding: 55px;
    border-radius: 30px;
    background: #fff0e9;
    grid-template-columns: 1fr 260px;
    gap: 50px;
}

.app-copy p {
    max-width: 680px;
    color: var(--muted);
}

.subscribe-form {
    display: flex;
    max-width: 600px;
    margin-top: 25px;
    gap: 10px;
}

.subscribe-form label {
    flex: 1;
}

.subscribe-form label span {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0);
}

.subscribe-form input {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    border: 1px solid #efcfc1;
    border-radius: 14px;
    outline: 0;
}

.subscribe-form input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(255, 93, 93, 0.12);
}

.privacy-note {
    font-size: 13px;
}

.brand-qr {
    display: grid;
    align-self: center;
    justify-self: center;
    padding: 18px;
    border: 8px solid #ffffff;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.brand-qr > div {
    display: flex;
}

.brand-qr > div span {
    width: 19px;
    height: 19px;
    background: #f1f1f5;
}

.brand-qr > div span.is-dark {
    background: var(--ink);
}

.brand-qr strong,
.brand-qr small {
    display: block;
    margin-top: 10px;
    text-align: center;
}

.brand-qr small {
    margin-top: 0;
    color: var(--muted);
}

.site-footer {
    padding: 64px 0 25px;
    color: #ffffff;
    background: #0b1025;
}

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

.footer-grid p {
    max-width: 430px;
    color: #9fa9ca;
}

.footer-brand {
    color: #ffffff;
    font-size: 24px;
}

.footer-links {
    display: grid;
    margin-top: 14px;
    gap: 7px;
}

.footer-links a {
    color: #9fa9ca;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 45px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #7782a5;
    font-size: 13px;
}

.inner-shell,
.reader-shell {
    padding-top: 38px;
    padding-bottom: 100px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 28px;
    color: var(--muted);
    font-size: 14px;
    gap: 9px;
}

.breadcrumb a:hover {
    color: var(--accent-deep);
}

.channel-hero {
    display: grid;
    min-height: 360px;
    padding: 28px;
    border-radius: 30px;
    color: #ffffff;
    background: linear-gradient(130deg, var(--ink), var(--ink-soft));
    grid-template-columns: 0.95fr 1.05fr;
    gap: 40px;
}

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

.channel-icon {
    display: grid;
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 26px;
    place-items: center;
}

.channel-copy h1 {
    margin: 4px 0 8px;
    font-size: clamp(40px, 6vw, 64px);
    line-height: 1.1;
}

.channel-copy p {
    color: #bdc6e3;
}

.channel-feature {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
}

.channel-feature::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(transparent 45%, rgba(0, 0, 0, 0.8));
}

.channel-feature > span {
    position: absolute;
    z-index: 1;
    right: 26px;
    bottom: 22px;
    left: 26px;
    display: flex;
    flex-direction: column;
}

.channel-feature small {
    color: #ffd18b;
}

.channel-feature strong {
    font-size: 25px;
}

.channel-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 50px 0 24px;
    padding: 18px 22px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #ffffff;
    gap: 25px;
}

.channel-toolbar > div {
    display: flex;
    flex-direction: column;
}

.channel-toolbar span {
    color: var(--muted);
    font-size: 13px;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-box input {
    width: 250px;
    min-height: 42px;
    padding: 0 13px;
    border: 1px solid var(--line);
    border-radius: 11px;
}

.channel-list {
    display: grid;
    gap: 18px;
}

.channel-item {
    display: grid;
    min-height: 280px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #ffffff;
    grid-template-columns: 190px 1fr;
    gap: 28px;
}

.channel-cover {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.channel-cover img {
    height: 100%;
    aspect-ratio: 3 / 4;
}

.channel-item-copy {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.channel-item-copy h2 {
    margin: 5px 0 10px;
    font-size: 30px;
}

.channel-item-copy > p {
    max-width: 720px;
    color: var(--muted);
}

.channel-item-copy .text-link {
    margin-top: 18px;
}

.filter-empty {
    padding: 40px;
    border: 1px dashed var(--line);
    border-radius: 18px;
    text-align: center;
}

.channel-seo-copy {
    margin-top: 60px;
    padding: 32px;
    border-left: 5px solid var(--accent);
    border-radius: 0 20px 20px 0;
    background: #ffffff;
}

.channel-seo-copy h2 {
    margin-top: 0;
}

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

.reader-article {
    max-width: 960px;
    margin-inline: auto;
}

.reader-header {
    padding: 50px;
    border-radius: 28px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--ink), #27376f);
}

.reader-header h1 {
    margin: 6px 0 14px;
    font-size: clamp(38px, 6vw, 62px);
    line-height: 1.12;
}

.reader-deck {
    max-width: 760px;
    color: #c4cce5;
    font-size: 18px;
}

.reader-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 24px;
    color: #aeb8d7;
    gap: 10px;
}

.reader-meta strong {
    margin-right: 15px;
    color: #ffffff;
}

.reading-note {
    display: grid;
    margin: 28px 0 56px;
    padding: 22px 25px;
    border: 1px solid #f0d1b5;
    border-radius: 18px;
    background: #fff5e9;
    grid-template-columns: 100px 1fr;
    gap: 18px;
}

.reading-note p {
    margin: 0;
    color: #705f55;
}

.chapter-content {
    display: grid;
    gap: 72px;
}

.chapter-scene {
    display: grid;
    align-items: center;
    grid-template-columns: 0.65fr 1.35fr;
    gap: 45px;
}

.chapter-scene:nth-child(even) {
    grid-template-columns: 1.35fr 0.65fr;
}

.chapter-scene:nth-child(even) .scene-copy {
    order: 2;
}

.scene-copy h2 {
    margin: 8px 0 12px;
    font-size: 28px;
    line-height: 1.25;
}

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

.chapter-scene figure {
    margin: 0;
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.chapter-scene figure img {
    aspect-ratio: 3 / 4;
}

.chapter-scene figcaption {
    padding: 12px 16px;
    color: var(--muted);
    font-size: 13px;
    text-align: center;
}

.chapter-end {
    margin-top: 80px;
    padding: 45px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #ffffff;
    text-align: center;
}

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

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

.chapter-nav {
    display: grid;
    align-items: stretch;
    margin-top: 28px;
    grid-template-columns: 1fr auto 1fr;
    gap: 12px;
}

.chapter-link,
.chapter-center {
    display: flex;
    min-height: 82px;
    justify-content: center;
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #ffffff;
    flex-direction: column;
}

.chapter-center {
    min-width: 120px;
    align-items: center;
    color: #ffffff;
    background: var(--ink);
}

.chapter-link.next {
    align-items: flex-end;
    text-align: right;
}

.chapter-link small {
    color: var(--muted);
}

.chapter-link.is-disabled {
    opacity: 0.5;
}

.toast {
    position: fixed;
    z-index: 200;
    right: 24px;
    bottom: 24px;
    padding: 12px 18px;
    border-radius: 12px;
    color: #ffffff;
    background: var(--ink);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: 0.25s ease;
}

.toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .header-inner {
        flex-wrap: wrap;
        padding: 15px 0;
    }

    .main-nav {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        scrollbar-width: thin;
    }

    .nav-link {
        flex: 0 0 auto;
    }

    .hero {
        min-height: auto;
        padding: 48px;
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 440px;
    }

    .category-grid,
    .cover-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

    .site-header {
        position: relative;
    }

    .header-inner {
        min-height: 72px;
    }

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

    .main-nav {
        display: none;
        padding-bottom: 8px;
        flex-direction: column;
        align-items: stretch;
    }

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

    .nav-link {
        justify-content: flex-start;
    }

    .hero {
        margin-top: 30px;
        padding: 36px 26px;
        border-radius: 24px;
    }

    .hero h1 {
        font-size: 50px;
    }

    .hero-visual {
        min-height: 360px;
    }

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

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

    .category-grid,
    .cover-grid,
    .editorial-grid,
    .ranking-columns {
        grid-template-columns: repeat(2, 1fr);
    }

    .latest-layout,
    .spotlight,
    .completion-panel,
    .reading-guide,
    .about-panel,
    .app-banner,
    .channel-hero {
        grid-template-columns: 1fr;
    }

    .spotlight-copy {
        padding: 20px;
    }

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

    .completion-panel,
    .reading-guide,
    .app-banner {
        padding: 35px 25px;
    }

    .about-mark {
        width: min(350px, 90%);
        justify-self: center;
    }

    .brand-qr {
        justify-self: start;
    }

    .channel-item {
        grid-template-columns: 160px 1fr;
    }

    .chapter-scene,
    .chapter-scene:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .chapter-scene:nth-child(even) .scene-copy {
        order: 0;
    }
}

@media (max-width: 560px) {
    body {
        font-size: 16px;
    }

    .brand-copy small {
        display: none;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-lead {
        font-size: 16px;
    }

    .hero-stats {
        gap: 18px;
    }

    .hero-poster {
        width: 52%;
    }

    .category-grid,
    .cover-grid,
    .editorial-grid,
    .ranking-columns,
    .guide-steps,
    .about-points {
        grid-template-columns: 1fr;
    }

    .comic-card-featured {
        grid-template-columns: 1fr;
    }

    .latest-row {
        grid-template-columns: 42px 1fr;
    }

    .row-tag {
        display: none;
    }

    .editorial-card:nth-child(2) {
        transform: none;
    }

    .schedule-board {
        grid-template-columns: 1fr;
    }

    .schedule-item {
        min-height: 115px;
    }

    .schedule-item.is-today {
        transform: none;
    }

    .subscribe-form,
    .channel-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .subscribe-form .button,
    .search-box,
    .search-box input {
        width: 100%;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }

    .channel-hero {
        padding: 16px;
    }

    .channel-copy {
        padding: 18px;
    }

    .channel-item {
        grid-template-columns: 1fr;
    }

    .channel-cover img {
        max-height: 430px;
    }

    .reader-header {
        padding: 30px 22px;
    }

    .reading-note {
        grid-template-columns: 1fr;
    }

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

    .chapter-link.next {
        align-items: flex-start;
        text-align: left;
    }
}
