:root {
    --ink: #241b25;
    --muted: #776d78;
    --paper: #fffdf9;
    --surface: #ffffff;
    --surface-warm: #fff6e9;
    --banana: #ffcb3d;
    --banana-deep: #ef9d16;
    --coral: #ff6b57;
    --plum: #6f4aa8;
    --mint: #dff5ea;
    --line: #eadfd5;
    --shadow: 0 18px 48px rgba(75, 48, 33, 0.10);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--paper);
    font-family: "Microsoft YaHei", "PingFang SC", system-ui, sans-serif;
    line-height: 1.7;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(234, 223, 213, 0.78);
    background: rgba(255, 253, 249, 0.92);
    backdrop-filter: blur(16px);
}

.header-shell,
.footer-shell,
.copyright,
main,
.inner-main {
    width: min(1200px, calc(100% - 40px));
    margin-right: auto;
    margin-left: auto;
}

.header-shell {
    display: flex;
    align-items: center;
    gap: 18px;
}

.brand {
    flex: 0 0 auto;
}

.brand img {
    width: 176px;
    height: 48px;
}

.main-nav {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.nav-link,
.category-jump {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 42px;
    padding: 8px 10px;
    color: #665d66;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    transition: 180ms ease;
}

.nav-link:hover,
.nav-link.is-active,
.category-jump:hover {
    color: var(--ink);
    background: #fff0c5;
}

.nav-link.is-active {
    box-shadow: inset 0 -2px 0 var(--banana-deep);
}

.nav-icon {
    font-size: 15px;
}

.category-jump {
    color: white;
    background: var(--ink);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    color: var(--ink);
    background: #fff0c5;
    cursor: pointer;
}

main {
    padding-top: 44px;
    padding-bottom: 88px;
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 64px;
    min-height: 570px;
    padding: 56px;
    overflow: hidden;
    border: 1px solid #f0dec1;
    border-radius: 36px;
    background: linear-gradient(135deg, #fff7d6 0%, #fffaf2 45%, #f8eafe 100%);
    box-shadow: var(--shadow);
}

.hero::before {
    position: absolute;
    top: -90px;
    right: 35%;
    width: 230px;
    height: 230px;
    border: 46px solid rgba(255, 203, 61, 0.18);
    border-radius: 50%;
    content: "";
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.hero-pill,
.reader-category {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    color: #7a4d00;
    border: 1px solid #efd17c;
    border-radius: 999px;
    background: #fff3c4;
    font-size: 13px;
    font-weight: 800;
}

.hero h1 {
    margin: 18px 0 10px;
    font-size: clamp(52px, 7vw, 88px);
    line-height: 1.05;
    letter-spacing: -5px;
}

.hero h1 a {
    background: linear-gradient(120deg, #2e2026, #75459f 70%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.hero-lead {
    max-width: 560px;
    margin: 0;
    color: #61545d;
    font-size: 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 11px 22px;
    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: #241b25;
    background: var(--banana);
    box-shadow: 0 10px 24px rgba(239, 157, 22, 0.26);
}

.button--ghost {
    border-color: var(--line);
    background: white;
}

.button--dark {
    color: white;
    background: var(--ink);
}

.button--disabled {
    color: #aaa1a8;
    border-color: var(--line);
    background: #f4f0ed;
    pointer-events: none;
}

.hero-metrics {
    display: flex;
    gap: 28px;
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid rgba(119, 109, 120, 0.18);
}

.hero-metrics div {
    display: flex;
    flex-direction: column;
}

.hero-metrics strong {
    font-size: 20px;
}

.hero-metrics span {
    color: var(--muted);
    font-size: 12px;
}

.hero-visual {
    position: relative;
    z-index: 2;
    padding: 18px;
}

.hero-visual > img {
    width: 100%;
    aspect-ratio: 4 / 5;
    border: 9px solid white;
    border-radius: 28px;
    object-fit: cover;
    box-shadow: 0 24px 50px rgba(58, 38, 54, 0.22);
    transform: rotate(2deg);
}

.floating-note {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 30px rgba(47, 30, 42, 0.16);
}

.floating-note div {
    display: flex;
    flex-direction: column;
}

.floating-note strong {
    font-size: 13px;
}

.floating-note span {
    font-size: 12px;
}

.floating-note--top {
    top: 7%;
    left: -4%;
}

.floating-note--bottom {
    right: -4%;
    bottom: 8%;
}

.notice-strip {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
    padding: 17px 22px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: white;
}

.notice-label {
    display: flex;
    gap: 8px;
    color: #9d4a2f;
}

.notice-content {
    display: flex;
    gap: 24px;
    overflow: hidden;
    color: var(--muted);
    font-size: 13px;
    white-space: nowrap;
}

.notice-strip > a,
.text-link {
    color: #6f4aa8;
    font-size: 14px;
    font-weight: 800;
}

.content-section {
    margin-top: 96px;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.section-heading__copy {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.section-icon {
    display: grid;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid #f0ddaa;
    border-radius: 14px;
    background: #fff5ce;
    font-size: 21px;
}

.eyebrow {
    display: block;
    margin-bottom: 3px;
    color: #9d6f23;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.section-heading h2,
.feature-story h2,
.about-copy h2,
.app-copy h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.2;
    letter-spacing: -1.5px;
}

.section-heading p {
    margin: 6px 0 0;
    color: var(--muted);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.category-card {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 118px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: white;
    box-shadow: 0 8px 24px rgba(70, 46, 31, 0.04);
    transition: 180ms ease;
}

.category-card:first-child {
    grid-column: span 2;
    background: linear-gradient(135deg, #fff2bb, #fffaf0);
}

.category-card:hover {
    border-color: #e4c064;
    box-shadow: 0 14px 30px rgba(70, 46, 31, 0.10);
    transform: translateY(-3px);
}

.category-card__icon {
    display: grid;
    flex: 0 0 48px;
    height: 48px;
    place-items: center;
    border-radius: 15px;
    background: var(--surface-warm);
    font-size: 24px;
}

.category-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.category-card__body strong {
    font-size: 17px;
}

.category-card__body small {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
}

.category-card__arrow {
    color: var(--banana-deep);
    font-size: 22px;
}

.comic-grid {
    display: grid;
    gap: 18px;
}

.comic-grid--five {
    grid-template-columns: repeat(5, 1fr);
}

.comic-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: white;
    transition: 180ms ease;
}

.comic-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.comic-cover {
    position: relative;
    display: block;
    overflow: hidden;
    background: #efe8e0;
}

.comic-cover img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform 300ms ease;
}

.comic-card:hover .comic-cover img {
    transform: scale(1.035);
}

.status-badge {
    position: absolute;
    right: 10px;
    bottom: 10px;
    padding: 5px 9px;
    color: white;
    border-radius: 999px;
    background: rgba(36, 27, 37, 0.82);
    font-size: 10px;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.comic-info {
    padding: 15px;
}

.comic-info h3 {
    margin: 2px 0 7px;
    font-size: 18px;
    line-height: 1.35;
}

.comic-info p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 12px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.feature-story {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: 56px;
    padding: 44px;
    border-radius: var(--radius-lg);
    background: #252029;
    color: white;
}

.feature-story__image img {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 20px;
    object-fit: cover;
}

.feature-story__copy p {
    color: #d8d0d8;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 22px 0 28px;
    list-style: none;
}

.tag-list li,
.about-values span {
    padding: 6px 11px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    font-size: 12px;
}

.ranking-section {
    padding: 42px;
    border: 1px solid #eed9c7;
    border-radius: var(--radius-lg);
    background: #fff8f2;
}

.ranking-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
}

.ranking-champion {
    display: grid;
    grid-template-columns: 190px 1fr;
    align-items: center;
    gap: 25px;
    padding: 20px;
    border-radius: 20px;
    background: white;
}

.ranking-champion img {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 14px;
    object-fit: cover;
}

.rank-number {
    color: var(--coral);
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
}

.ranking-champion h3 {
    margin: 10px 0;
    font-size: 28px;
}

.ranking-champion p {
    color: var(--muted);
    font-size: 14px;
}

.ranking-champion a {
    color: var(--plum);
    font-weight: 800;
}

.ranking-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.ranking-list li {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    border-radius: 14px;
    background: white;
}

.ranking-list li > span {
    color: #b9acb3;
    font-weight: 900;
}

.ranking-list div {
    display: flex;
    flex-direction: column;
}

.ranking-list a {
    font-weight: 800;
}

.ranking-list small {
    color: var(--muted);
}

.ranking-list em {
    color: #4caa7b;
    font-style: normal;
}

.korean-showcase {
    padding: 42px;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, #f1eaff, #fff9f1);
}

.poster-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.comic-card--compact .comic-info p {
    display: none;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.calendar-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: white;
}

.calendar-card > span {
    display: grid;
    width: 47px;
    height: 47px;
    place-items: center;
    border-radius: 13px;
    background: #fff1bf;
    font-size: 12px;
    font-weight: 900;
}

.calendar-card strong,
.calendar-card small {
    grid-column: 2;
}

.calendar-card small {
    margin-top: -12px;
    color: var(--muted);
}

.calendar-card a {
    grid-row: 1 / 3;
    grid-column: 3;
    color: var(--plum);
    font-size: 12px;
    font-weight: 800;
}

.reading-guide {
    padding: 42px;
    border-radius: var(--radius-lg);
    background: var(--mint);
}

.guide-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.guide-step {
    display: flex;
    gap: 16px;
    padding: 22px;
    border: 1px solid rgba(55, 119, 88, 0.15);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.72);
}

.guide-step > span {
    color: #3a9369;
    font-size: 24px;
    font-weight: 900;
}

.guide-step h3 {
    margin: 2px 0 8px;
}

.guide-step p {
    margin: 0;
    color: #597064;
    font-size: 13px;
}

.voice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.voice-card {
    display: flex;
    min-height: 210px;
    flex-direction: column;
    justify-content: space-between;
    padding: 26px;
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: white;
}

.voice-card > p {
    margin: 0;
    font-size: 16px;
}

.voice-card footer {
    display: flex;
    flex-direction: column;
}

.voice-card span {
    color: var(--muted);
    font-size: 12px;
}

.faq-section {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 56px;
}

.faq-section .section-heading {
    align-items: flex-start;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: white;
}

.faq-item summary {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    font-weight: 800;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.about-section {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 50px;
    padding: 48px;
    border-radius: var(--radius-lg);
    background: #2d2430;
    color: white;
}

.about-mark {
    display: flex;
    min-height: 330px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 22px;
    background: radial-gradient(circle at top, #765495, #3a2c41 66%);
    text-align: center;
}

.about-mark span {
    font-size: 92px;
}

.about-mark strong {
    margin-top: 16px;
}

.about-copy p {
    color: #d7ced8;
}

.about-values {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.app-subscribe {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 50px;
    margin-top: 96px;
    padding: 48px 58px;
    overflow: hidden;
    border-radius: 30px;
    background: linear-gradient(120deg, #ffcd3e, #ff9d55);
}

.app-copy {
    max-width: 720px;
}

.app-copy p {
    max-width: 650px;
}

.subscribe-form {
    display: flex;
    gap: 10px;
    margin-top: 23px;
}

.subscribe-form input {
    width: min(380px, 100%);
    min-height: 50px;
    padding: 0 16px;
    border: 1px solid rgba(36, 27, 37, 0.16);
    border-radius: 14px;
    outline: none;
}

.form-message {
    min-height: 26px;
    margin: 8px 0 0;
    font-size: 13px;
    font-weight: 700;
}

.brand-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.qr-pattern {
    display: grid;
    width: 150px;
    height: 150px;
    place-items: center;
    border: 10px solid white;
    border-radius: 16px;
    background-color: #292129;
    background-image: linear-gradient(45deg, #fff 25%, transparent 25%), linear-gradient(-45deg, #fff 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #fff 75%), linear-gradient(-45deg, transparent 75%, #fff 75%);
    background-position: 0 0, 0 12px, 12px -12px, -12px 0;
    background-size: 24px 24px;
}

.qr-pattern span {
    display: grid;
    width: 55px;
    height: 55px;
    place-items: center;
    border: 5px solid white;
    border-radius: 12px;
    background: var(--banana);
    font-size: 30px;
}

.site-footer {
    padding: 56px 20px 26px;
    color: #e9e1e8;
    background: #211a22;
}

.footer-shell {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 34px;
}

.footer-brand {
    color: var(--banana);
    font-size: 25px;
    font-weight: 900;
}

.footer-shell p {
    margin: 8px 0 0;
    color: #ad9fac;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-end;
    gap: 18px;
}

.copyright {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #8e828d;
    font-size: 12px;
}

.copyright p {
    margin: 0;
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 30;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    opacity: 0;
    color: white;
    background: var(--ink);
    box-shadow: var(--shadow);
    cursor: pointer;
    pointer-events: none;
    transition: 180ms ease;
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.inner-main {
    padding-top: 32px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
    color: var(--muted);
    font-size: 13px;
}

.breadcrumb a:hover {
    color: var(--plum);
}

.category-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 36px;
    padding: 48px;
    border: 1px solid #efdec0;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #fff2c4, #fffafa 65%, #f1e8ff);
}

.category-hero > div:first-child {
    max-width: 720px;
}

.category-hero__icon {
    display: block;
    margin-bottom: 10px;
    font-size: 40px;
}

.category-hero h1 {
    margin: 0;
    font-size: clamp(40px, 6vw, 64px);
    line-height: 1.15;
}

.category-hero p {
    margin: 14px 0 0;
    color: var(--muted);
}

.category-hero__stats {
    display: flex;
    gap: 18px;
}

.category-hero__stats div {
    display: flex;
    min-width: 85px;
    flex-direction: column;
    align-items: center;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.7);
}

.category-hero__stats strong {
    font-size: 20px;
}

.category-hero__stats span {
    color: var(--muted);
    font-size: 11px;
}

.category-content {
    margin-top: 70px;
}

.column-note {
    display: grid;
    grid-template-columns: 0.45fr 1.55fr;
    gap: 40px;
    margin-top: 72px;
    padding: 34px;
    border-radius: 20px;
    background: #f0ebf7;
}

.column-note div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.column-note h2,
.column-note p {
    margin: 0;
}

.column-note p {
    color: var(--muted);
}

.reader-main {
    max-width: 980px;
}

.reader-article {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: white;
    box-shadow: var(--shadow);
}

.reader-header {
    padding: 52px 60px 42px;
    text-align: center;
}

.reader-header h1 {
    max-width: 760px;
    margin: 17px auto 12px;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.25;
}

.reader-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 22px;
    color: var(--muted);
    font-size: 13px;
}

.reading-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 760px;
    padding: 17px 20px;
    margin: 28px auto 0;
    border-radius: 14px;
    background: #fff6d8;
    text-align: left;
}

.reading-notice p {
    margin: 0;
    color: #746342;
    font-size: 13px;
}

.chapter-content {
    padding: 48px 70px;
    background: #252127;
}

.chapter-intro {
    max-width: 720px;
    margin: 0 auto 32px;
    color: white;
    text-align: center;
}

.chapter-intro h2 {
    margin: 0 0 8px;
}

.chapter-intro p {
    margin: 0;
    color: #bfb4be;
}

.manga-panel {
    max-width: 760px;
    margin: 0 auto 30px;
}

.manga-panel img {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 8px;
    background: #39323a;
    object-fit: cover;
}

.manga-panel figcaption {
    padding-top: 8px;
    color: #958a94;
    font-size: 12px;
    text-align: center;
}

.chapter-end {
    max-width: 760px;
    padding: 36px;
    margin: 46px auto 0;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 18px;
    color: white;
    text-align: center;
}

.chapter-end span {
    font-size: 40px;
}

.chapter-end h2 {
    margin: 8px 0 4px;
}

.chapter-end p {
    margin: 0;
    color: #bfb4be;
}

.chapter-navigation {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 28px 40px 36px;
}

@media (max-width: 1100px) {
    .header-shell {
        flex-wrap: wrap;
    }

    .main-nav {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .category-jump {
        margin-left: auto;
    }

    .hero {
        gap: 32px;
        padding: 42px;
    }

    .comic-grid--five {
        grid-template-columns: repeat(3, 1fr);
    }

    .comic-grid--five .comic-card:nth-child(4),
    .comic-grid--five .comic-card:nth-child(5) {
        grid-column: span 1;
    }

    .comic-grid--five .comic-card:last-child:nth-child(5) {
        grid-column: 2;
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .category-card:first-child {
        grid-column: span 1;
    }

    .category-card:last-child {
        grid-column: 2;
    }

    .ranking-layout,
    .faq-section {
        grid-template-columns: 1fr;
    }

    .calendar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .site-header {
        padding: 10px 16px;
    }

    .header-shell,
    .footer-shell,
    .copyright,
    main,
    .inner-main {
        width: min(100% - 28px, 1200px);
    }

    .brand img {
        width: 150px;
        height: auto;
    }

    .menu-toggle {
        display: grid;
        margin-left: auto;
        place-items: center;
    }

    .category-jump {
        display: none;
    }

    .main-nav {
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 8px 0 4px;
        overflow: visible;
    }

    .main-nav.is-open {
        display: flex;
    }

    .nav-link {
        justify-content: flex-start;
        padding: 10px 14px;
    }

    main {
        padding-top: 28px;
        padding-bottom: 60px;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 30px 24px;
        border-radius: 24px;
    }

    .hero h1 {
        font-size: 52px;
        letter-spacing: -3px;
    }

    .hero-lead {
        font-size: 16px;
    }

    .hero-metrics {
        justify-content: space-between;
        gap: 12px;
    }

    .hero-visual {
        max-width: 430px;
        margin: 0 auto;
    }

    .floating-note--top {
        left: -2%;
    }

    .floating-note--bottom {
        right: -2%;
    }

    .notice-strip {
        grid-template-columns: 1fr auto;
    }

    .notice-content {
        grid-column: 1 / -1;
        grid-row: 2;
        overflow-x: auto;
    }

    .content-section {
        margin-top: 68px;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .category-grid,
    .comic-grid--five,
    .poster-row,
    .calendar-grid,
    .guide-steps,
    .voice-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-card:last-child,
    .comic-grid--five .comic-card:last-child:nth-child(5) {
        grid-column: 1 / -1;
    }

    .feature-story,
    .about-section {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 28px;
    }

    .ranking-section,
    .korean-showcase,
    .reading-guide {
        padding: 28px;
    }

    .ranking-champion {
        grid-template-columns: 130px 1fr;
    }

    .ranking-champion h3 {
        font-size: 22px;
    }

    .calendar-card {
        grid-template-columns: auto 1fr;
    }

    .calendar-card a {
        grid-row: auto;
        grid-column: 2;
    }

    .about-mark {
        min-height: 250px;
    }

    .app-subscribe {
        grid-template-columns: 1fr;
        padding: 34px 28px;
    }

    .brand-qr {
        justify-self: center;
    }

    .footer-shell,
    .copyright {
        flex-direction: column;
    }

    .footer-links {
        justify-content: flex-start;
    }

    .category-hero {
        align-items: flex-start;
        flex-direction: column;
        padding: 30px;
    }

    .category-hero__stats {
        width: 100%;
    }

    .category-hero__stats div {
        flex: 1;
        min-width: 0;
    }

    .column-note {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .reader-header {
        padding: 36px 22px 28px;
    }

    .chapter-content {
        padding: 34px 14px;
    }

    .chapter-navigation {
        grid-template-columns: 1fr;
        padding: 22px;
    }
}

@media (max-width: 480px) {
    .hero-actions,
    .subscribe-form {
        flex-direction: column;
    }

    .button,
    .subscribe-form input {
        width: 100%;
    }

    .hero-metrics {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .category-grid,
    .comic-grid--five,
    .poster-row,
    .calendar-grid,
    .guide-steps,
    .voice-grid {
        grid-template-columns: 1fr;
    }

    .category-card:last-child,
    .comic-grid--five .comic-card:last-child:nth-child(5) {
        grid-column: auto;
    }

    .ranking-champion {
        grid-template-columns: 1fr;
    }

    .ranking-champion img {
        max-height: 390px;
    }

    .ranking-list li {
        grid-template-columns: 34px 1fr;
    }

    .ranking-list em {
        display: none;
    }

    .category-hero__stats {
        gap: 7px;
    }

    .category-hero__stats div {
        padding: 10px 5px;
    }
}
