:root {
    --ink: #11182a;
    --ink-soft: #5a6275;
    --paper: #f6f7fb;
    --surface: #ffffff;
    --line: #e4e7ef;
    --navy: #101a38;
    --navy-soft: #17244b;
    --coral: #ff6f61;
    --mint: #63dfc2;
    --violet: #aa92ff;
    --yellow: #ffd36a;
    --shadow: 0 18px 55px rgba(19, 28, 60, 0.12);
}

* {
    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", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
}

body::before {
    position: fixed;
    z-index: -1;
    inset: 0;
    background-image: radial-gradient(circle at 12% 8%, rgba(99, 223, 194, 0.1), transparent 22%), radial-gradient(circle at 88% 16%, rgba(170, 146, 255, 0.1), transparent 24%);
    content: "";
    pointer-events: none;
}

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

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

button,
input {
    font: inherit;
}

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

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    background: rgba(16, 26, 56, 0.96);
    backdrop-filter: blur(18px);
}

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

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

.brand-mark {
    display: grid;
    width: 46px;
    height: 46px;
    border-radius: 14px 4px 14px 4px;
    color: var(--navy);
    background: linear-gradient(135deg, var(--mint), #d8fff5);
    font-size: 21px;
    font-weight: 900;
    line-height: 1;
    place-items: center;
    transform: rotate(-3deg);
}

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

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

.brand-copy small {
    margin-top: 5px;
    color: #aeb9d8;
    font-size: 12px;
}

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

.nav-link {
    display: inline-flex;
    position: relative;
    align-items: center;
    padding: 11px 10px;
    border-radius: 12px;
    color: #bdc6df;
    font-size: 14px;
    font-weight: 700;
    gap: 6px;
    transition: 0.2s ease;
}

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

.nav-link.is-active::after {
    position: absolute;
    right: 12px;
    bottom: 5px;
    left: 12px;
    height: 2px;
    border-radius: 2px;
    background: var(--mint);
    content: "";
}

.nav-icon {
    display: grid;
    width: 22px;
    height: 22px;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 13px;
    place-items: center;
}

.menu-toggle {
    display: none;
    margin-left: auto;
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    color: #ffffff;
    background: transparent;
}

.hero {
    display: grid;
    min-height: 610px;
    margin-top: 46px;
    overflow: hidden;
    border-radius: 34px;
    color: #ffffff;
    background: linear-gradient(130deg, #111c3d 0%, #19295b 58%, #274b64 100%);
    box-shadow: var(--shadow);
    grid-template-columns: 1.08fr 0.92fr;
}

.hero-copy {
    display: flex;
    z-index: 2;
    flex-direction: column;
    justify-content: center;
    padding: 76px 38px 70px 70px;
}

.hero-kicker,
.eyebrow {
    margin: 0 0 10px;
    color: #1f9d83;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.hero-kicker {
    color: var(--mint);
}

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

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

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

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

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

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

.button-primary {
    color: var(--navy);
    background: var(--mint);
    box-shadow: 0 10px 24px rgba(99, 223, 194, 0.24);
}

.button-ghost {
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}

.button-dark {
    color: #ffffff;
    background: var(--navy);
}

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

.hero-stats div {
    display: flex;
    flex-direction: column;
}

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

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

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

.hero-art::before {
    position: absolute;
    width: 490px;
    height: 490px;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    content: "";
    transform: translate(-50%, -50%);
}

.hero-stack {
    position: absolute;
    overflow: hidden;
    border: 8px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: #28365f;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.32);
}

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

.hero-stack-one {
    z-index: 2;
    width: 270px;
    aspect-ratio: 3 / 4;
    top: 86px;
    left: 55px;
    transform: rotate(-7deg);
}

.hero-stack-two {
    width: 250px;
    aspect-ratio: 3 / 4;
    right: 32px;
    bottom: 66px;
    transform: rotate(8deg);
}

.speech-bubble {
    display: flex;
    position: absolute;
    z-index: 5;
    right: 25px;
    top: 55px;
    flex-direction: column;
    padding: 18px 22px;
    border-radius: 18px 18px 4px 18px;
    color: var(--navy);
    background: var(--yellow);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
}

.speech-bubble span {
    margin-top: 2px;
    font-size: 12px;
}

.continue-strip {
    display: grid;
    align-items: center;
    margin-top: 30px;
    padding: 22px 26px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--surface);
    box-shadow: 0 10px 30px rgba(19, 28, 60, 0.06);
    grid-template-columns: auto minmax(210px, 1fr) minmax(220px, 1fr) auto;
    gap: 20px;
}

.continue-icon,
.guide-icon {
    display: grid;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    color: #ffffff;
    background: var(--coral);
    font-size: 22px;
    font-weight: 900;
    place-items: center;
}

.continue-strip .eyebrow {
    margin: 0;
    font-size: 11px;
}

.continue-strip h2 {
    margin: 1px 0 0;
    font-size: 18px;
}

.progress-track {
    overflow: hidden;
    height: 8px;
    border-radius: 10px;
    background: #e9ecf3;
}

.progress-track span {
    display: block;
    width: 68%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--coral), #ffae7e);
}

.text-link {
    color: #415078;
    font-weight: 900;
}

.section {
    margin-top: 104px;
}

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

.section-heading h2,
.korean-intro h2,
.completed-copy h2,
.about-copy h2,
.subscription-copy h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.18;
    letter-spacing: -0.04em;
}

.section-heading > p {
    max-width: 430px;
    margin: 0;
    color: var(--ink-soft);
}

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

.category-card {
    display: flex;
    min-height: 235px;
    position: relative;
    overflow: hidden;
    flex-direction: column;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--surface);
    box-shadow: 0 10px 30px rgba(19, 28, 60, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-card::after {
    position: absolute;
    width: 110px;
    height: 110px;
    right: -35px;
    bottom: -35px;
    border-radius: 50%;
    background: var(--accent);
    content: "";
    opacity: 0.18;
}

.category-card:first-child {
    grid-column: span 2;
}

.category-icon {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 21px;
    border-radius: 15px;
    color: var(--navy);
    background: var(--accent);
    font-size: 21px;
    place-items: center;
}

.category-card strong {
    font-size: 21px;
}

.category-card > span:not(.category-icon) {
    margin-top: 7px;
    color: var(--ink-soft);
    font-size: 14px;
}

.category-card em {
    margin-top: auto;
    padding-top: 16px;
    font-size: 13px;
    font-style: normal;
    font-weight: 900;
}

.latest-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 28px;
}

.comic-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--surface);
    box-shadow: 0 12px 34px rgba(19, 28, 60, 0.07);
}

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

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

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

.chapter-pill {
    position: absolute;
    right: 14px;
    bottom: 14px;
    padding: 6px 10px;
    border-radius: 10px;
    color: #ffffff;
    background: rgba(16, 26, 56, 0.88);
    font-size: 12px;
    font-weight: 800;
}

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

.comic-card-body h3 {
    margin: 0;
    font-size: 24px;
}

.comic-card-body > p:last-child {
    margin: 10px 0 0;
    color: var(--ink-soft);
    font-size: 14px;
}

.latest-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--line);
}

.latest-row {
    display: grid;
    align-items: center;
    flex: 1 1 0;
    padding: 20px 8px;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 60px 1fr auto;
    gap: 18px;
}

.row-number {
    color: #c2c8d6;
    font-size: 30px;
    font-weight: 900;
}

.latest-row h3 {
    margin: 0;
    font-size: 20px;
}

.latest-row p {
    display: -webkit-box;
    margin: 5px 0 0;
    overflow: hidden;
    color: var(--ink-soft);
    font-size: 13px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.update-time {
    color: #788096;
    font-size: 13px;
}

.ranking-section {
    padding: 86px 0;
    color: #ffffff;
    background: var(--navy);
}

.section-heading-light .eyebrow {
    color: var(--mint);
}

.section-heading-light > p {
    color: #aeb9d8;
}

.ranking-list {
    display: grid;
    margin: 0;
    padding: 0;
    list-style: none;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.ranking-list li {
    display: grid;
    align-items: center;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: var(--navy-soft);
    grid-template-columns: auto 52px 1fr;
    gap: 10px;
}

.ranking-list img {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    object-fit: cover;
}

.rank-medal {
    color: var(--mint);
    font-size: 20px;
    font-weight: 900;
}

.ranking-list h3 {
    margin: 0;
    font-size: 15px;
    line-height: 1.3;
}

.ranking-list p {
    margin: 4px 0 0;
    color: #9da9c7;
    font-size: 12px;
}

.ranking-list li > strong {
    grid-column: 3;
    color: var(--yellow);
    font-size: 12px;
}

.korean-stage {
    display: grid;
    overflow: hidden;
    border-radius: 30px;
    background: #e6e0ff;
    grid-template-columns: 0.72fr 1.28fr;
}

.korean-intro {
    position: relative;
    padding: 64px 52px;
}

.korean-intro > p:not(.eyebrow) {
    margin: 20px 0 28px;
    color: #55506a;
}

.vertical-label {
    position: absolute;
    top: 64px;
    right: 24px;
    color: rgba(16, 26, 56, 0.18);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.24em;
    writing-mode: vertical-rl;
}

.korean-grid {
    display: grid;
    min-height: 600px;
    padding: 18px;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 12px;
}

.poster-tile {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 19px;
    background: #c9c1e4;
}

.poster-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.poster-tile span {
    position: absolute;
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 10px 12px;
    border-radius: 11px;
    color: #ffffff;
    background: rgba(16, 26, 56, 0.82);
    font-size: 13px;
    font-weight: 800;
}

.poster-tile-1 {
    grid-row: span 2;
}

.poster-tile-4 {
    grid-column: span 2;
}

.day-tabs {
    display: flex;
    margin-bottom: 20px;
    padding: 6px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #eef0f6;
    gap: 6px;
}

.day-tab {
    flex: 1 1 0;
    min-height: 44px;
    border: 0;
    border-radius: 11px;
    color: #6a7287;
    background: transparent;
    cursor: pointer;
    font-weight: 800;
}

.day-tab.is-selected {
    color: #ffffff;
    background: var(--navy);
}

.schedule-board {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.schedule-item {
    display: grid;
    align-items: center;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
    grid-template-columns: 68px 1fr auto;
    gap: 16px;
}

.schedule-item img {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    object-fit: cover;
}

.schedule-item p {
    margin: 0;
    color: #8a91a3;
    font-size: 12px;
}

.schedule-item h3 {
    margin: 3px 0 0;
    font-size: 17px;
}

.status-dot {
    padding: 5px 9px;
    border-radius: 20px;
    color: #287863;
    background: #dff8f1;
    font-size: 12px;
    font-weight: 800;
}

.completed-section {
    display: grid;
    padding: 52px;
    border-radius: 28px;
    color: #ffffff;
    background: linear-gradient(135deg, #18213d, #2c315f);
    grid-template-columns: 0.7fr 1.3fr;
    gap: 48px;
}

.completed-copy .eyebrow {
    color: var(--yellow);
}

.completed-copy p:not(.eyebrow) {
    color: #b7c0da;
}

.completed-copy .text-link {
    color: var(--mint);
}

.book-spines {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

.book-spine {
    display: flex;
    min-height: 310px;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 14px;
    border-radius: 8px 18px 18px 8px;
    color: var(--navy);
    background: var(--mint);
    box-shadow: inset 5px 0 0 rgba(0, 0, 0, 0.08);
}

.book-spine:nth-child(2) {
    background: var(--coral);
}

.book-spine:nth-child(3) {
    background: var(--yellow);
}

.book-spine:nth-child(4) {
    background: var(--violet);
}

.book-spine:nth-child(5) {
    background: #8bd17c;
}

.book-spine strong {
    align-self: center;
    font-size: 18px;
    letter-spacing: 0.1em;
    writing-mode: vertical-rl;
}

.book-spine em {
    font-size: 11px;
    font-style: normal;
    font-weight: 800;
}

.editor-mosaic {
    display: grid;
    height: 520px;
    grid-template-columns: 1.4fr 0.8fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 16px;
}

.editor-pick {
    display: flex;
    position: relative;
    overflow: hidden;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    border-radius: 24px;
    color: #ffffff;
}

.editor-pick::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(10, 16, 36, 0.84));
    content: "";
}

.editor-pick img {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    object-fit: cover;
}

.editor-pick span,
.editor-pick strong {
    z-index: 2;
}

.editor-pick span {
    color: var(--mint);
    font-size: 12px;
    font-weight: 800;
}

.editor-pick strong {
    font-size: 25px;
}

.editor-pick-large {
    grid-row: span 2;
}

.reader-notes {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 60px;
}

.note-title {
    position: relative;
}

.note-title > span {
    position: absolute;
    top: -45px;
    color: var(--coral);
    font-family: Georgia, serif;
    font-size: 110px;
    line-height: 1;
    opacity: 0.25;
}

.note-title h2 {
    position: relative;
    margin: 28px 0 0;
    font-size: 35px;
    line-height: 1.42;
}

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

.note-grid blockquote {
    margin: 0;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--surface);
}

.note-grid p {
    margin: 0;
    color: #4f576a;
}

.note-grid cite {
    display: block;
    margin-top: 24px;
    color: #8b92a3;
    font-size: 13px;
    font-style: normal;
}

.about-section {
    display: grid;
    align-items: center;
    padding: 62px;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: var(--surface);
    grid-template-columns: 0.7fr 1.3fr;
    gap: 70px;
}

.about-badge {
    display: grid;
    min-height: 330px;
    position: relative;
    overflow: hidden;
    align-content: center;
    padding: 40px;
    border-radius: 26px 8px 26px 8px;
    color: #ffffff;
    background: var(--navy);
}

.about-badge::after {
    position: absolute;
    width: 230px;
    height: 230px;
    right: -70px;
    bottom: -70px;
    border: 35px solid var(--mint);
    border-radius: 50%;
    content: "";
    opacity: 0.25;
}

.about-badge span {
    color: var(--mint);
    font-size: 100px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.08em;
}

.about-badge strong {
    max-width: 220px;
    margin-top: 16px;
    font-size: 18px;
}

.about-copy > p:not(.eyebrow) {
    color: var(--ink-soft);
}

.about-points {
    display: grid;
    margin: 25px 0 0;
    padding: 0;
    list-style: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.about-points li {
    padding: 12px;
    border-radius: 12px;
    background: #f0f8f6;
    color: #386b5f;
    font-size: 13px;
    font-weight: 700;
}

.about-points span {
    margin-right: 5px;
}

.subscription-section {
    display: grid;
    align-items: center;
    margin-bottom: 104px;
    padding: 58px 72px;
    border-radius: 32px;
    color: #ffffff;
    background: linear-gradient(120deg, #ff6f61, #ff8b77 58%, #ffa469);
    grid-template-columns: 1fr auto;
    gap: 70px;
}

.subscription-copy .eyebrow {
    color: #3c2141;
}

.subscription-copy > p:not(.eyebrow) {
    max-width: 680px;
}

.subscribe-form {
    max-width: 620px;
    margin-top: 25px;
}

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

.subscribe-form > div {
    display: flex;
    gap: 10px;
}

.subscribe-form input {
    min-width: 0;
    flex: 1 1 auto;
    padding: 0 16px;
    border: 0;
    border-radius: 14px;
    outline: none;
}

.subscribe-form .button-primary {
    background: var(--navy);
    color: #ffffff;
}

.form-note {
    margin: 8px 0 0;
    font-size: 12px;
    opacity: 0.8;
}

.brand-code {
    display: flex;
    width: 220px;
    padding: 22px;
    flex-direction: column;
    align-items: center;
    border-radius: 24px;
    color: var(--navy);
    background: #ffffff;
    box-shadow: 0 24px 50px rgba(83, 25, 17, 0.2);
}

.code-grid {
    display: grid;
    width: 146px;
    height: 146px;
    padding: 8px;
    border-radius: 12px;
    background: #edf0f5;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

.code-grid span {
    border-radius: 5px;
    background: var(--navy);
}

.code-grid span:nth-child(2),
.code-grid span:nth-child(4),
.code-grid span:nth-child(8) {
    background: var(--mint);
    transform: scale(0.66);
}

.brand-code strong {
    margin-top: 12px;
    font-size: 18px;
}

.brand-code small {
    color: #7e8699;
}

.site-footer {
    padding: 66px 0 26px;
    color: #c1c9df;
    background: #0c142e;
}

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

.footer-brand {
    color: #ffffff;
    font-size: 27px;
    font-weight: 900;
}

.footer-grid h2 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 16px;
}

.footer-grid p {
    max-width: 360px;
    margin: 10px 0 0;
    color: #8995b4;
    font-size: 14px;
}

.footer-grid a:not(.footer-brand) {
    display: block;
    margin-top: 8px;
    font-size: 14px;
}

.copyright {
    margin-top: 44px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #7884a3;
    font-size: 13px;
}

.breadcrumb {
    display: flex;
    margin-top: 34px;
    color: #7d8598;
    font-size: 13px;
    gap: 10px;
}

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

.channel-hero {
    display: flex;
    min-height: 330px;
    position: relative;
    overflow: hidden;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    padding: 58px 66px;
    border-radius: 30px;
    color: #ffffff;
    background: linear-gradient(125deg, var(--navy), #27375f);
}

.channel-hero::after {
    position: absolute;
    width: 350px;
    height: 350px;
    right: -70px;
    border: 70px solid var(--channel-accent);
    border-radius: 50%;
    content: "";
    opacity: 0.26;
}

.channel-hero > div {
    z-index: 2;
    max-width: 700px;
}

.channel-hero .eyebrow {
    color: var(--channel-accent);
}

.channel-hero h1 {
    margin: 0;
    font-size: clamp(44px, 7vw, 76px);
    line-height: 1;
}

.channel-hero p:last-child {
    max-width: 670px;
    margin: 24px 0 0;
    color: #c4cde2;
    font-size: 18px;
}

.channel-symbol {
    z-index: 2;
    font-size: 110px;
}

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

.comic-card-wide {
    grid-column: span 2;
    grid-row: span 2;
}

.comic-card-wide .cover-link {
    aspect-ratio: 16 / 10;
}

.channel-grid .comic-card:not(.comic-card-wide) .comic-card-body > p:last-child {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.channel-guide {
    display: grid;
    align-items: center;
    margin-bottom: 100px;
    padding: 35px 40px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--surface);
    grid-template-columns: 0.75fr 1.25fr;
    gap: 36px;
}

.channel-guide > div {
    display: flex;
    align-items: center;
    gap: 16px;
}

.channel-guide h2,
.channel-guide p {
    margin: 0;
}

.channel-guide p {
    color: var(--ink-soft);
}

.reader-page {
    margin-top: 24px;
    margin-bottom: 110px;
}

.reader-header {
    padding: 52px;
    border-radius: 28px;
    color: #ffffff;
    background: linear-gradient(125deg, var(--navy), #27375f);
    text-align: center;
}

.reader-header .eyebrow {
    color: var(--mint);
}

.reader-header h1 {
    margin: 0;
    font-size: clamp(36px, 6vw, 62px);
    line-height: 1.2;
}

.reader-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 25px;
    color: #b7c1dc;
    font-size: 13px;
    gap: 10px 24px;
}

.reading-note {
    display: flex;
    max-width: 920px;
    margin: 28px auto 0;
    padding: 24px 28px;
    border: 1px solid #dfe9e6;
    border-radius: 18px;
    background: #eff9f6;
    gap: 18px;
}

.reading-note > span {
    color: #209d80;
    font-size: 27px;
}

.reading-note h2 {
    margin: 0;
    font-size: 17px;
}

.reading-note p {
    margin: 4px 0 0;
    color: #556b65;
    font-size: 14px;
}

.chapter-content {
    max-width: 920px;
    margin: 58px auto 0;
}

.chapter-panel {
    margin: 0 0 44px;
    overflow: hidden;
    border-radius: 22px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.chapter-panel img {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: #dfe4ee;
    object-fit: cover;
}

.chapter-panel figcaption {
    padding: 25px 30px 30px;
}

.chapter-panel figcaption span {
    color: var(--coral);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.chapter-panel figcaption strong {
    display: block;
    margin-top: 2px;
    font-size: 22px;
}

.chapter-panel figcaption p {
    margin: 8px 0 0;
    color: var(--ink-soft);
}

.chapter-end {
    max-width: 720px;
    margin: 70px auto 0;
    text-align: center;
}

.chapter-end > span {
    color: var(--violet);
    font-size: 38px;
}

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

.chapter-end p {
    color: var(--ink-soft);
}

.chapter-nav {
    display: grid;
    max-width: 920px;
    margin: 44px auto 0;
    grid-template-columns: 1fr auto 1fr;
    gap: 12px;
}

.chapter-nav > a,
.chapter-nav > span {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    padding: 16px 20px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: var(--surface);
}

.chapter-nav > a:last-child,
.chapter-nav > span:last-child {
    text-align: right;
}

.chapter-nav small {
    color: #8a91a3;
}

.chapter-nav strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.chapter-nav .back-channel {
    align-items: center;
    color: #ffffff;
    background: var(--navy);
    font-weight: 800;
}

.nav-disabled {
    color: #9ea5b5;
    opacity: 0.7;
}

@media (max-width: 1080px) {
    .header-inner {
        flex-wrap: wrap;
        padding: 14px 0;
    }

    .main-nav {
        order: 3;
        justify-content: flex-start;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .nav-link {
        flex: 0 0 auto;
    }

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

    .hero-copy {
        padding: 55px 25px 55px 45px;
    }

    .hero-stack-one {
        left: 10px;
    }

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

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

    .ranking-list li:last-child {
        grid-column: span 2;
    }

    .book-spines {
        grid-template-columns: repeat(5, minmax(70px, 1fr));
        overflow-x: auto;
    }

    .reader-notes {
        grid-template-columns: 1fr;
    }
}

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

    .header-inner {
        min-height: 70px;
    }

    .brand-copy small {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        max-height: 70vh;
        overflow-y: auto;
        flex-direction: column;
        align-items: stretch;
    }

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

    .nav-link {
        justify-content: flex-start;
    }

    .hero {
        min-height: 0;
        margin-top: 24px;
        border-radius: 24px;
        grid-template-columns: 1fr;
    }

    .hero-copy {
        padding: 44px 26px 30px;
    }

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

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

    .hero-stats {
        justify-content: space-between;
        margin-top: 34px;
        gap: 12px;
    }

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

    .hero-stack-one {
        width: 190px;
        top: 28px;
        left: 35px;
    }

    .hero-stack-two {
        width: 170px;
        right: 26px;
        bottom: 20px;
    }

    .speech-bubble {
        right: 14px;
        top: 18px;
        padding: 12px 15px;
    }

    .continue-strip {
        grid-template-columns: auto 1fr;
    }

    .continue-strip .progress-track,
    .continue-strip .text-link {
        grid-column: span 2;
    }

    .section {
        margin-top: 72px;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 24px;
        gap: 12px;
    }

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

    .category-card:first-child {
        grid-column: span 2;
    }

    .latest-layout {
        grid-template-columns: 1fr;
    }

    .latest-row {
        grid-template-columns: 42px 1fr;
    }

    .latest-row .update-time {
        display: none;
    }

    .ranking-section {
        padding: 60px 0;
    }

    .ranking-list {
        grid-template-columns: 1fr;
    }

    .ranking-list li:last-child {
        grid-column: auto;
    }

    .korean-stage {
        grid-template-columns: 1fr;
    }

    .korean-intro {
        padding: 44px 28px;
    }

    .korean-grid {
        min-height: 580px;
        grid-template-columns: repeat(2, 1fr);
    }

    .poster-tile-1 {
        grid-row: auto;
    }

    .poster-tile-4 {
        grid-column: auto;
    }

    .schedule-board {
        grid-template-columns: 1fr;
    }

    .completed-section {
        padding: 34px 24px;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .book-spines {
        grid-template-columns: repeat(5, 86px);
    }

    .editor-mosaic {
        height: auto;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 260px);
    }

    .editor-pick-large {
        grid-row: auto;
    }

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

    .about-section {
        padding: 28px;
        grid-template-columns: 1fr;
        gap: 38px;
    }

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

    .subscription-section {
        padding: 38px 25px;
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .subscribe-form > div {
        flex-direction: column;
    }

    .subscribe-form input {
        min-height: 48px;
    }

    .brand-code {
        width: 100%;
    }

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

    .channel-hero {
        min-height: 280px;
        padding: 40px 28px;
    }

    .channel-symbol {
        position: absolute;
        right: 28px;
        bottom: 6px;
        opacity: 0.45;
    }

    .comic-card-wide {
        grid-column: span 2;
        grid-row: auto;
    }

    .channel-guide {
        padding: 28px;
        grid-template-columns: 1fr;
    }

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

    .chapter-panel img {
        aspect-ratio: 4 / 5;
    }

    .chapter-panel figcaption {
        padding: 20px;
    }

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

    .chapter-nav > a:last-child,
    .chapter-nav > span:last-child {
        text-align: left;
    }

    .chapter-nav .back-channel {
        order: -1;
    }
}

@media (max-width: 480px) {
    .category-grid,
    .channel-grid {
        grid-template-columns: 1fr;
    }

    .category-card:first-child,
    .comic-card-wide {
        grid-column: auto;
    }

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

    .schedule-item {
        grid-template-columns: 58px 1fr;
    }

    .schedule-item img {
        width: 58px;
        height: 58px;
    }

    .schedule-item .status-dot {
        grid-column: 2;
        justify-self: start;
    }
}
