:root {
    --ink: #10140f;
    --paper: #f6f7f2;
    --white: #ffffff;
    --lime: #b8f22f;
    --lime-dark: #89c900;
    --mint: #dff9c7;
    --gray: #697067;
    --line: #dfe4d9;
    --night: #172018;
    --night-soft: #243128;
    --orange: #ff8b4d;
    --shadow: 0 18px 50px rgba(16, 20, 15, 0.1);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Microsoft YaHei", "PingFang SC", Arial, 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,
input {
    font: inherit;
}

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

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

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    border-bottom: 1px solid rgba(16, 20, 15, 0.08);
    background: rgba(246, 247, 242, 0.94);
    backdrop-filter: blur(16px);
}

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

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

.brand-mark {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 2px solid var(--ink);
    border-radius: 15px 15px 20px 20px;
    color: var(--ink);
    background: var(--lime);
    font-size: 22px;
    font-weight: 900;
    transform: rotate(-3deg);
    box-shadow: 4px 4px 0 var(--ink);
}

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

.brand-copy strong {
    font-size: 20px;
    letter-spacing: 0.08em;
}

.brand-copy small {
    margin-top: 4px;
    color: var(--gray);
    font-size: 10px;
    letter-spacing: 0.16em;
}

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

.nav-link {
    display: grid;
    min-width: 58px;
    padding: 8px 7px;
    justify-items: center;
    border-radius: 12px;
    color: #4f574e;
    font-size: 13px;
    line-height: 1.3;
    transition: 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--ink);
    background: var(--mint);
}

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

.nav-icon {
    min-height: 22px;
    font-size: 17px;
    font-weight: 800;
}

.menu-toggle {
    display: none;
    padding: 9px 13px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--ink);
    background: var(--white);
    cursor: pointer;
    gap: 7px;
}

.hero {
    display: grid;
    min-height: 590px;
    margin-top: 42px;
    padding: 62px;
    grid-template-columns: 1.03fr 0.97fr;
    align-items: center;
    gap: 50px;
    overflow: hidden;
    border-radius: 36px;
    color: var(--white);
    background: var(--night);
    box-shadow: var(--shadow);
}

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

.hero-kicker,
.eyebrow {
    margin: 0 0 12px;
    color: #657060;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-kicker,
.eyebrow.light {
    color: var(--lime);
}

.hero h1 {
    margin: 0;
    font-size: clamp(56px, 8vw, 104px);
    line-height: 0.95;
    letter-spacing: -0.08em;
}

.hero h1 a {
    display: inline-block;
}

.hero-lead {
    max-width: 620px;
    margin: 28px 0 0;
    color: #d7ded3;
    font-size: 19px;
    line-height: 1.85;
}

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

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

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

.button.primary {
    color: var(--ink);
    background: var(--lime);
    box-shadow: 0 8px 24px rgba(184, 242, 47, 0.2);
}

.button.secondary {
    border-color: rgba(255, 255, 255, 0.22);
    color: var(--white);
    background: rgba(255, 255, 255, 0.07);
}

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

.hero-stats {
    display: flex;
    margin: 42px 0 0;
    gap: 34px;
}

.hero-stats div {
    display: grid;
}

.hero-stats dt {
    color: var(--lime);
    font-size: 27px;
    font-weight: 900;
}

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

.hero-art {
    position: relative;
    min-height: 460px;
}

.hero-cover {
    position: absolute;
    overflow: hidden;
    border: 6px solid var(--white);
    border-radius: 22px;
    background: #2c3b2f;
    box-shadow: 0 28px 50px rgba(0, 0, 0, 0.35);
}

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

.hero-cover-main {
    z-index: 3;
    top: 28px;
    right: 80px;
    width: 270px;
    aspect-ratio: 3 / 4;
    transform: rotate(3deg);
}

.hero-cover-top {
    z-index: 2;
    top: 0;
    left: 12px;
    width: 205px;
    aspect-ratio: 3 / 4;
    transform: rotate(-8deg);
}

.hero-cover-bottom {
    z-index: 4;
    right: 0;
    bottom: 10px;
    width: 180px;
    aspect-ratio: 3 / 4;
    transform: rotate(8deg);
}

.hero-seal {
    position: absolute;
    z-index: 6;
    right: 32px;
    top: 6px;
    display: grid;
    width: 92px;
    height: 92px;
    place-content: center;
    border-radius: 50%;
    color: var(--ink);
    background: var(--lime);
    text-align: center;
    transform: rotate(9deg);
}

.hero-seal span {
    font-size: 12px;
}

.hero-seal strong {
    font-size: 21px;
}

.section {
    margin-top: 104px;
}

.section-heading {
    position: relative;
    margin-bottom: 34px;
}

.section-heading h2,
.about-heading h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.25;
    letter-spacing: -0.04em;
}

.section-heading > p:last-child {
    max-width: 470px;
    margin: 0;
    color: var(--gray);
}

.split-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
}

.compact-heading {
    margin-bottom: 26px;
}

.section-link {
    position: absolute;
    right: 0;
    bottom: 8px;
    color: #465044;
    font-weight: 800;
}

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

.category-tile {
    min-height: 220px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 14px;
    color: var(--ink);
    background: var(--lime);
    font-size: 23px;
    font-weight: 900;
}

.category-tile:nth-child(2n) .category-icon {
    background: var(--mint);
}

.category-tile h3 {
    margin: 22px 0 8px;
    font-size: 21px;
}

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

.text-link {
    font-weight: 800;
}

.comic-grid {
    display: grid;
    gap: 24px;
}

.four-columns {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

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

.cover-link {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #d9dfd5;
}

.cover-link img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

.cover-badge {
    position: absolute;
    left: 14px;
    bottom: 14px;
    padding: 5px 10px;
    border-radius: 999px;
    color: var(--ink);
    background: var(--lime);
    font-size: 12px;
    font-weight: 800;
}

.card-body {
    padding: 20px;
}

.card-body .eyebrow {
    margin-bottom: 5px;
    font-size: 11px;
}

.card-body h3 {
    margin: 0;
    font-size: 21px;
    line-height: 1.35;
}

.card-body > p:not(.eyebrow) {
    display: -webkit-box;
    overflow: hidden;
    margin: 10px 0 0;
    color: var(--gray);
    font-size: 14px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.card-meta {
    display: flex;
    margin-top: 18px;
    padding-top: 14px;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    color: #778075;
    font-size: 12px;
}

.spotlight-section {
    display: grid;
    overflow: hidden;
    grid-template-columns: 1.05fr 0.95fr;
    border-radius: 30px;
    background: var(--night);
}

.spotlight-image {
    min-height: 520px;
}

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

.spotlight-copy {
    display: flex;
    padding: 56px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: var(--white);
}

.spotlight-copy h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.25;
}

.spotlight-copy > p:not(.eyebrow) {
    color: #c7d1c4;
}

.spotlight-meta {
    display: flex;
    margin: 15px 0 28px;
    flex-wrap: wrap;
    gap: 8px;
}

.spotlight-meta span {
    padding: 5px 11px;
    border: 1px solid #465348;
    border-radius: 999px;
    font-size: 13px;
}

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

.update-timeline li {
    display: grid;
    min-height: 88px;
    grid-template-columns: 80px 22px 1fr;
    align-items: center;
    border-bottom: 1px solid var(--line);
}

.update-timeline time {
    font-weight: 800;
}

.timeline-dot {
    display: block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--lime-dark);
    box-shadow: 0 0 0 6px var(--mint);
}

.update-timeline a {
    font-size: 18px;
    font-weight: 800;
}

.update-timeline p {
    margin: 2px 0 0;
    color: var(--gray);
    font-size: 13px;
}

.ranking-section {
    display: grid;
    padding: 44px;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 52px;
    border-radius: 30px;
    color: var(--white);
    background: linear-gradient(135deg, #1b2a1c, #101611);
}

.ranking-intro h2 {
    margin: 0;
    font-size: 48px;
}

.ranking-intro > p:not(.eyebrow) {
    margin-bottom: 28px;
    color: #b7c1b4;
}

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

.ranking-list li {
    display: grid;
    min-height: 74px;
    grid-template-columns: 48px 1fr 48px;
    align-items: center;
    border-bottom: 1px solid #354238;
    gap: 14px;
}

.rank-number {
    color: var(--lime);
    font-size: 21px;
    font-weight: 900;
}

.ranking-list a {
    display: grid;
}

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

.rank-score {
    color: var(--lime);
    font-weight: 800;
}

.korean-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.825fr 0.825fr;
    gap: 24px;
}

.korean-grid .feature-card .cover-link {
    aspect-ratio: 1 / 1.22;
}

.complete-strip {
    display: grid;
    padding: 26px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid var(--line);
    border-radius: 28px;
    background: #ebefE6;
    gap: 16px;
}

.compact-card .cover-link {
    aspect-ratio: 1 / 1.1;
}

.compact-card .card-body > p:not(.eyebrow) {
    -webkit-line-clamp: 2;
}

.mood-section {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 48px;
}

.mood-copy {
    padding: 42px;
    border-radius: 26px;
    background: var(--mint);
}

.mood-copy h2 {
    margin: 0;
    font-size: 42px;
    line-height: 1.25;
}

.mood-chips {
    display: flex;
    margin-top: 26px;
    flex-wrap: wrap;
    gap: 10px;
}

.mood-chips a {
    padding: 9px 14px;
    border: 1px solid #abc99b;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    font-weight: 700;
}

.mood-list {
    display: grid;
    align-content: center;
}

.mood-list a {
    display: grid;
    min-height: 86px;
    grid-template-columns: 46px 1fr;
    align-items: center;
    border-bottom: 1px solid var(--line);
    gap: 14px;
}

.mood-list a > span {
    grid-row: 1 / 3;
    color: var(--lime-dark);
    font-size: 22px;
    font-weight: 900;
}

.mood-list strong {
    align-self: end;
    font-size: 18px;
}

.mood-list small {
    align-self: start;
    color: var(--gray);
}

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

.schedule-grid article {
    display: grid;
    min-height: 170px;
    padding: 20px;
    align-content: space-between;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
}

.schedule-grid article.today {
    border-color: var(--night);
    color: var(--white);
    background: var(--night);
    transform: translateY(-8px);
}

.schedule-grid time {
    color: var(--gray);
    font-size: 13px;
    font-weight: 800;
}

.schedule-grid .today time {
    color: var(--lime);
}

.schedule-grid span {
    color: var(--gray);
    font-size: 12px;
}

.schedule-grid .today span {
    color: #b9c4b7;
}

.editor-section {
    display: grid;
    overflow: hidden;
    grid-template-columns: 1fr 0.72fr;
    border-radius: 30px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.editor-note {
    position: relative;
    padding: 64px;
}

.editor-note h2 {
    position: relative;
    z-index: 2;
    margin: 0;
    font-size: 42px;
    line-height: 1.35;
}

.editor-note > p:not(.eyebrow) {
    color: var(--gray);
}

.quote-mark {
    position: absolute;
    right: 30px;
    top: -32px;
    color: var(--mint);
    font-family: Georgia, serif;
    font-size: 220px;
    line-height: 1;
}

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

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

.review-grid blockquote {
    margin: 0;
    padding: 28px;
    border-left: 5px solid var(--lime);
    border-radius: 0 18px 18px 0;
    background: var(--white);
}

.review-grid blockquote p {
    margin: 0;
    font-size: 18px;
    line-height: 1.8;
}

.review-grid blockquote footer {
    margin-top: 20px;
    color: var(--gray);
    font-size: 13px;
}

.guide-section {
    display: grid;
    padding: 46px;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 42px;
    border-radius: 28px;
    color: var(--white);
    background: var(--night);
}

.guide-title h2 {
    margin: 0;
    font-size: 38px;
}

.guide-steps {
    display: grid;
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(3, 1fr);
    list-style: none;
    gap: 20px;
}

.guide-steps li > span {
    color: var(--lime);
    font-size: 30px;
    font-weight: 900;
}

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

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

.about-section {
    display: grid;
    grid-template-columns: 0.65fr 1.35fr;
    gap: 60px;
}

.about-content > p {
    margin-top: 0;
    color: #4e574c;
    font-size: 17px;
    line-height: 2;
}

.about-points {
    display: grid;
    margin: 32px 0 0;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.about-points div {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: var(--white);
}

.about-points dt {
    font-size: 22px;
    font-weight: 900;
}

.about-points dd {
    margin: 4px 0 0;
    color: var(--gray);
    font-size: 13px;
}

.app-panel {
    display: grid;
    margin-bottom: 104px;
    padding: 58px;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 60px;
    border-radius: 32px;
    color: var(--white);
    background: linear-gradient(135deg, #172018, #304332);
}

.app-copy h2 {
    margin: 0;
    font-size: 44px;
}

.app-copy > p:not(.eyebrow) {
    max-width: 700px;
    color: #c6d0c3;
}

.subscribe-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 800;
}

.subscribe-row {
    display: flex;
    max-width: 620px;
    gap: 10px;
}

.subscribe-row input {
    min-width: 0;
    min-height: 50px;
    padding: 0 16px;
    flex: 1;
    border: 1px solid #4d5d50;
    border-radius: 14px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    outline: none;
}

.subscribe-row input:focus {
    border-color: var(--lime);
}

.subscribe-row button {
    padding: 0 24px;
    border: 0;
    border-radius: 14px;
    background: var(--lime);
    font-weight: 900;
    cursor: pointer;
}

.form-note {
    margin: 8px 0 0;
    color: #aeb9ac;
    font-size: 12px;
}

.app-code {
    display: grid;
    width: 200px;
    padding: 18px;
    justify-items: center;
    border-radius: 22px;
    color: var(--ink);
    background: var(--white);
    text-align: center;
}

.app-code img {
    width: 150px;
    aspect-ratio: 1;
}

.app-code strong {
    margin-top: 10px;
}

.app-code span {
    color: var(--gray);
    font-size: 12px;
}

.site-footer {
    padding: 54px 0 24px;
    color: #d5ddd2;
    background: #0e140f;
}

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

.footer-brand .brand-copy small {
    color: #8f9b8d;
}

.footer-grid h2 {
    margin: 0 0 14px;
    color: var(--white);
    font-size: 16px;
}

.footer-grid > div:not(:first-child) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-grid a,
.footer-grid p {
    margin: 0 0 8px;
    color: #96a294;
    font-size: 13px;
}

.copyright {
    display: flex;
    margin-top: 40px;
    padding-top: 20px;
    justify-content: space-between;
    border-top: 1px solid #283129;
    color: #7d887b;
    font-size: 12px;
}

.copyright p {
    margin: 0;
}

.back-top {
    position: fixed;
    z-index: 40;
    right: 22px;
    bottom: 22px;
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    color: var(--ink);
    background: var(--lime);
    box-shadow: var(--shadow);
    cursor: pointer;
}

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

.breadcrumb {
    display: flex;
    margin-top: 34px;
    align-items: center;
    flex-wrap: wrap;
    color: var(--gray);
    font-size: 13px;
    gap: 10px;
}

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

.category-hero {
    display: grid;
    min-height: 430px;
    margin-top: 24px;
    padding: 50px;
    grid-template-columns: 1fr 0.55fr;
    align-items: center;
    gap: 50px;
    border-radius: 32px;
    color: var(--white);
    background: var(--night);
}

.category-hero-icon {
    display: grid;
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    place-items: center;
    border-radius: 18px;
    color: var(--ink);
    background: var(--lime);
    font-size: 32px;
}

.category-hero h1 {
    margin: 0;
    font-size: clamp(46px, 7vw, 76px);
    line-height: 1.1;
}

.category-hero-copy > p:not(.eyebrow) {
    max-width: 650px;
    color: #c8d1c5;
    font-size: 17px;
}

.category-facts {
    display: flex;
    margin-top: 24px;
    flex-wrap: wrap;
    gap: 9px;
}

.category-facts span {
    padding: 6px 11px;
    border: 1px solid #465348;
    border-radius: 999px;
    font-size: 12px;
}

.category-feature {
    position: relative;
    display: block;
    overflow: hidden;
    border: 6px solid var(--white);
    border-radius: 22px;
    aspect-ratio: 3 / 4;
    transform: rotate(3deg);
}

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

.category-feature span {
    position: absolute;
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 9px;
    border-radius: 10px;
    color: var(--ink);
    background: var(--lime);
    font-size: 13px;
    font-weight: 800;
    text-align: center;
}

.catalog-section {
    margin-top: 84px;
}

.category-note {
    display: grid;
    margin-bottom: 90px;
    padding: 34px;
    grid-template-columns: 0.65fr 1.35fr;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--white);
    gap: 32px;
}

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

.category-note > div > span {
    color: var(--lime-dark);
    font-size: 28px;
}

.category-note h2 {
    margin: 0;
    font-size: 24px;
}

.category-note p {
    margin: 0;
    color: var(--gray);
}

.reader {
    max-width: 980px;
}

.reader-header {
    padding: 58px 0 42px;
    text-align: center;
}

.reader-header h1 {
    max-width: 880px;
    margin: 0 auto;
    font-size: clamp(38px, 6vw, 62px);
    line-height: 1.25;
    letter-spacing: -0.04em;
}

.reader-meta {
    display: flex;
    margin-top: 22px;
    justify-content: center;
    flex-wrap: wrap;
    color: var(--gray);
    font-size: 13px;
    gap: 10px 22px;
}

.reader-summary {
    max-width: 740px;
    margin: 24px auto 0;
    color: #4e574d;
    font-size: 17px;
}

.reading-notice {
    display: grid;
    margin-bottom: 48px;
    padding: 26px;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    border: 1px solid #bed9ad;
    border-radius: 20px;
    background: var(--mint);
    gap: 18px;
}

.reading-notice > span {
    font-size: 26px;
}

.reading-notice h2 {
    margin: 0;
    font-size: 18px;
}

.reading-notice p {
    margin: 4px 0 0;
    color: #52604c;
    font-size: 14px;
}

.favorite-button {
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid #98b989;
    border-radius: 999px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.6);
    font-weight: 800;
    cursor: pointer;
}

.favorite-button.is-saved {
    color: var(--white);
    background: var(--night);
}

.chapter-content {
    padding: 42px;
    border-radius: 28px;
    background: #111712;
}

.chapter-content > h2 {
    margin: 0 0 32px;
    color: var(--white);
    font-size: 28px;
    text-align: center;
}

.reader-panel {
    overflow: hidden;
    max-width: 820px;
    margin: 0 auto;
    border-radius: 16px;
    background: #222b24;
}

.reader-panel img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.reader-panel figcaption {
    padding: 11px 16px;
    color: #9eaa9c;
    font-size: 12px;
    text-align: center;
}

.chapter-copy {
    max-width: 760px;
    margin: 24px auto 48px;
    color: #c6d0c3;
    font-size: 16px;
    line-height: 2;
}

.chapter-copy:last-child {
    margin-bottom: 0;
}

.chapter-end {
    padding: 70px 20px;
    text-align: center;
}

.end-mark {
    display: grid;
    width: 68px;
    height: 68px;
    margin: 0 auto 22px;
    place-items: center;
    border-radius: 22px;
    background: var(--lime);
    font-size: 28px;
    font-weight: 900;
    transform: rotate(-5deg);
}

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

.chapter-end p:not(.eyebrow) {
    max-width: 650px;
    margin: 14px auto 24px;
    color: var(--gray);
}

.chapter-navigation {
    display: grid;
    margin-bottom: 100px;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.chapter-nav-link {
    display: grid;
    min-height: 110px;
    padding: 22px;
    align-content: center;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
}

.chapter-nav-link span {
    color: var(--gray);
    font-size: 13px;
}

.chapter-nav-link strong {
    margin-top: 5px;
    font-size: 18px;
}

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

.chapter-nav-link.disabled {
    opacity: 0.48;
}

.not-found {
    display: grid;
    min-height: 70vh;
    place-content: center;
    justify-items: center;
    text-align: center;
}

.not-found > span {
    color: var(--lime-dark);
    font-size: 110px;
    font-weight: 900;
    line-height: 1;
}

.not-found h1 {
    margin: 12px 0;
    font-size: 42px;
}

.not-found p {
    margin: 0 0 24px;
    color: var(--gray);
}

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

    .menu-toggle {
        display: inline-flex;
    }

    .main-nav {
        position: absolute;
        top: 72px;
        right: 20px;
        left: 20px;
        display: none;
        padding: 14px;
        grid-template-columns: repeat(3, 1fr);
        border: 1px solid var(--line);
        border-radius: 18px;
        background: var(--white);
        box-shadow: var(--shadow);
    }

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

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

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

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

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

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

    .schedule-grid article.today {
        transform: none;
    }
}

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

    .hero {
        margin-top: 24px;
        padding: 38px 28px;
        border-radius: 26px;
    }

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

    .section {
        margin-top: 74px;
    }

    .split-heading {
        display: block;
    }

    .split-heading > p {
        margin-top: 14px !important;
    }

    .section-link {
        position: static;
        display: inline-block;
        margin-top: 14px;
    }

    .spotlight-section,
    .ranking-section,
    .mood-section,
    .editor-section,
    .about-section,
    .category-hero,
    .category-note,
    .guide-section {
        grid-template-columns: 1fr;
    }

    .spotlight-image {
        min-height: 390px;
    }

    .spotlight-copy,
    .editor-note {
        padding: 38px;
    }

    .ranking-section,
    .guide-section {
        padding: 34px;
    }

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

    .korean-grid .feature-card {
        grid-column: 1 / -1;
    }

    .korean-grid .feature-card .cover-link {
        aspect-ratio: 16 / 9;
    }

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

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

    .app-panel {
        padding: 40px;
        grid-template-columns: 1fr;
    }

    .app-code {
        width: 100%;
    }

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

    .category-hero {
        padding: 36px;
    }

    .category-feature {
        max-width: 360px;
        justify-self: center;
    }

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

    .favorite-button {
        grid-column: 1 / -1;
    }
}

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

    .brand-copy small {
        display: none;
    }

    .main-nav {
        grid-template-columns: repeat(2, 1fr);
        max-height: calc(100vh - 90px);
        overflow-y: auto;
    }

    .hero {
        padding: 34px 22px;
    }

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

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

    .hero-actions,
    .hero-actions .button {
        width: 100%;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-art {
        min-height: 330px;
    }

    .hero-cover-main {
        right: 38px;
        width: 190px;
    }

    .hero-cover-top {
        width: 142px;
    }

    .hero-cover-bottom {
        width: 120px;
    }

    .hero-seal {
        right: 0;
        width: 70px;
        height: 70px;
    }

    .category-grid,
    .four-columns,
    .three-columns,
    .korean-grid,
    .complete-strip,
    .schedule-grid,
    .about-points {
        grid-template-columns: 1fr;
    }

    .korean-grid .feature-card {
        grid-column: auto;
    }

    .korean-grid .feature-card .cover-link {
        aspect-ratio: 3 / 4;
    }

    .comic-card,
    .category-tile {
        max-width: 420px;
        width: 100%;
        justify-self: center;
    }

    .complete-strip {
        padding: 16px;
    }

    .spotlight-copy,
    .ranking-section,
    .mood-copy,
    .editor-note,
    .guide-section,
    .app-panel,
    .category-hero {
        padding: 28px;
    }

    .spotlight-image {
        min-height: 320px;
    }

    .ranking-intro h2,
    .mood-copy h2,
    .editor-note h2,
    .app-copy h2 {
        font-size: 34px;
    }

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

    .schedule-grid article {
        min-height: 130px;
    }

    .subscribe-row {
        flex-direction: column;
    }

    .subscribe-row button {
        min-height: 48px;
    }

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

    .copyright {
        display: block;
    }

    .category-hero h1 {
        font-size: 46px;
    }

    .category-note {
        padding: 26px;
    }

    .reader-header {
        padding-top: 40px;
    }

    .reading-notice {
        padding: 20px;
    }

    .chapter-content {
        width: calc(100% + 28px);
        margin-left: -14px;
        padding: 24px 14px;
        border-radius: 0;
    }

    .chapter-copy {
        padding: 0 10px;
    }

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

    .chapter-nav-link.next {
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}