:root {
    --ink: #171512;
    --muted: #6f6960;
    --paper: #fffaf0;
    --paper-strong: #fffef9;
    --orange: #ff6b35;
    --orange-dark: #d94818;
    --red: #d92d3a;
    --yellow: #ffd166;
    --mint: #74c69d;
    --blue: #4d7cff;
    --lavender: #9a72d8;
    --line: #dfd7c9;
    --shadow: 0 18px 55px rgba(35, 25, 14, 0.11);
    --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, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    overflow-x: hidden;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image: radial-gradient(rgba(23, 21, 18, 0.055) 0.8px, transparent 0.8px);
    background-size: 18px 18px;
    content: "";
    pointer-events: none;
}

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

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

button,
input {
    font: inherit;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(223, 215, 201, 0.85);
    background: rgba(255, 250, 240, 0.93);
    backdrop-filter: blur(18px);
}

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

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

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

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

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

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

.main-nav {
    display: flex;
    flex: 1;
    justify-content: flex-end;
    gap: 4px;
}

.main-nav a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 11px;
    border-radius: 999px;
    color: #4e4942;
    font-size: 0.92rem;
    font-weight: 700;
    white-space: nowrap;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
    color: #ffffff;
    background: var(--ink);
    transform: translateY(-1px);
}

.nav-icon {
    display: grid;
    width: 19px;
    height: 19px;
    place-items: center;
    color: var(--orange);
    font-size: 0.95rem;
}

.main-nav a.is-active .nav-icon,
.main-nav a:hover .nav-icon {
    color: var(--yellow);
}

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

main > section,
.reader-page {
    margin-top: 88px;
}

.hero {
    display: grid;
    grid-template-columns: 1.03fr 0.97fr;
    min-height: 610px;
    margin-top: 56px;
    overflow: hidden;
    border: 2px solid var(--ink);
    border-radius: 34px;
    background: var(--paper-strong);
    box-shadow: var(--shadow);
}

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

.hero-label,
.kicker {
    display: inline-flex;
    align-items: center;
    width: max-content;
    color: var(--orange-dark);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.hero-label::before,
.kicker::before {
    width: 24px;
    height: 3px;
    margin-right: 10px;
    border-radius: 99px;
    background: currentColor;
    content: "";
}

.hero h1 {
    margin: 14px 0 0;
    font-family: "STKaiti", "KaiTi", serif;
    font-size: clamp(3.8rem, 7vw, 6.7rem);
    line-height: 1;
    letter-spacing: -0.08em;
}

.hero h1 a {
    position: relative;
}

.hero h1 a::after {
    position: absolute;
    right: -12px;
    bottom: 3px;
    left: 5px;
    z-index: -1;
    height: 18px;
    background: var(--yellow);
    content: "";
    transform: rotate(-2deg);
}

.hero-title {
    max-width: 540px;
    margin: 24px 0 10px;
    font-size: clamp(1.55rem, 3vw, 2.25rem);
    font-weight: 900;
    line-height: 1.3;
}

.hero-description {
    max-width: 590px;
    margin: 0;
    color: var(--muted);
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 2px solid var(--ink);
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 4px 4px 0 var(--ink);
}

.button-primary {
    color: #ffffff;
    background: var(--orange);
}

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

.hero-search {
    display: flex;
    max-width: 480px;
    margin-top: 22px;
    padding: 5px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #ffffff;
}

.hero-search input {
    min-width: 0;
    flex: 1;
    padding: 11px 14px;
    border: 0;
    outline: 0;
    background: transparent;
}

.hero-search button {
    border: 0;
    border-radius: 11px;
    color: #ffffff;
    background: var(--ink);
    padding-inline: 18px;
    cursor: pointer;
}

.hero-feature {
    position: relative;
    min-height: 610px;
    overflow: hidden;
    background: #c8d7f0;
}

.hero-feature::before {
    position: absolute;
    top: 22px;
    right: 22px;
    z-index: 2;
    width: 72px;
    height: 72px;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--yellow);
    content: "08";
    display: grid;
    place-items: center;
    font-weight: 900;
}

.hero-image {
    width: 100%;
    height: 100%;
    min-height: 610px;
    object-fit: cover;
}

.hero-card-caption {
    position: absolute;
    right: 26px;
    bottom: 26px;
    left: 26px;
    padding: 22px 24px;
    border: 2px solid var(--ink);
    border-radius: 19px;
    background: rgba(255, 254, 249, 0.94);
    box-shadow: 6px 6px 0 var(--ink);
}

.hero-card-caption span,
.hero-card-caption strong,
.hero-card-caption a {
    display: block;
}

.hero-card-caption span {
    color: var(--orange-dark);
    font-size: 0.78rem;
    font-weight: 800;
}

.hero-card-caption strong {
    margin: 3px 0;
    font-size: 1.35rem;
}

.hero-card-caption a {
    font-weight: 800;
}

.ticker-section {
    display: grid;
    grid-template-columns: 180px 1fr;
    margin-top: 28px;
    overflow: hidden;
    border: 2px solid var(--ink);
    border-radius: 16px;
    background: #ffffff;
}

.ticker-title {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 24px;
    color: #ffffff;
    background: var(--ink);
}

.ticker-title span {
    color: var(--yellow);
}

.ticker-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
}

.ticker-list span {
    padding: 12px 20px;
    border-right: 1px solid var(--line);
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
}

.ticker-list span:last-child {
    border-right: 0;
}

.section-heading {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    margin-bottom: 34px;
    gap: 12px 30px;
}

.section-heading .kicker {
    grid-column: 1 / -1;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
}

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

.latest-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 32px;
}

.latest-lead-card {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    overflow: hidden;
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 8px 8px 0 var(--yellow);
}

.latest-lead-card img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px;
}

.card-body h3 {
    margin: 12px 0;
    font-size: 1.8rem;
    line-height: 1.25;
}

.card-body p {
    margin: 0 0 22px;
    color: var(--muted);
}

.card-body a,
.text-link {
    color: var(--orange-dark);
    font-weight: 900;
}

.badge {
    display: inline-flex;
    width: max-content;
    padding: 5px 11px;
    border-radius: 999px;
    color: #a23211;
    background: #ffe0d3;
    font-size: 0.75rem;
    font-weight: 800;
}

.latest-compact-list {
    display: grid;
    grid-template-rows: repeat(4, 1fr);
    border-top: 2px solid var(--ink);
}

.compact-update {
    display: grid;
    grid-template-columns: 52px 1fr auto;
    align-items: center;
    gap: 15px;
    padding: 18px 10px;
    border-bottom: 2px solid var(--ink);
    transition: padding 180ms ease, background 180ms ease;
}

.compact-update:hover {
    padding-left: 18px;
    background: #fff1c2;
}

.update-number {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--ink);
    border-radius: 50%;
    font-weight: 900;
}

.update-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.update-copy strong {
    font-size: 1.05rem;
}

.update-copy small,
.update-time {
    color: var(--muted);
}

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

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

.category-card {
    display: flex;
    min-height: 250px;
    flex-direction: column;
    padding: 28px;
    border: 2px solid var(--ink);
    border-radius: 22px;
    background: #ffffff;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.category-card:hover {
    transform: translateY(-7px) rotate(-1deg);
    box-shadow: 7px 7px 0 var(--ink);
}

.category-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 2px solid var(--ink);
    border-radius: 14px;
    background: var(--yellow);
    font-size: 1.45rem;
    font-weight: 900;
}

.category-card h3 {
    margin: 22px 0 8px;
    font-size: 1.3rem;
}

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

.category-count {
    margin-top: auto;
    padding-top: 18px;
    color: var(--orange-dark);
    font-size: 0.82rem;
    font-weight: 900;
}

.category-popular .category-icon,
.category-action .category-icon {
    color: #ffffff;
    background: var(--red);
}

.category-romance .category-icon,
.category-complete .category-icon {
    background: #ffb6c1;
}

.category-fantasy .category-icon {
    color: #ffffff;
    background: var(--lavender);
}

.category-campus .category-icon {
    background: var(--mint);
}

.ranking-section {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 70px;
    padding: 58px;
    border: 2px solid var(--ink);
    border-radius: 32px;
    color: #ffffff;
    background: var(--ink);
}

.ranking-section .section-heading {
    display: block;
    margin: 0;
}

.ranking-section .section-heading h2 {
    margin-top: 18px;
}

.ranking-section .section-heading p {
    margin-top: 16px;
    color: #c8c2b7;
}

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

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

.ranking-list li {
    display: grid;
    grid-template-columns: 54px 1fr auto 42px;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid #403c36;
}

.ranking-list li:first-child {
    padding-top: 0;
}

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

.rank-number {
    color: var(--yellow);
    font-family: Georgia, serif;
    font-size: 1.8rem;
    font-style: italic;
}

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

.ranking-list small,
.rank-reads {
    color: #ada69b;
}

.ranking-list a {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid #5a554e;
    border-radius: 50%;
}

.korean-section {
    display: grid;
    grid-template-columns: 0.74fr 1.26fr;
    gap: 56px;
}

.korean-intro {
    position: sticky;
    top: 120px;
    align-self: start;
    padding: 42px;
    border: 2px solid var(--ink);
    border-radius: 100px 24px 24px;
    background: #e8deff;
}

.korean-intro h2 {
    margin: 18px 0;
    font-size: 2.5rem;
    line-height: 1.2;
}

.korean-intro p {
    color: #544d60;
}

.korean-stack {
    display: grid;
    gap: 24px;
}

.strip-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    min-height: 250px;
    overflow: hidden;
    border: 2px solid var(--ink);
    border-radius: 20px;
    background: #ffffff;
}

.strip-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.strip-card > div {
    padding: 30px;
}

.strip-card span {
    color: var(--lavender);
    font-size: 0.78rem;
    font-weight: 900;
}

.strip-card h3 {
    margin: 8px 0;
    font-size: 1.45rem;
}

.strip-card p {
    color: var(--muted);
}

.strip-card a {
    color: var(--orange-dark);
    font-weight: 900;
}

.editor-grid {
    display: grid;
    grid-template-columns: 1fr 1.16fr 0.9fr 1.04fr;
    align-items: stretch;
    gap: 16px;
}

.editor-pick {
    display: flex;
    min-height: 310px;
    flex-direction: column;
    padding: 28px;
    border: 2px solid var(--ink);
    background: #ffffff;
}

.editor-pick:nth-child(1) {
    border-radius: 70px 18px 18px;
    background: #dff7ea;
}

.editor-pick:nth-child(2) {
    border-radius: 18px;
    background: #fff0b8;
    transform: translateY(20px);
}

.editor-pick:nth-child(3) {
    border-radius: 18px 70px 18px 18px;
    background: #dfe8ff;
}

.editor-pick:nth-child(4) {
    border-radius: 18px 18px 70px 18px;
    background: #ffdce1;
    transform: translateY(20px);
}

.editor-pick span {
    font-family: Georgia, serif;
    font-size: 2.6rem;
    font-style: italic;
}

.editor-pick h3 {
    margin: 22px 0 8px;
    font-size: 1.35rem;
}

.editor-pick p {
    margin: 0;
    color: var(--muted);
}

.editor-pick strong {
    margin-top: auto;
    padding-top: 24px;
}

.mood-section {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    overflow: hidden;
    border: 2px solid var(--ink);
    border-radius: 30px;
    background: var(--orange);
}

.mood-question {
    padding: 48px;
    color: #ffffff;
}

.mood-question > span {
    font-size: 3rem;
}

.mood-question h2 {
    margin: 8px 0;
    font-size: 2.4rem;
}

.mood-question p {
    margin: 0;
}

.mood-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--ink);
}

.mood-options a {
    display: grid;
    min-height: 120px;
    place-items: center;
    padding: 20px;
    background: #ffffff;
    font-size: 1.08rem;
    font-weight: 900;
    text-align: center;
    transition: background 180ms ease;
}

.mood-options a:hover {
    background: var(--yellow);
}

.complete-shelf {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.book-card {
    position: relative;
}

.book-card > a {
    position: relative;
    display: block;
    overflow: hidden;
    border: 2px solid var(--ink);
    border-radius: 12px 28px 28px 12px;
    box-shadow: -8px 8px 0 #d9cbb7;
}

.book-cover {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    transition: transform 300ms ease;
}

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

.complete-ribbon {
    position: absolute;
    top: 20px;
    left: 0;
    padding: 7px 16px;
    color: #ffffff;
    background: var(--red);
    font-size: 0.78rem;
    font-weight: 900;
}

.book-card h3 {
    margin: 24px 0 6px;
    font-size: 1.4rem;
}

.book-card p {
    margin: 0;
    color: var(--muted);
}

.guide-panel {
    position: relative;
    overflow: hidden;
    padding: 58px;
    border-radius: 32px;
    color: #ffffff;
    background: #2b2460;
}

.guide-panel::after {
    position: absolute;
    top: -100px;
    right: -70px;
    width: 280px;
    height: 280px;
    border: 50px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    content: "";
}

.guide-index {
    color: #cbbcff;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.15em;
}

.guide-panel h2 {
    max-width: 520px;
    margin: 12px 0 34px;
    font-size: 2.5rem;
    line-height: 1.2;
}

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

.guide-steps > div {
    padding-top: 24px;
    border-top: 1px solid #595183;
}

.guide-steps strong {
    color: var(--yellow);
    font-family: Georgia, serif;
    font-size: 1.8rem;
}

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

.guide-steps p {
    margin: 0;
    color: #d8d2ef;
}

.numbers-section {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 54px;
}

.numbers-title span {
    color: var(--orange-dark);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.15em;
}

.numbers-title h2 {
    max-width: 420px;
    margin: 14px 0 0;
    font-size: 2.6rem;
    line-height: 1.2;
}

.number-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 2px solid var(--ink);
    border-radius: 24px;
    background: #ffffff;
}

.number-cards > div {
    display: flex;
    min-height: 150px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--line);
}

.number-cards > div:last-child {
    border-right: 0;
}

.number-cards strong {
    font-family: Georgia, serif;
    font-size: 2rem;
}

.number-cards span {
    color: var(--muted);
    font-size: 0.86rem;
}

.faq-section {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 60px;
}

.faq-section .section-heading {
    display: block;
    align-self: start;
}

.faq-section .section-heading h2,
.faq-section .section-heading p {
    margin-top: 18px;
}

.faq-list {
    border-top: 2px solid var(--ink);
}

.faq-list details {
    border-bottom: 2px solid var(--ink);
}

.faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    font-size: 1.05rem;
    font-weight: 900;
    cursor: pointer;
    list-style: none;
}

.faq-list summary::after {
    content: "+";
    font-size: 1.6rem;
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list p {
    margin: -8px 0 24px;
    color: var(--muted);
}

.about-section {
    display: grid;
    grid-template-columns: 180px 1fr 0.72fr;
    align-items: center;
    gap: 46px;
    padding: 54px;
    border: 2px solid var(--ink);
    border-radius: 32px;
    background: #ffffff;
    box-shadow: 12px 12px 0 #ffdbc8;
}

.about-stamp {
    display: grid;
    width: 160px;
    height: 160px;
    place-items: center;
    border: 3px solid var(--red);
    border-radius: 50%;
    color: var(--red);
    transform: rotate(-7deg);
}

.about-stamp span {
    grid-row: 1;
    grid-column: 1;
    font-family: "STKaiti", "KaiTi", serif;
    font-size: 5rem;
    font-weight: 900;
}

.about-stamp small {
    grid-row: 2;
    grid-column: 1;
    margin-top: -45px;
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.about-copy h2 {
    margin: 12px 0 16px;
    font-size: 2.5rem;
}

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

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

.about-values li {
    margin: 12px 0;
    padding: 14px 18px;
    border-left: 4px solid var(--orange);
    border-radius: 0 12px 12px 0;
    background: var(--paper);
    font-weight: 700;
}

.app-section {
    display: grid;
    grid-template-columns: 1fr 250px;
    align-items: center;
    margin-bottom: 88px;
    padding: 56px;
    border: 2px solid var(--ink);
    border-radius: 34px;
    color: #ffffff;
    background: var(--orange);
    box-shadow: 12px 12px 0 var(--ink);
}

.app-copy {
    max-width: 700px;
}

.app-copy .kicker {
    color: #ffe6c7;
}

.app-copy h2 {
    margin: 15px 0;
    font-size: 2.7rem;
    line-height: 1.2;
}

.app-copy p {
    font-size: 1.05rem;
}

.app-actions .button-primary {
    color: var(--ink);
    background: var(--yellow);
}

.app-actions span {
    font-size: 0.82rem;
}

.qr-placeholder {
    justify-self: end;
    width: 210px;
    padding: 18px;
    border: 2px solid var(--ink);
    border-radius: 22px;
    color: var(--ink);
    background: #ffffff;
    text-align: center;
}

.qr-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
    aspect-ratio: 1;
    margin-bottom: 12px;
    padding: 9px;
    border: 1px solid var(--line);
}

.qr-grid span {
    display: block;
    border-radius: 2px;
    background: #ffffff;
}

.qr-grid span.filled {
    background: var(--ink);
}

.site-footer {
    padding: 58px 0 24px;
    color: #ffffff;
    background: var(--ink);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.7fr 0.9fr;
    gap: 60px;
}

.footer-brand strong {
    font-family: "STKaiti", "KaiTi", serif;
    font-size: 2.3rem;
}

.footer-brand p,
.footer-note p {
    max-width: 420px;
    color: #bdb6aa;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links h2,
.footer-note h2 {
    margin-top: 0;
    font-size: 1rem;
}

.footer-links a {
    width: max-content;
    margin: 4px 0;
    color: #bdb6aa;
}

.footer-links a:hover {
    color: var(--yellow);
}

.copyright {
    display: flex;
    justify-content: space-between;
    margin-top: 44px;
    padding-top: 22px;
    border-top: 1px solid #3d3933;
    color: #8f887d;
    font-size: 0.82rem;
}

.column-hero {
    margin-top: 48px;
}

.column-hero > .section-shell {
    padding: 44px 50px 52px;
    border: 2px solid var(--ink);
    border-radius: 30px;
    background: #fff0b8;
    box-shadow: var(--shadow);
}

.column-popular > .section-shell,
.column-action > .section-shell {
    color: #ffffff;
    background: #c83c43;
}

.column-romance > .section-shell,
.column-complete > .section-shell {
    background: #ffdce1;
}

.column-fantasy > .section-shell {
    color: #ffffff;
    background: #6850a4;
}

.column-campus > .section-shell {
    background: #bfead5;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    color: inherit;
    font-size: 0.86rem;
    opacity: 0.78;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.column-title-row {
    display: grid;
    grid-template-columns: 1fr 140px;
    align-items: end;
    gap: 30px;
    margin-top: 34px;
}

.column-title-row h1 {
    margin: 14px 0 12px;
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    line-height: 1;
}

.column-title-row p {
    max-width: 720px;
    margin: 0;
    font-size: 1.05rem;
}

.column-symbol {
    display: grid;
    width: 120px;
    height: 120px;
    place-items: center;
    border: 3px solid currentColor;
    border-radius: 50%;
    font-size: 3.5rem;
    transform: rotate(7deg);
}

.catalog-toolbar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 28px;
}

.catalog-toolbar h2 {
    margin: 0;
    font-size: 2.2rem;
}

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

.catalog-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    border-radius: 999px;
    color: #17613f;
    background: #dff7ea;
    font-size: 0.82rem;
    font-weight: 800;
}

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

.catalog-card {
    overflow: hidden;
    border: 2px solid var(--ink);
    border-radius: 22px;
    background: #ffffff;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.catalog-card:hover {
    transform: translateY(-6px);
    box-shadow: 8px 8px 0 var(--ink);
}

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

.catalog-cover img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 300ms ease;
}

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

.catalog-number {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--yellow);
    font-weight: 900;
}

.catalog-copy {
    padding: 24px;
}

.catalog-copy h3 {
    margin: 14px 0 2px;
    font-size: 1.4rem;
}

.catalog-copy > strong {
    color: var(--orange-dark);
    font-size: 0.9rem;
}

.catalog-copy p {
    min-height: 84px;
    margin: 12px 0 18px;
    color: var(--muted);
}

.catalog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.catalog-meta time {
    color: var(--muted);
    font-size: 0.76rem;
}

.catalog-meta a {
    font-size: 0.86rem;
    font-weight: 900;
}

.column-note {
    display: grid;
    grid-template-columns: 76px 1fr;
    align-items: center;
    gap: 24px;
    margin-bottom: 88px;
    padding: 30px 34px;
    border: 2px dashed #b8ab98;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.55);
}

.column-note-icon {
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    border-radius: 20px;
    color: #ffffff;
    background: var(--ink);
    font-size: 1.7rem;
}

.column-note h2 {
    margin: 0 0 7px;
    font-size: 1.25rem;
}

.column-note p {
    margin: 0;
    color: var(--muted);
}

.reader-page {
    margin-top: 48px;
    margin-bottom: 88px;
}

.reader-page > .breadcrumb {
    margin-bottom: 20px;
}

.reader-header {
    padding: 48px;
    border: 2px solid var(--ink);
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 10px 10px 0 var(--yellow);
    text-align: center;
}

.reader-category {
    display: inline-flex;
    padding: 6px 14px;
    border-radius: 999px;
    color: #ffffff;
    background: var(--orange);
    font-size: 0.78rem;
    font-weight: 900;
}

.reader-header h1 {
    margin: 18px 0 4px;
    font-size: clamp(2.6rem, 7vw, 5rem);
    line-height: 1.08;
}

.reader-chapter {
    margin: 0;
    color: var(--orange-dark);
    font-size: 1.25rem;
    font-weight: 900;
}

.reader-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 24px;
    margin-top: 20px;
    color: var(--muted);
    font-size: 0.86rem;
}

.reader-summary {
    max-width: 720px;
    margin: 26px auto 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.reader-actions {
    justify-content: center;
}

.reading-note {
    display: grid;
    grid-template-columns: 130px 1fr;
    align-items: center;
    gap: 22px;
    margin: 48px 0;
    padding: 22px 28px;
    border-left: 5px solid var(--blue);
    border-radius: 0 16px 16px 0;
    background: #eaf0ff;
}

.reading-note strong {
    font-size: 1.06rem;
}

.reading-note p {
    margin: 0;
    color: #4d5870;
}

.comic-reader {
    width: min(920px, 100%);
    margin-inline: auto;
}

.comic-panel {
    margin: 0 0 46px;
    overflow: hidden;
    border: 2px solid var(--ink);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.comic-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: #eee7da;
}

.comic-panel figcaption {
    display: grid;
    grid-template-columns: 100px 1fr;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
}

.comic-panel figcaption span {
    color: var(--orange-dark);
    font-family: Georgia, serif;
    font-size: 0.82rem;
    font-weight: 900;
}

.comic-panel figcaption p {
    margin: 0;
    color: var(--muted);
}

.chapter-end {
    width: min(760px, 100%);
    margin: 70px auto 36px;
    padding: 42px;
    border: 2px solid var(--ink);
    border-radius: 50% 50% 18px 18px / 30px 30px 18px 18px;
    background: #fff0b8;
    text-align: center;
}

.chapter-end > span {
    color: var(--red);
}

.chapter-end h2 {
    margin: 10px 0;
    font-size: 1.8rem;
}

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

.chapter-navigation {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    gap: 14px;
}

.chapter-link {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border: 2px solid var(--ink);
    border-radius: 15px;
    background: #ffffff;
    font-weight: 800;
    text-align: center;
}

.chapter-link.next {
    color: #ffffff;
    background: var(--ink);
}

.chapter-link.back {
    color: #ffffff;
    background: var(--orange);
}

.chapter-link.is-disabled {
    color: #9a9389;
    border-color: var(--line);
    background: #f2eee6;
}

.toast {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 100;
    max-width: 340px;
    padding: 14px 18px;
    border: 2px solid var(--ink);
    border-radius: 14px;
    color: #ffffff;
    background: var(--ink);
    box-shadow: 6px 6px 0 var(--orange);
    font-weight: 700;
    animation: toast-in 220ms ease both;
}

@keyframes toast-in {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
}

@media (max-width: 1080px) {
    .header-shell {
        gap: 12px;
    }

    .brand-copy small {
        display: none;
    }

    .main-nav a {
        padding-inline: 8px;
        font-size: 0.86rem;
    }

    .hero-copy {
        padding: 44px;
    }

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

    .ranking-section,
    .korean-section,
    .faq-section {
        gap: 38px;
    }

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

    .editor-pick:nth-child(2),
    .editor-pick:nth-child(4) {
        transform: none;
    }

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

    .number-cards > div:nth-child(2) {
        border-right: 0;
    }

    .number-cards > div:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .about-section {
        grid-template-columns: 150px 1fr;
    }

    .about-values {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

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

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

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

    .main-nav {
        position: absolute;
        top: calc(100% + 1px);
        right: 20px;
        left: 20px;
        display: none;
        grid-template-columns: repeat(2, 1fr);
        padding: 14px;
        border: 2px solid var(--ink);
        border-radius: 18px;
        background: #ffffff;
        box-shadow: var(--shadow);
    }

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

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

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

    .hero-feature,
    .hero-image {
        min-height: 480px;
    }

    .ticker-section {
        grid-template-columns: 1fr;
    }

    .ticker-title {
        justify-content: center;
    }

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

    .ticker-list span:nth-child(2) {
        border-right: 0;
    }

    .ticker-list span:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .latest-layout,
    .ranking-section,
    .korean-section,
    .mood-section,
    .numbers-section,
    .faq-section {
        grid-template-columns: 1fr;
    }

    .korean-intro {
        position: static;
    }

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

    .complete-shelf {
        gap: 46px;
    }

    .book-card {
        display: grid;
        grid-template-columns: 0.7fr 1fr;
        align-items: center;
        gap: 26px;
    }

    .book-card p,
    .book-card h3 {
        grid-column: 2;
    }

    .book-card h3 {
        align-self: end;
        margin: 0 0 -12px;
    }

    .book-card p {
        align-self: start;
    }

    .book-card > a {
        grid-row: 1 / 3;
    }

    .about-section {
        grid-template-columns: 1fr;
    }

    .about-stamp {
        width: 120px;
        height: 120px;
    }

    .about-values {
        grid-column: auto;
        grid-template-columns: 1fr;
    }

    .app-section {
        grid-template-columns: 1fr 180px;
    }

    .qr-placeholder {
        width: 170px;
    }
}

@media (max-width: 640px) {
    .section-shell,
    .header-shell,
    .footer-grid,
    .copyright {
        width: min(100% - 24px, 1200px);
    }

    main > section,
    .reader-page {
        margin-top: 64px;
    }

    .hero {
        margin-top: 28px;
        border-radius: 22px;
    }

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

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

    .hero-title {
        font-size: 1.55rem;
    }

    .hero-search {
        flex-direction: column;
    }

    .hero-search button {
        min-height: 44px;
    }

    .hero-feature,
    .hero-image {
        min-height: 400px;
    }

    .hero-card-caption {
        right: 16px;
        bottom: 16px;
        left: 16px;
    }

    .section-heading {
        display: block;
    }

    .section-heading h2 {
        margin-top: 14px;
        font-size: 2.15rem;
    }

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

    .latest-lead-card,
    .strip-card {
        grid-template-columns: 1fr;
    }

    .latest-lead-card img {
        aspect-ratio: 16 / 10;
    }

    .compact-update {
        grid-template-columns: 46px 1fr;
    }

    .update-time {
        display: none;
    }

    .category-grid,
    .editor-grid,
    .mood-options,
    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        min-height: 220px;
    }

    .ranking-section,
    .guide-panel,
    .about-section,
    .app-section {
        padding: 34px 24px;
        border-radius: 22px;
    }

    .ranking-list li {
        grid-template-columns: 42px 1fr 36px;
    }

    .rank-reads {
        display: none;
    }

    .korean-intro {
        padding: 34px 26px;
        border-radius: 70px 20px 20px;
    }

    .book-card {
        display: block;
    }

    .book-card h3 {
        margin-top: 22px;
    }

    .numbers-title h2 {
        font-size: 2.15rem;
    }

    .number-cards {
        grid-template-columns: 1fr 1fr;
    }

    .about-stamp {
        justify-self: center;
    }

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

    .app-copy h2 {
        font-size: 2.15rem;
    }

    .qr-placeholder {
        justify-self: center;
        width: 190px;
        margin-top: 30px;
    }

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

    .copyright {
        flex-direction: column;
        gap: 6px;
    }

    .column-hero {
        margin-top: 28px;
    }

    .column-hero > .section-shell {
        padding: 30px 24px;
        border-radius: 22px;
    }

    .column-title-row {
        grid-template-columns: 1fr;
    }

    .column-symbol {
        width: 84px;
        height: 84px;
        font-size: 2.5rem;
    }

    .catalog-toolbar {
        align-items: start;
        flex-direction: column;
        gap: 16px;
    }

    .catalog-copy p {
        min-height: 0;
    }

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

    .reader-header {
        padding: 34px 20px;
        border-radius: 22px;
    }

    .reader-header h1 {
        font-size: 2.7rem;
    }

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

    .comic-panel {
        margin-bottom: 30px;
        border-radius: 16px;
    }

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

    .comic-panel figcaption {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .chapter-end {
        padding: 32px 22px;
    }

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

    .chapter-link.back {
        grid-row: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
