:root {
    --bg: #101322;
    --surface: #171b2e;
    --surface-2: #20263d;
    --paper: #f7f7fb;
    --ink: #141728;
    --muted: #686f83;
    --line: rgba(255, 255, 255, 0.1);
    --coral: #ff6b57;
    --cyan: #4bd9c1;
    --yellow: #ffc763;
    --white: #ffffff;
    --radius: 24px;
    --shadow: 0 24px 70px rgba(7, 9, 20, 0.18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
}

.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 1000;
    padding: 10px 16px;
    color: var(--white);
    background: var(--coral);
    border-radius: 10px;
    transform: translateY(-150%);
}

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

.section-shell,
.header-shell,
.footer-shell {
    width: min(1200px, calc(100% - 40px));
    margin-right: auto;
    margin-left: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    color: var(--white);
    background: rgba(16, 19, 34, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

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

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

.brand-mark {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: var(--bg);
    background: linear-gradient(135deg, var(--coral), var(--yellow));
    border-radius: 14px 6px 14px 6px;
    font-size: 1.25rem;
    font-weight: 900;
    box-shadow: 0 8px 24px rgba(255, 107, 87, 0.26);
}

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

.brand-copy strong {
    font-size: 1.2rem;
    letter-spacing: 0.04em;
}

.brand-copy small {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.75rem;
}

.main-nav {
    display: flex;
    min-width: 0;
    margin-left: auto;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
}

.nav-link {
    display: grid;
    min-width: 66px;
    padding: 9px 7px;
    place-items: center;
    color: rgba(255, 255, 255, 0.68);
    border-radius: 12px;
    font-size: 0.78rem;
    line-height: 1.2;
    transition: 180ms ease;
}

.nav-icon {
    margin-bottom: 5px;
    font-size: 1rem;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.nav-link.is-active {
    box-shadow: inset 0 -2px 0 var(--coral);
}

.nav-toggle {
    display: none;
    margin-left: auto;
    padding: 10px 14px;
    color: var(--white);
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: 12px;
}

.hero {
    display: grid;
    min-height: 590px;
    margin-top: 38px;
    padding: 64px;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 64px;
    color: var(--white);
    background: radial-gradient(circle at 15% 20%, rgba(75, 217, 193, 0.15), transparent 30%), radial-gradient(circle at 90% 10%, rgba(255, 107, 87, 0.2), transparent 33%), var(--bg);
    border-radius: 36px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.eyebrow,
.section-kicker,
.reader-kicker {
    margin: 0 0 12px;
    color: var(--coral);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0;
    font-size: clamp(4.4rem, 9vw, 7.5rem);
    line-height: 0.95;
    letter-spacing: -0.07em;
}

.hero h1 a {
    background: linear-gradient(110deg, #ffffff 35%, var(--cyan));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.hero-lead {
    max-width: 580px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.15rem;
}

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

.button {
    display: inline-flex;
    min-height: 48px;
    padding: 0 22px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-weight: 800;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
    color: var(--white);
    background: var(--coral);
    box-shadow: 0 10px 30px rgba(255, 107, 87, 0.3);
}

.button-ghost {
    color: inherit;
    background: transparent;
    border-color: currentColor;
}

.button-light {
    color: var(--bg);
    background: var(--white);
}

.hero-stats {
    display: flex;
    margin: 44px 0 0;
    gap: 36px;
}

.hero-stats div {
    display: grid;
}

.hero-stats dt {
    font-size: 1.4rem;
    font-weight: 900;
}

.hero-stats dd {
    margin: 2px 0 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.8rem;
}

.hero-visual {
    position: relative;
    min-height: 460px;
    border-radius: 180px 180px 28px 28px;
    overflow: hidden;
    isolation: isolate;
}

.hero-visual::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 45%, rgba(10, 12, 24, 0.9));
    content: "";
}

.hero-visual img {
    position: absolute;
    inset: 0;
    height: 100%;
    object-fit: cover;
}

.hero-label,
.hero-chapter {
    position: absolute;
    z-index: 2;
}

.hero-label {
    right: 24px;
    bottom: 25px;
    left: 24px;
    font-weight: 800;
}

.hero-chapter {
    top: 24px;
    right: 24px;
    padding: 8px 13px;
    color: var(--bg);
    background: var(--cyan);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
}

.pulse-bar {
    display: flex;
    margin-top: 30px;
    padding: 17px 22px;
    align-items: center;
    gap: 14px;
    background: var(--white);
    border: 1px solid #e7e9f1;
    border-radius: 16px;
}

.pulse-icon {
    color: var(--coral);
}

.pulse-bar p {
    margin: 0;
    color: var(--muted);
}

.pulse-bar a {
    margin-left: auto;
    color: var(--coral);
    font-weight: 800;
    white-space: nowrap;
}

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

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

.section-heading h2,
.editorial-copy h2,
.finished-copy h2,
.about-copy h2,
.app-copy h2,
.guide-heading h2 {
    margin: 0;
    max-width: 760px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.16;
    letter-spacing: -0.04em;
}

.section-heading p:not(.section-kicker) {
    margin: 10px 0 0;
    color: var(--muted);
}

.text-link {
    color: var(--coral);
    font-weight: 800;
    white-space: nowrap;
}

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

.manga-card {
    min-width: 0;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(18, 22, 40, 0.08);
}

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

.card-cover img {
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease;
}

.manga-card:hover .card-cover img {
    transform: scale(1.04);
}

.card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 10px;
    color: var(--white);
    background: rgba(16, 19, 34, 0.82);
    border-radius: 999px;
    font-size: 0.75rem;
}

.card-body {
    padding: 20px;
}

.card-kicker {
    margin: 0 0 4px;
    color: var(--coral);
    font-size: 0.75rem;
    font-weight: 800;
}

.card-body h3 {
    margin: 0;
    font-size: 1.2rem;
}

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

.card-meta {
    display: flex;
    margin-top: 16px;
    justify-content: space-between;
    color: var(--muted);
    font-size: 0.78rem;
}

.editorial-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    background: var(--bg);
    border-radius: 32px;
    overflow: hidden;
}

.editorial-cover {
    position: relative;
    min-height: 540px;
}

.editorial-cover img {
    height: 100%;
    object-fit: cover;
}

.editorial-cover span {
    position: absolute;
    top: 24px;
    left: 24px;
    padding: 8px 13px;
    color: var(--bg);
    background: var(--cyan);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
}

.editorial-copy {
    padding: 64px;
    align-self: center;
    color: var(--white);
}

.editorial-copy > p:not(.section-kicker) {
    color: rgba(255, 255, 255, 0.68);
}

.feature-points {
    display: grid;
    margin: 28px 0;
    padding: 0;
    gap: 12px;
    list-style: none;
}

.feature-points li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-points span {
    color: var(--cyan);
}

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

.category-card {
    position: relative;
    display: flex;
    min-height: 190px;
    padding: 24px;
    flex-direction: column;
    background: var(--white);
    border: 1px solid #e6e8f0;
    border-top: 4px solid var(--category-color);
    border-radius: 18px;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(19, 22, 39, 0.1);
}

.category-icon {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: var(--category-color);
    background: color-mix(in srgb, var(--category-color) 12%, white);
    border-radius: 12px;
    font-size: 1.25rem;
}

.category-copy {
    display: grid;
    margin-top: 18px;
    gap: 5px;
}

.category-copy strong {
    font-size: 1.08rem;
}

.category-copy small {
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.6;
}

.category-arrow {
    position: absolute;
    top: 24px;
    right: 24px;
    color: var(--muted);
}

.ranking-section {
    padding: 100px 0;
    color: var(--white);
    background: var(--bg);
}

.ranking-section .section-heading p:not(.section-kicker) {
    color: rgba(255, 255, 255, 0.56);
}

.ranking-list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line);
}

.ranking-list li {
    display: grid;
    padding: 18px 0;
    grid-template-columns: 70px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    border-bottom: 1px solid var(--line);
}

.rank-number {
    color: var(--coral);
    font-size: 1.7rem;
    font-weight: 900;
}

.ranking-list a {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 18px;
}

.ranking-list img {
    width: 70px;
    height: 70px;
    flex: 0 0 auto;
    object-fit: cover;
    border-radius: 14px;
}

.ranking-list a > span {
    display: grid;
}

.ranking-list strong {
    font-size: 1.05rem;
}

.ranking-list small,
.rank-trend {
    color: rgba(255, 255, 255, 0.52);
}

.rank-trend {
    font-size: 0.8rem;
}

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

.manhwa-strip article {
    min-width: 0;
}

.manhwa-strip a {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    border-radius: 140px 140px 22px 22px;
    overflow: hidden;
}

.manhwa-strip a::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(10, 12, 24, 0.94));
    content: "";
}

.manhwa-strip img {
    height: 100%;
    object-fit: cover;
}

.strip-number,
.strip-copy {
    position: absolute;
    z-index: 1;
}

.strip-number {
    top: 18px;
    left: 22px;
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 900;
}

.strip-copy {
    right: 22px;
    bottom: 24px;
    left: 22px;
    display: grid;
    color: var(--white);
}

.strip-copy small {
    color: var(--cyan);
}

.strip-copy strong {
    margin-top: 3px;
    font-size: 1.05rem;
}

.finished-feature {
    display: grid;
    padding: 62px;
    grid-template-columns: 1fr 0.75fr;
    align-items: center;
    gap: 74px;
    color: var(--white);
    background: linear-gradient(135deg, #2b3153, #171b2e);
    border-radius: 32px;
}

.finished-copy > p:not(.section-kicker) {
    color: rgba(255, 255, 255, 0.65);
}

.finished-copy dl {
    display: flex;
    margin: 30px 0;
    gap: 36px;
}

.finished-copy dl div {
    display: grid;
}

.finished-copy dt {
    font-size: 1.5rem;
    font-weight: 900;
}

.finished-copy dd {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.78rem;
}

.finished-stack {
    position: relative;
    z-index: 0;
}

.finished-stack img {
    position: relative;
    z-index: 3;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 20px;
}

.stack-card {
    position: absolute;
    inset: 0;
    border-radius: 20px;
}

.stack-one {
    z-index: 2;
    background: var(--coral);
    transform: rotate(7deg) translate(12px, 5px);
}

.stack-two {
    z-index: 1;
    background: var(--cyan);
    transform: rotate(13deg) translate(20px, 6px);
}

.schedule-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0;
}

.schedule-track::before {
    position: absolute;
    top: 48px;
    right: 8%;
    left: 8%;
    height: 2px;
    background: #d9dce7;
    content: "";
}

.schedule-track a {
    position: relative;
    z-index: 1;
    display: grid;
    padding: 0 10px;
    justify-items: center;
    text-align: center;
}

.schedule-day {
    color: var(--muted);
    font-size: 0.85rem;
}

.schedule-dot {
    width: 16px;
    height: 16px;
    margin: 14px 0 17px;
    background: var(--coral);
    border: 4px solid var(--paper);
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--coral);
}

.schedule-track small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.75rem;
}

.reader-picks {
    padding: 100px 0;
    background: #e9f8f4;
}

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

.quote-grid a {
    position: relative;
    padding: 30px;
    background: var(--white);
    border-radius: 18px;
}

.quote-grid a > span {
    position: absolute;
    top: 8px;
    right: 22px;
    color: rgba(75, 217, 193, 0.35);
    font-family: Georgia, serif;
    font-size: 4rem;
    line-height: 1;
}

.quote-grid p {
    margin: 0 0 16px;
    color: var(--muted);
}

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

.guide-steps {
    display: grid;
    gap: 16px;
}

.guide-steps article {
    display: grid;
    padding: 22px 0;
    grid-template-columns: 60px 180px 1fr;
    align-items: center;
    gap: 18px;
    border-bottom: 1px solid #dfe2eb;
}

.guide-steps article > span {
    color: var(--coral);
    font-weight: 900;
}

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

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

.about-section {
    display: grid;
    padding: 64px;
    grid-template-columns: 0.45fr 1fr;
    align-items: center;
    gap: 70px;
    background: var(--white);
    border: 1px solid #e7e9f1;
    border-radius: 28px;
}

.about-symbol {
    display: grid;
    aspect-ratio: 1;
    place-content: center;
    color: var(--white);
    background: linear-gradient(145deg, var(--coral), #ff956a);
    border-radius: 50% 50% 12% 50%;
    text-align: center;
}

.about-symbol span {
    font-size: 5rem;
    font-weight: 900;
    line-height: 0.9;
}

.about-symbol small {
    margin-top: 10px;
    letter-spacing: 0.35em;
}

.about-copy > p:not(.section-kicker) {
    color: var(--muted);
}

.about-tags {
    display: flex;
    margin-top: 24px;
    flex-wrap: wrap;
    gap: 9px;
}

.about-tags span {
    padding: 7px 12px;
    color: var(--coral);
    background: #fff0ed;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
}

.app-section {
    display: grid;
    margin-bottom: 104px;
    padding: 64px;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 80px;
    color: var(--white);
    background: radial-gradient(circle at 80% 20%, rgba(255, 199, 99, 0.25), transparent 30%), linear-gradient(120deg, #ff6b57, #ef4d72);
    border-radius: 30px;
}

.app-copy > p:not(.section-kicker) {
    max-width: 740px;
    color: rgba(255, 255, 255, 0.8);
}

.app-copy .section-kicker {
    color: var(--yellow);
}

.subscribe-button {
    margin-top: 16px;
}

.app-copy > small {
    display: block;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.65);
}

.qr-card {
    display: grid;
    width: 210px;
    padding: 22px;
    justify-items: center;
    color: var(--ink);
    background: var(--white);
    border-radius: 22px;
}

.qr-grid {
    display: grid;
    width: 120px;
    height: 120px;
    padding: 8px;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    background: #f2f3f7;
    border-radius: 10px;
}

.qr-grid span {
    background: transparent;
    border-radius: 2px;
}

.qr-grid .is-dark {
    background: var(--bg);
}

.qr-card strong {
    margin-top: 12px;
}

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

.site-footer {
    padding: 56px 0;
    color: var(--white);
    background: var(--bg);
}

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

.footer-brand p {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
}

.copyright {
    grid-column: 1 / -1;
    margin: 0;
    padding-top: 25px;
    color: rgba(255, 255, 255, 0.38);
    border-top: 1px solid var(--line);
    font-size: 0.78rem;
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 80;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    color: var(--white);
    background: var(--coral);
    border: 0;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(255, 107, 87, 0.3);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.page-hero,
.reader-header {
    margin-top: 38px;
}

.page-hero {
    padding: 42px 52px 56px;
    color: var(--white);
    background: linear-gradient(135deg, color-mix(in srgb, var(--category-color) 35%, var(--bg)), var(--bg) 65%);
    border-radius: 30px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    color: var(--muted);
    font-size: 0.82rem;
}

.page-hero .breadcrumb,
.reader-header .breadcrumb {
    color: rgba(255, 255, 255, 0.6);
}

.page-hero-copy {
    display: flex;
    margin-top: 44px;
    align-items: flex-start;
    gap: 28px;
}

.page-icon {
    display: grid;
    width: 82px;
    height: 82px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--bg);
    background: var(--category-color);
    border-radius: 24px 8px 24px 8px;
    font-size: 2rem;
}

.page-hero-copy > div > p:first-child {
    margin: 0;
    color: var(--category-color);
    font-size: 0.8rem;
    font-weight: 800;
}

.page-hero h1 {
    margin: 5px 0 0;
    font-size: clamp(3rem, 7vw, 5rem);
    line-height: 1;
}

.page-lead {
    max-width: 830px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.68);
}

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

.catalog-item {
    display: grid;
    min-width: 0;
    padding: 20px;
    grid-template-columns: 150px minmax(0, 1fr) auto;
    align-items: center;
    gap: 26px;
    background: var(--white);
    border: 1px solid #e7e9f1;
    border-radius: 20px;
}

.catalog-cover {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 14px;
}

.catalog-cover img {
    height: 100%;
    object-fit: cover;
}

.catalog-cover span {
    position: absolute;
    top: 10px;
    left: 10px;
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    color: var(--white);
    background: rgba(16, 19, 34, 0.8);
    border-radius: 9px;
    font-size: 0.75rem;
    font-weight: 800;
}

.catalog-copy > p:first-child {
    margin: 0;
    color: var(--coral);
    font-size: 0.76rem;
    font-weight: 800;
}

.catalog-copy h2 {
    margin: 3px 0 6px;
    font-size: 1.45rem;
}

.catalog-copy > p:not(:first-child) {
    margin: 0;
    color: var(--muted);
}

.catalog-tags {
    display: flex;
    margin-top: 12px;
    flex-wrap: wrap;
    gap: 7px;
}

.catalog-tags span {
    padding: 4px 9px;
    color: var(--muted);
    background: #f0f2f7;
    border-radius: 999px;
    font-size: 0.73rem;
}

.catalog-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--coral);
    font-weight: 800;
    white-space: nowrap;
}

.category-note {
    display: grid;
    margin-bottom: 104px;
    padding: 34px;
    grid-template-columns: 280px 1fr;
    align-items: center;
    gap: 40px;
    background: #e9f8f4;
    border-radius: 22px;
}

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

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

.category-note > div > span {
    color: var(--coral);
    font-size: 1.5rem;
}

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

.reader-page {
    background: #0d0f1a;
}

.reader-page .site-header {
    background: rgba(13, 15, 26, 0.96);
}

.reader-page .reader-header {
    padding: 38px 44px;
    color: var(--white);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 24px;
}

.reader-title-row {
    display: flex;
    margin-top: 30px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
}

.reader-title-row h1 {
    margin: 0;
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    line-height: 1.1;
}

.reader-meta {
    display: flex;
    margin: 18px 0 0;
    flex-wrap: wrap;
    gap: 10px 20px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.82rem;
}

.reading-progress {
    position: fixed;
    top: 78px;
    right: 0;
    left: 0;
    z-index: 99;
    height: 3px;
}

.reading-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--coral), var(--cyan));
}

.reading-note {
    display: flex;
    margin-top: 24px;
    padding: 22px 26px;
    align-items: flex-start;
    gap: 15px;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(75, 217, 193, 0.1);
    border: 1px solid rgba(75, 217, 193, 0.2);
    border-radius: 16px;
}

.reading-note > span {
    color: var(--cyan);
    font-size: 1.4rem;
}

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

.reading-note h2 {
    color: var(--white);
    font-size: 1rem;
}

.reading-note p {
    margin-top: 4px;
    font-size: 0.86rem;
}

.comic-reader {
    max-width: 920px;
    margin-top: 72px;
}

.chapter-intro {
    margin-bottom: 42px;
    color: var(--white);
    text-align: center;
}

.chapter-intro > p:first-child {
    margin: 0;
    color: var(--coral);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.2em;
}

.chapter-intro h2 {
    margin: 10px 0 0;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.chapter-intro > p:last-child {
    max-width: 680px;
    margin: 16px auto 0;
    color: rgba(255, 255, 255, 0.55);
}

.comic-panel {
    margin: 0 0 42px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
}

.comic-panel img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    background: #252a3f;
}

.comic-panel figcaption {
    display: grid;
    padding: 22px 26px;
    gap: 6px;
    color: rgba(255, 255, 255, 0.58);
}

.comic-panel figcaption strong {
    color: var(--white);
}

.chapter-end {
    padding: 56px 30px;
    color: var(--white);
    text-align: center;
    background: radial-gradient(circle, rgba(75, 217, 193, 0.14), transparent 60%);
}

.chapter-end > span {
    color: var(--cyan);
    font-size: 2rem;
}

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

.chapter-end p {
    max-width: 670px;
    margin: 12px auto 0;
    color: rgba(255, 255, 255, 0.55);
}

.chapter-nav {
    display: grid;
    margin-top: 40px;
    margin-bottom: 100px;
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    gap: 14px;
}

.chapter-link,
.chapter-home {
    display: flex;
    min-height: 86px;
    padding: 16px 20px;
    justify-content: center;
    color: var(--white);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 15px;
}

.chapter-link {
    flex-direction: column;
}

.chapter-link small {
    color: rgba(255, 255, 255, 0.45);
}

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

.chapter-home {
    align-items: center;
    gap: 8px;
    color: var(--bg);
    background: var(--cyan);
    font-weight: 800;
}

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

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

    .brand-copy small {
        display: none;
    }

    .nav-link {
        min-width: 55px;
        font-size: 0.72rem;
    }

    .hero {
        padding: 48px;
        gap: 40px;
    }

    .release-grid,
    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .manhwa-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .schedule-track {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 34px;
    }

    .schedule-track::before {
        display: none;
    }

    .catalog-item {
        grid-template-columns: 130px minmax(0, 1fr);
    }

    .catalog-action {
        grid-column: 2;
    }
}

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

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        gap: 7px;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 1px);
        right: 14px;
        left: 14px;
        display: none;
        padding: 12px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: 0 0 18px 18px;
        box-shadow: var(--shadow);
    }

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

    .nav-link {
        min-width: 0;
    }

    .hero {
        min-height: auto;
        margin-top: 24px;
        padding: 44px 34px;
        grid-template-columns: 1fr;
    }

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

    .editorial-feature,
    .finished-feature,
    .reading-guide,
    .about-section {
        grid-template-columns: 1fr;
    }

    .editorial-copy,
    .finished-feature,
    .about-section {
        padding: 42px;
    }

    .editorial-cover {
        min-height: 420px;
    }

    .finished-stack {
        width: min(72%, 360px);
        margin: 0 auto;
    }

    .reading-guide,
    .about-section {
        gap: 38px;
    }

    .about-symbol {
        width: min(65%, 300px);
        margin: 0 auto;
    }

    .app-section {
        padding: 44px;
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .qr-card {
        width: 100%;
    }

    .category-note {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

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

    .brand-mark {
        width: 42px;
        height: 42px;
    }

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

    .hero {
        padding: 36px 22px;
        border-radius: 24px;
    }

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

    .hero-lead {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 20px;
    }

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

    .pulse-bar {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .pulse-bar p {
        width: calc(100% - 34px);
    }

    .pulse-bar a {
        margin-left: 34px;
    }

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

    .section-heading h2,
    .editorial-copy h2,
    .finished-copy h2,
    .about-copy h2,
    .app-copy h2,
    .guide-heading h2 {
        font-size: 2rem;
    }

    .release-grid,
    .category-grid,
    .manhwa-strip,
    .quote-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .card-body {
        padding: 15px;
    }

    .card-body h3,
    .strip-copy strong {
        font-size: 0.95rem;
    }

    .card-body > p:not(.card-kicker) {
        display: none;
    }

    .card-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
    }

    .editorial-cover {
        min-height: 360px;
    }

    .editorial-copy,
    .finished-feature,
    .about-section,
    .app-section {
        padding: 30px 22px;
    }

    .category-card {
        min-height: 172px;
        padding: 18px;
    }

    .category-arrow {
        top: 18px;
        right: 18px;
    }

    .category-copy small {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

    .ranking-section,
    .reader-picks {
        padding: 72px 0;
    }

    .ranking-list li {
        grid-template-columns: 40px minmax(0, 1fr);
    }

    .ranking-list img {
        width: 58px;
        height: 58px;
    }

    .rank-number {
        font-size: 1.25rem;
    }

    .rank-trend {
        display: none;
    }

    .manhwa-strip a {
        border-radius: 90px 90px 16px 16px;
    }

    .finished-copy dl {
        gap: 20px;
    }

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

    .quote-grid a {
        padding: 20px;
    }

    .guide-steps article {
        grid-template-columns: 44px 1fr;
        gap: 8px;
    }

    .guide-steps p {
        grid-column: 2;
    }

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

    .copyright {
        grid-column: auto;
    }

    .page-hero {
        margin-top: 24px;
        padding: 28px 24px 36px;
    }

    .page-hero-copy {
        margin-top: 30px;
        flex-direction: column;
    }

    .catalog-item {
        grid-template-columns: 100px minmax(0, 1fr);
        gap: 15px;
    }

    .catalog-copy > p:not(:first-child),
    .catalog-tags {
        display: none;
    }

    .catalog-copy h2 {
        font-size: 1.1rem;
    }

    .catalog-action {
        font-size: 0.82rem;
    }

    .reader-page .reader-header {
        margin-top: 24px;
        padding: 28px 22px;
    }

    .reader-title-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .reader-title-row h1 {
        font-size: 2.5rem;
    }

    .comic-reader {
        width: 100%;
    }

    .comic-panel {
        border-right: 0;
        border-left: 0;
        border-radius: 0;
    }

    .comic-panel figcaption {
        padding: 18px;
    }

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

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

    .chapter-link {
        min-width: 0;
    }

    .chapter-link strong {
        font-size: 0.82rem;
    }
}
