:root {
    --ink: #14213d;
    --navy: #102a43;
    --blue: #176b87;
    --sky: #e7f5f7;
    --coral: #ff6b5f;
    --gold: #f7c948;
    --paper: #f7fafc;
    --white: #ffffff;
    --muted: #65758b;
    --line: #dfe8ef;
    --shadow: 0 18px 48px rgba(16, 42, 67, 0.12);
    --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.75;
    overflow-x: hidden;
}

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

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

button {
    font: inherit;
}

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

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

.header-inner {
    display: flex;
    min-height: 84px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.brand-mark {
    display: grid;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    place-items: center;
    color: var(--white);
    background: var(--coral);
    border: 3px solid var(--ink);
    border-radius: 15px 15px 15px 5px;
    font-size: 24px;
    font-weight: 900;
    box-shadow: 4px 4px 0 var(--gold);
}

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

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

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

.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    display: flex;
    min-width: 60px;
    padding: 9px 8px;
    flex-direction: column;
    align-items: center;
    border-radius: 12px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.25;
    transition: 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: var(--navy);
    transform: translateY(-2px);
}

.nav-icon {
    font-size: 18px;
    font-weight: 800;
}

.nav-toggle {
    display: none;
    padding: 8px 12px;
    align-items: center;
    gap: 6px;
    color: var(--white);
    background: var(--navy);
    border: 0;
    border-radius: 10px;
}

.hero {
    display: grid;
    min-height: 600px;
    margin-top: 56px;
    padding: 64px;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 60px;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(135deg, #102a43 0%, #164e63 70%, #176b87 100%);
    border-radius: 36px;
    box-shadow: var(--shadow);
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.hero-kicker,
.eyebrow {
    display: inline-block;
    color: var(--coral);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 16px 0 18px;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.hero h1 a:hover {
    color: var(--gold);
}

.hero-copy > p {
    max-width: 600px;
    margin: 0;
    color: #d9edf1;
    font-size: 18px;
}

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

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

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

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

.button.secondary {
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
}

.button.pale {
    color: var(--navy);
    background: var(--sky);
}

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

.hero-stats div {
    padding-left: 14px;
    border-left: 3px solid var(--coral);
}

.hero-stats dt {
    font-size: 24px;
    font-weight: 900;
}

.hero-stats dd {
    margin: 0;
    color: #b8d8df;
    font-size: 13px;
}

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

.hero-visual::before {
    position: absolute;
    inset: 8% -30% auto auto;
    width: 380px;
    height: 380px;
    content: "";
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.9;
}

.hero-card {
    position: relative;
    z-index: 2;
    overflow: hidden;
    background: var(--white);
    border: 8px solid var(--white);
    border-radius: 28px;
    box-shadow: 18px 22px 0 rgba(0, 0, 0, 0.18);
    transform: rotate(3deg);
}

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

.hero-card-caption {
    display: flex;
    padding: 16px 18px;
    color: var(--ink);
    flex-direction: column;
}

.hero-card-caption span {
    color: var(--coral);
    font-size: 12px;
    font-weight: 800;
}

.hero-card-caption strong {
    font-size: 20px;
}

.floating-note {
    position: absolute;
    right: -18px;
    bottom: 34px;
    z-index: 4;
    display: flex;
    padding: 14px 18px;
    color: var(--ink);
    background: var(--gold);
    border: 3px solid var(--ink);
    border-radius: 16px;
    flex-direction: column;
    transform: rotate(-4deg);
}

.ticker {
    display: flex;
    margin-top: 28px;
    padding: 18px 24px;
    align-items: center;
    gap: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
}

.ticker-label {
    padding: 4px 9px;
    color: var(--white);
    background: var(--coral);
    border-radius: 7px;
    font-size: 12px;
    font-weight: 900;
}

.ticker p {
    margin: 0;
    flex: 1;
}

.ticker a,
.text-link {
    color: var(--blue);
    font-weight: 800;
}

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

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

.section-heading.centered {
    text-align: center;
    align-items: center;
    flex-direction: column;
    gap: 6px;
}

.section-heading h2,
.spotlight-copy h2,
.mood-copy h2,
.about-title h2,
.app-copy h2 {
    margin: 6px 0 0;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.2;
}

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

.section-icon {
    display: inline-grid;
    width: 38px;
    height: 38px;
    margin-right: 8px;
    place-items: center;
    color: var(--white);
    background: var(--blue);
    border-radius: 11px;
    font-size: 20px;
    font-weight: 900;
}

.section-icon.light,
.eyebrow.light {
    color: var(--gold);
}

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

.category-card {
    display: grid;
    min-height: 168px;
    padding: 24px;
    grid-template-columns: auto 1fr auto;
    align-items: start;
    gap: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    transition: 0.2s ease;
}

.category-card:hover {
    border-color: var(--coral);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.category-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--white);
    background: var(--navy);
    border-radius: 13px;
    font-size: 22px;
}

.category-icon.large {
    width: 58px;
    height: 58px;
    margin-bottom: 16px;
    font-size: 30px;
}

.category-text {
    display: flex;
    flex-direction: column;
}

.category-text strong {
    font-size: 18px;
}

.category-text small {
    margin-top: 6px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.arrow {
    color: var(--coral);
    font-size: 22px;
}

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

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

.comic-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    transition: 0.25s ease;
}

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

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

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

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

.status-badge {
    position: absolute;
    right: 12px;
    bottom: 12px;
    padding: 5px 10px;
    color: var(--white);
    background: rgba(16, 42, 67, 0.9);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
}

.card-body {
    padding: 20px;
}

.card-body h3 {
    margin: 5px 0 8px;
    font-size: 20px;
}

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

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

.ranking-section {
    display: grid;
    padding: 52px;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 52px;
    color: var(--white);
    background: var(--navy);
    border-radius: 30px;
}

.ranking-copy p {
    color: #bcd0df;
}

.ranking-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ranking-list li {
    display: grid;
    padding: 14px 0;
    grid-template-columns: 48px 1fr auto;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.rank-no {
    color: var(--gold);
    font-size: 22px;
    font-weight: 900;
}

.ranking-list a {
    display: flex;
    flex-direction: column;
}

.ranking-list small {
    color: #9db7c8;
}

.trend {
    color: #70d6a2;
}

.spotlight-section {
    display: grid;
    padding: 28px;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 54px;
    background: var(--white);
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.wide-image {
    aspect-ratio: 1 / 1;
    border-radius: 22px;
}

.spotlight-copy {
    padding-right: 34px;
}

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

.check-list {
    margin: 22px 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    margin: 9px 0;
}

.check-list li::before {
    margin-right: 10px;
    color: var(--coral);
    content: "✓";
    font-weight: 900;
}

.update-board {
    padding: 42px;
    background: #e7f5f7;
    border-radius: 28px;
}

.timeline-item {
    display: grid;
    padding: 20px 0;
    grid-template-columns: 70px 18px 1fr;
    align-items: start;
    gap: 18px;
    border-top: 1px solid #c5dfe4;
}

.timeline-item time {
    color: var(--blue);
    font-weight: 900;
}

.timeline-dot {
    width: 14px;
    height: 14px;
    margin-top: 7px;
    background: var(--coral);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--coral);
}

.timeline-item p {
    margin: 3px 0 0;
    color: var(--muted);
}

.mood-section {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    align-items: center;
    gap: 50px;
}

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

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

.mood-chip {
    display: grid;
    min-height: 90px;
    padding: 18px;
    place-items: center;
    border-radius: 22px;
    font-size: 18px;
    font-weight: 900;
    transition: 0.2s ease;
}

.mood-chip:hover {
    transform: rotate(-2deg) scale(1.03);
}

.mood-chip.coral {
    background: #ffd8d3;
}

.mood-chip.blue {
    background: #cbe9ef;
}

.mood-chip.ink {
    color: var(--white);
    background: var(--ink);
}

.mood-chip.gold {
    background: #ffedb3;
}

.mood-chip.mint {
    background: #cceede;
}

.mood-chip.violet {
    background: #ded8ff;
}

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

.step-grid article {
    position: relative;
    padding: 34px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 24px;
}

.step-grid article > span {
    color: var(--coral);
    font-size: 42px;
    font-weight: 900;
    opacity: 0.35;
}

.step-grid h3 {
    margin: 4px 0;
    font-size: 22px;
}

.step-grid p {
    margin: 0;
    color: var(--muted);
}

.quote-section {
    padding: 56px;
    text-align: center;
    color: var(--white);
    background: var(--coral);
    border-radius: 50% 28px 50% 28px / 18% 42px 18% 42px;
}

.quote-mark {
    height: 50px;
    color: var(--gold);
    font-family: Georgia, serif;
    font-size: 76px;
    line-height: 1;
}

.quote-section blockquote {
    max-width: 820px;
    margin: 18px auto 30px;
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 800;
    line-height: 1.5;
}

.reader-notes {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.reader-notes span {
    padding: 7px 13px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 99px;
}

.about-section {
    display: grid;
    padding: 56px;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 60px;
    color: var(--white);
    background: var(--blue);
    border-radius: 30px;
}

.about-copy {
    columns: 2;
    column-gap: 36px;
}

.about-copy p {
    margin: 0 0 18px;
    break-inside: avoid;
    color: #e1f0f3;
}

.app-section {
    display: grid;
    margin-bottom: 96px;
    padding: 54px;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 60px;
    color: var(--white);
    background: var(--navy);
    border-radius: 30px;
}

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

.subscribe-feedback {
    display: none;
    margin-left: 12px;
    color: var(--gold);
    font-size: 14px;
}

.subscribe-feedback.show {
    display: inline;
}

.qr-wrap {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.qr-graphic {
    display: grid;
    width: 142px;
    height: 142px;
    padding: 16px;
    place-items: center;
    color: var(--white);
    background-color: var(--white);
    background-image: repeating-conic-gradient(var(--ink) 0 25%, var(--white) 0 50%);
    background-size: 22px 22px;
    border: 8px solid var(--white);
    border-radius: 12px;
}

.qr-graphic span {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    background: var(--coral);
    border-radius: 12px;
    font-size: 26px;
    font-weight: 900;
}

.qr-wrap strong {
    margin-top: 10px;
}

.qr-wrap small {
    color: #9db7c8;
}

.site-footer {
    padding: 50px 0 30px;
    color: #d8e4ec;
    background: #0b1f33;
}

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

.footer-brand p {
    max-width: 560px;
    margin: 4px 0 0;
    color: #92a9b9;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.copyright {
    margin: 8px 0 0;
    grid-column: 1 / -1;
    color: #71899b;
    font-size: 13px;
}

.back-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 30;
    display: none;
    width: 46px;
    height: 46px;
    color: var(--white);
    background: var(--coral);
    border: 0;
    border-radius: 14px;
    box-shadow: var(--shadow);
    cursor: pointer;
}

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

.inner-main,
.reader-main {
    padding-top: 42px;
    padding-bottom: 96px;
}

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

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

.category-hero {
    display: flex;
    min-height: 330px;
    padding: 54px;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: linear-gradient(130deg, #dff3f5, #ffffff);
    border: 1px solid var(--line);
    border-radius: 30px;
}

.category-hero > div {
    max-width: 720px;
}

.category-hero h1 {
    margin: 8px 0;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.15;
}

.category-hero p {
    color: var(--muted);
    font-size: 18px;
}

.category-hero dl {
    display: flex;
    margin: 0;
    gap: 16px;
}

.category-hero dl div {
    display: flex;
    width: 120px;
    height: 120px;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    flex-direction: column;
    box-shadow: var(--shadow);
}

.category-hero dt {
    color: var(--coral);
    font-size: 30px;
    font-weight: 900;
}

.category-hero dd {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.five-grid .card-body {
    padding: 15px;
}

.five-grid .card-body h3 {
    font-size: 17px;
}

.five-grid .card-meta {
    display: none;
}

.category-seo {
    display: grid;
    padding: 38px;
    grid-template-columns: auto 1fr;
    gap: 20px;
    background: var(--white);
    border-left: 5px solid var(--coral);
    border-radius: 20px;
}

.category-seo h2 {
    margin: 0;
}

.category-seo p {
    margin: 8px 0 0;
    color: var(--muted);
}

.reader-article {
    max-width: 920px;
    margin: 0 auto;
}

.article-header {
    padding: 52px;
    text-align: center;
    background: var(--white);
    border-radius: 28px;
}

.article-header h1 {
    margin: 12px 0 20px;
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.25;
}

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

.reading-notice {
    display: flex;
    margin-top: 24px;
    padding: 24px;
    gap: 16px;
    background: #fff6dd;
    border: 1px solid #f4dc94;
    border-radius: 18px;
}

.notice-icon {
    font-size: 28px;
}

.reading-notice p {
    margin: 3px 0 0;
    color: #725f35;
}

.chapter-intro {
    margin: 52px 0 28px;
    text-align: center;
}

.chapter-intro h2 {
    margin: 0;
    font-size: 30px;
}

.chapter-intro p {
    max-width: 720px;
    margin: 12px auto 0;
    color: var(--muted);
}

.reader-gallery {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.reader-frame {
    margin: 0;
    padding: 14px;
    background: var(--white);
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.reader-image {
    aspect-ratio: 4 / 5;
    background: #dfe8ef;
    border-radius: 14px;
}

.reader-frame figcaption {
    padding: 20px 14px 10px;
    color: var(--muted);
    font-size: 16px;
}

.chapter-end {
    margin-top: 54px;
    padding: 48px;
    text-align: center;
    color: var(--white);
    background: var(--navy);
    border-radius: 26px;
}

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

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

.chapter-end p {
    max-width: 620px;
    margin: 0 auto 22px;
    color: #bcd0df;
}

.chapter-nav {
    display: grid;
    margin-top: 24px;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.chapter-button {
    display: flex;
    min-height: 72px;
    padding: 16px 20px;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    font-weight: 800;
}

.chapter-button.next {
    justify-content: flex-end;
    text-align: right;
}

.chapter-button.disabled {
    color: #9aa9b8;
    background: #edf2f6;
}

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

    .site-nav {
        gap: 1px;
    }

    .nav-link {
        min-width: 52px;
        padding: 8px 5px;
        font-size: 12px;
    }

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

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

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

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

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

    .nav-toggle {
        display: flex;
    }

    .site-nav {
        display: none;
        width: 100%;
        padding: 0 0 14px;
        grid-template-columns: repeat(3, 1fr);
    }

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

    .nav-link {
        flex-direction: row;
        justify-content: center;
        gap: 5px;
    }

    .hero {
        min-height: auto;
        margin-top: 32px;
        padding: 42px 30px;
        grid-template-columns: 1fr;
    }

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

    .hero-card {
        max-width: 390px;
        margin: 0 auto;
    }

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

    .ranking-section,
    .spotlight-section,
    .mood-section,
    .about-section {
        grid-template-columns: 1fr;
    }

    .spotlight-copy {
        padding: 12px;
    }

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

    .about-copy {
        columns: 1;
    }

    .app-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .category-hero dl {
        width: 100%;
    }

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

    .copyright {
        grid-column: auto;
    }
}

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

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

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

    .hero-copy > p {
        font-size: 16px;
    }

    .hero-actions,
    .hero-stats {
        flex-direction: column;
    }

    .hero-stats {
        gap: 14px;
    }

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

    .ticker {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .ticker p {
        width: calc(100% - 70px);
    }

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

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

    .category-grid,
    .comic-grid,
    .five-grid,
    .mood-cloud {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .category-card {
        min-height: 190px;
        padding: 18px;
        grid-template-columns: 1fr;
    }

    .category-card .arrow {
        display: none;
    }

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

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

    .card-body p,
    .card-meta {
        display: none;
    }

    .ranking-section,
    .update-board,
    .quote-section,
    .about-section,
    .app-section,
    .category-hero,
    .article-header,
    .chapter-end {
        padding: 28px 20px;
        border-radius: 22px;
    }

    .ranking-list li {
        grid-template-columns: 38px 1fr auto;
    }

    .spotlight-section {
        padding: 16px;
        gap: 18px;
    }

    .mood-chip {
        min-height: 74px;
        padding: 12px;
        font-size: 15px;
    }

    .category-hero dl div {
        width: 104px;
        height: 104px;
    }

    .category-seo {
        padding: 24px;
        grid-template-columns: 1fr;
    }

    .reader-main {
        width: 100%;
    }

    .reader-main > .breadcrumb,
    .reader-main > .reader-article {
        width: calc(100% - 28px);
        margin-right: auto;
        margin-left: auto;
    }

    .reader-frame {
        padding: 7px;
        border-radius: 14px;
    }

    .reader-frame figcaption {
        padding: 14px 9px 8px;
    }

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

    .chapter-button.next {
        justify-content: flex-start;
        text-align: left;
    }

    .footer-links {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}
