:root {
    --ink: #171a2b;
    --ink-soft: #34384f;
    --paper: #fffdf8;
    --paper-blue: #f1f7ff;
    --line: #dce1ec;
    --coral: #ff5d57;
    --coral-dark: #d93f42;
    --cyan: #38c6d9;
    --yellow: #ffd45b;
    --violet: #7367f0;
    --green: #49ad83;
    --blue: #3c7cff;
    --shadow: 8px 8px 0 rgba(23, 26, 43, 0.12);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

body::before {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    content: "";
    background: var(--coral);
}

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

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

button,
input {
    font: inherit;
}

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

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

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    border-bottom: 1px solid rgba(23, 26, 43, 0.1);
    background: rgba(255, 253, 248, 0.96);
    backdrop-filter: blur(14px);
}

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

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

.brand-mark {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 2px solid var(--ink);
    border-radius: 13px 5px 13px 5px;
    color: #ffffff;
    background: var(--coral);
    box-shadow: 3px 3px 0 var(--ink);
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1;
}

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

.brand-copy strong {
    font-size: 1.16rem;
    letter-spacing: 0.05em;
}

.brand-copy small {
    margin-top: 5px;
    color: #74788d;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
}

.primary-nav {
    display: flex;
    min-width: 0;
    flex: 1;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
}

.nav-link {
    display: flex;
    min-height: 42px;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    border-radius: 10px;
    color: #555a70;
    font-size: 0.88rem;
    font-weight: 700;
    white-space: nowrap;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-link:hover {
    color: var(--ink);
    background: #f1f3f8;
    transform: translateY(-1px);
}

.nav-link.is-active {
    color: #ffffff;
    background: var(--ink);
}

.nav-icon {
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 7px;
    font-size: 0.72rem;
}

.nav-toggle {
    display: none;
    min-height: 42px;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border: 1px solid var(--ink);
    border-radius: 10px;
    color: var(--ink);
    background: transparent;
    cursor: pointer;
    font-weight: 800;
}

.hero-section {
    padding: 54px 0 34px;
}

.hero-grid {
    display: grid;
    min-height: 600px;
    align-items: center;
    gap: 60px;
    grid-template-columns: 1.05fr 0.95fr;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--coral-dark);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
    width: 24px;
    height: 3px;
    content: "";
    background: currentColor;
}

.hero-copy h1 {
    margin: 18px 0 16px;
    font-size: clamp(3.6rem, 8vw, 6.8rem);
    letter-spacing: -0.08em;
    line-height: 0.95;
}

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

.hero-copy h1 a::after {
    position: absolute;
    z-index: -1;
    right: -18px;
    bottom: 4px;
    left: 16px;
    height: 22px;
    content: "";
    background: var(--yellow);
    transform: skewX(-9deg);
}

.hero-lead {
    max-width: 620px;
    margin: 0;
    color: var(--ink-soft);
    font-size: 1.14rem;
}

.search-panel {
    max-width: 640px;
    margin-top: 28px;
    padding: 16px;
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow);
}

.search-panel > label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.78rem;
    font-weight: 900;
}

.search-control {
    display: grid;
    align-items: center;
    gap: 10px;
    grid-template-columns: auto 1fr auto;
}

.search-control > span {
    font-size: 1.5rem;
}

.search-control input {
    width: 100%;
    min-height: 46px;
    border: 0;
    outline: none;
    color: var(--ink);
    background: transparent;
}

.search-control button {
    min-height: 44px;
    padding: 8px 18px;
    border: 0;
    border-radius: 10px;
    color: #ffffff;
    background: var(--coral);
    cursor: pointer;
    font-weight: 900;
}

.search-feedback {
    margin: 8px 0 0 34px;
    color: #777b8d;
    font-size: 0.78rem;
}

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

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

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

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

.button-secondary {
    background: #ffffff;
}

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

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

.hero-stage {
    position: relative;
    min-height: 570px;
}

.hero-stage::before {
    position: absolute;
    z-index: -2;
    top: 18px;
    right: 0;
    width: 90%;
    height: 88%;
    border-radius: 50%;
    content: "";
    background-color: #d9f6f6;
    background-image: radial-gradient(var(--cyan) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
}

.hero-poster {
    position: absolute;
    top: 34px;
    right: 40px;
    width: min(380px, 78%);
    overflow: hidden;
    border: 3px solid var(--ink);
    border-radius: 22px 8px 22px 8px;
    background: #ffffff;
    box-shadow: 14px 14px 0 var(--ink);
    transform: rotate(2deg);
}

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

.poster-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 16px;
    border-top: 3px solid var(--ink);
}

.poster-caption span {
    color: var(--coral-dark);
    font-size: 0.76rem;
    font-weight: 900;
}

.poster-caption strong {
    font-size: 1.1rem;
}

.hero-note {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border: 2px solid var(--ink);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 5px 5px 0 var(--ink);
    font-weight: 900;
}

.hero-note strong {
    color: var(--coral);
    font-size: 1.6rem;
}

.note-top {
    z-index: 2;
    top: 12px;
    left: 0;
    transform: rotate(-5deg);
}

.note-bottom {
    right: 0;
    bottom: 44px;
    transform: rotate(4deg);
}

.content-section {
    padding: 74px 0;
}

.section-soft {
    border-top: 1px solid #e5e9f2;
    border-bottom: 1px solid #e5e9f2;
    background: var(--paper-blue);
}

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

.section-heading h2 {
    max-width: 760px;
    margin: 10px 0 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
    letter-spacing: -0.04em;
    line-height: 1.15;
}

.heading-link {
    position: absolute;
    right: 0;
    bottom: 4px;
    color: var(--coral-dark);
    font-weight: 900;
}

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

.split-heading > p {
    max-width: 430px;
    margin: 0;
    color: #62677b;
}

.compact-heading {
    max-width: 780px;
}

.centered-heading {
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.centered-heading .section-kicker {
    justify-content: center;
}

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

.category-tile {
    position: relative;
    display: flex;
    min-height: 235px;
    flex-direction: column;
    padding: 24px;
    overflow: hidden;
    border: 2px solid var(--ink);
    border-radius: 18px;
    background: #ffffff;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.category-tile:hover {
    transform: translate(-3px, -3px);
    box-shadow: 7px 7px 0 var(--ink);
}

.category-icon,
.channel-icon {
    display: grid;
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    place-items: center;
    border: 2px solid var(--ink);
    border-radius: 14px;
    color: #ffffff;
    background: var(--ink);
    font-size: 1.1rem;
}

.category-tile strong {
    margin-bottom: 8px;
    font-size: 1.22rem;
}

.category-tile > span:not(.category-icon) {
    color: #5f6478;
    font-size: 0.9rem;
}

.category-tile em {
    margin-top: auto;
    padding-top: 12px;
    color: var(--coral-dark);
    font-size: 0.78rem;
    font-style: normal;
    font-weight: 900;
}

.tone-coral {
    background: #fff0ee;
}

.tone-pink {
    background: #fff0f7;
}

.tone-gold {
    background: #fff7d9;
}

.tone-violet {
    background: #f1efff;
}

.tone-blue {
    background: #eaf2ff;
}

.tone-green {
    background: #e9f8f1;
}

.tone-orange {
    background: #fff0df;
}

.category-all {
    color: #ffffff;
    background: var(--ink);
}

.category-all .category-icon {
    border-color: #ffffff;
    color: var(--ink);
    background: var(--yellow);
}

.category-all > span:not(.category-icon),
.category-all em {
    color: #d7daea;
}

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

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

.comic-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 14px 40px rgba(23, 26, 43, 0.07);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.comic-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(23, 26, 43, 0.13);
}

.comic-card.is-search-hidden {
    display: none;
}

.comic-cover {
    position: relative;
    display: block;
    overflow: hidden;
    background: #e6e9f0;
}

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

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

.comic-badge,
.rank-number {
    position: absolute;
    top: 14px;
    padding: 6px 10px;
    border: 1px solid var(--ink);
    border-radius: 8px;
    font-size: 0.76rem;
    font-weight: 900;
}

.comic-badge {
    right: 14px;
    background: var(--yellow);
}

.rank-number {
    left: 14px;
    color: #ffffff;
    background: var(--ink);
}

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

.comic-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--coral-dark);
    font-size: 0.76rem;
    font-weight: 900;
}

.comic-card h3 {
    margin: 8px 0;
    font-size: 1.35rem;
    line-height: 1.3;
}

.comic-card h3 a:hover {
    color: var(--coral-dark);
}

.comic-card p {
    display: -webkit-box;
    min-height: 50px;
    margin: 0;
    overflow: hidden;
    color: #62677b;
    font-size: 0.9rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.text-link {
    color: var(--coral-dark);
    font-weight: 900;
}

.bookmark-button {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--ink);
    background: #ffffff;
    cursor: pointer;
    font-size: 1.2rem;
}

.bookmark-button.is-saved {
    border-color: var(--coral);
    color: #ffffff;
    background: var(--coral);
}

.editorial-mosaic {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(12, minmax(0, 1fr));
}

.editorial-card {
    position: relative;
    min-height: 340px;
    overflow: hidden;
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    background: var(--ink);
}

.editorial-card-1,
.editorial-card-4 {
    grid-column: span 7;
}

.editorial-card-2,
.editorial-card-3 {
    grid-column: span 5;
}

.editorial-card img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    opacity: 0.58;
    transition: opacity 180ms ease, transform 300ms ease;
}

.editorial-card:hover img {
    opacity: 0.4;
    transform: scale(1.03);
}

.editorial-card > div {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 28px;
    color: #ffffff;
}

.editorial-card span,
.editorial-card a {
    color: var(--yellow);
    font-size: 0.8rem;
    font-weight: 900;
}

.editorial-card h3 {
    margin: 6px 0;
    font-size: 1.8rem;
}

.editorial-card p {
    max-width: 590px;
    margin: 0 0 12px;
    color: #eef0f7;
}

.schedule-section {
    color: #ffffff;
    background: var(--ink);
}

.schedule-layout {
    display: grid;
    gap: 70px;
    grid-template-columns: 0.8fr 1.2fr;
}

.schedule-intro {
    align-self: center;
}

.schedule-intro h2 {
    margin: 12px 0;
    font-size: clamp(2.3rem, 5vw, 4.4rem);
    line-height: 1.05;
}

.schedule-intro p {
    color: #c9ccda;
}

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

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

.update-timeline li {
    display: grid;
    align-items: center;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid #41465f;
    grid-template-columns: 74px 1fr auto;
}

.update-timeline time {
    color: var(--yellow);
    font-size: 1.05rem;
    font-weight: 900;
}

.update-timeline span {
    color: #aeb3c8;
    font-size: 0.75rem;
}

.update-timeline h3 {
    margin: 2px 0 0;
    font-size: 1.2rem;
}

.update-timeline h3 a:hover {
    color: var(--yellow);
}

.update-timeline strong {
    color: var(--cyan);
}

.ranking-board {
    display: grid;
    gap: 14px 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ranking-row {
    display: grid;
    align-items: center;
    gap: 16px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #ffffff;
    grid-template-columns: auto 76px 1fr auto;
}

.ranking-position {
    color: var(--coral);
    font-size: 1.6rem;
    font-weight: 900;
}

.ranking-row img {
    width: 76px;
    height: 76px;
    border-radius: 10px;
    object-fit: cover;
}

.ranking-row div > span {
    color: #777c90;
    font-size: 0.75rem;
}

.ranking-row h3 {
    margin: 2px 0;
    font-size: 1.05rem;
}

.ranking-row > strong {
    color: var(--coral-dark);
}

.korean-section {
    color: #ffffff;
    background: #3646a8;
}

.korean-layout {
    display: grid;
    gap: 48px;
    grid-template-columns: 0.75fr 1.25fr;
}

.korean-feature {
    align-self: center;
}

.korean-feature h2 {
    margin: 12px 0;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.07;
}

.korean-feature p {
    color: #dce2ff;
}

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

.korean-list {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.korean-list a {
    display: grid;
    min-width: 0;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    grid-template-columns: 90px 1fr;
}

.korean-list img {
    width: 90px;
    height: 112px;
    border-radius: 10px;
    object-fit: cover;
}

.korean-list a > span {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.korean-list small {
    color: #c9d0ff;
}

.korean-list strong {
    margin: 4px 0;
    font-size: 1.04rem;
}

.korean-list em {
    color: var(--yellow);
    font-size: 0.78rem;
    font-style: normal;
    font-weight: 900;
}

.completed-strip {
    display: grid;
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.completed-strip article {
    position: relative;
    min-width: 0;
    padding: 28px;
    border-right: 1px solid var(--ink);
}

.completed-strip article:last-child {
    border-right: 0;
}

.completed-index {
    color: #d9dce6;
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1;
}

.completed-strip article > div > span {
    color: var(--coral-dark);
    font-size: 0.76rem;
    font-weight: 900;
}

.completed-strip h3 {
    margin: 6px 0;
    font-size: 1.35rem;
}

.completed-strip p {
    color: #62677b;
    font-size: 0.88rem;
}

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

.reading-guide {
    display: grid;
    align-items: center;
    gap: 72px;
    grid-template-columns: 0.75fr 1.25fr;
}

.guide-visual {
    display: grid;
    min-height: 470px;
    place-items: center;
    background-color: var(--yellow);
    background-image: radial-gradient(rgba(23, 26, 43, 0.18) 1.5px, transparent 1.5px);
    background-size: 18px 18px;
    border: 2px solid var(--ink);
    border-radius: 40% 18% 40% 18%;
}

.phone-frame {
    width: 230px;
    padding: 12px;
    border: 4px solid var(--ink);
    border-radius: 34px;
    background: #ffffff;
    box-shadow: 12px 12px 0 var(--ink);
}

.phone-screen {
    display: flex;
    min-height: 390px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 23px;
    color: #ffffff;
    background: var(--coral);
    text-align: center;
}

.phone-screen span {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
}

.phone-screen strong {
    max-width: 150px;
    margin: 20px 0;
    font-size: 2rem;
    line-height: 1.2;
}

.phone-screen i {
    font-size: 2.3rem;
    font-style: normal;
}

.guide-copy h2 {
    margin: 12px 0 30px;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.1;
}

.guide-steps {
    display: grid;
    gap: 18px;
}

.guide-steps article {
    display: grid;
    align-items: start;
    gap: 18px;
    grid-template-columns: auto 1fr;
}

.guide-steps article > span {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: #ffffff;
    font-weight: 900;
}

.guide-steps h3 {
    margin: 0;
}

.guide-steps p {
    margin: 3px 0 0;
    color: #62677b;
}

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

.theme-card {
    display: flex;
    min-height: 340px;
    flex-direction: column;
    padding: 30px;
    border: 2px solid var(--ink);
    border-radius: var(--radius);
}

.theme-card > span {
    font-size: 3rem;
}

.theme-card small {
    margin-top: auto;
    font-weight: 900;
}

.theme-card strong {
    margin: 10px 0 16px;
    font-size: 1.55rem;
    line-height: 1.35;
}

.theme-card em {
    font-style: normal;
    font-weight: 900;
}

.theme-calm {
    background: #dff6f5;
}

.theme-night {
    color: #ffffff;
    background: var(--ink);
}

.theme-bright {
    background: var(--yellow);
}

.experience-section {
    color: #ffffff;
    background: var(--coral);
}

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

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

.experience-grid article {
    padding: 28px;
    border: 2px solid #ffffff;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
}

.experience-grid article > span {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 50%;
    color: var(--ink);
    background: var(--yellow);
    font-size: 1.3rem;
}

.experience-grid h3 {
    margin: 18px 0 6px;
}

.experience-grid p {
    margin: 0;
    color: #fff0ee;
}

.about-section {
    background: #ffffff;
}

.about-layout {
    display: grid;
    gap: 80px;
    grid-template-columns: 0.8fr 1.2fr;
}

.about-title h2 {
    position: sticky;
    top: 120px;
    margin: 12px 0 0;
    font-size: clamp(2.6rem, 5vw, 4.6rem);
    line-height: 1.05;
}

.about-copy > p {
    margin: 0 0 20px;
    color: #505569;
    font-size: 1.06rem;
}

.about-numbers {
    display: grid;
    gap: 16px;
    margin-top: 30px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-numbers div {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--paper-blue);
}

.about-numbers strong {
    display: block;
    color: var(--coral);
    font-size: 2.5rem;
    line-height: 1;
}

.about-numbers span {
    font-size: 0.8rem;
}

.app-section {
    padding-top: 20px;
}

.app-panel {
    display: grid;
    align-items: center;
    gap: 48px;
    padding: 50px;
    border: 3px solid var(--ink);
    border-radius: 26px 10px 26px 10px;
    color: #ffffff;
    background: var(--ink);
    box-shadow: 12px 12px 0 var(--yellow);
    grid-template-columns: auto 1fr;
}

.app-brand-graphic {
    display: grid;
    width: 170px;
    height: 170px;
    place-items: center;
    border: 3px solid #ffffff;
    border-radius: 22px;
    background-color: #ffffff;
    background-image: linear-gradient(90deg, var(--ink) 18px, transparent 18px), linear-gradient(var(--ink) 18px, transparent 18px);
    background-size: 36px 36px;
    box-shadow: 8px 8px 0 var(--coral);
}

.app-brand-graphic span {
    display: grid;
    width: 86px;
    height: 86px;
    place-items: center;
    border: 3px solid var(--ink);
    border-radius: 18px;
    color: #ffffff;
    background: var(--coral);
    font-size: 2.3rem;
    font-weight: 900;
}

.app-brand-graphic i {
    display: none;
}

.app-copy h2 {
    margin: 12px 0;
    font-size: clamp(2.3rem, 5vw, 4rem);
    line-height: 1.1;
}

.app-copy p {
    max-width: 760px;
    margin: 0;
    color: #cfd2df;
}

.app-actions span {
    color: #aeb3c8;
    font-size: 0.86rem;
}

.site-footer {
    margin-top: 90px;
    padding: 64px 0 24px;
    color: #ffffff;
    background: #0e1020;
}

.footer-grid {
    display: grid;
    gap: 50px;
    grid-template-columns: 1.2fr 1fr 0.8fr;
}

.brand-light .brand-copy small {
    color: #aeb3c8;
}

.footer-grid p {
    color: #aeb3c8;
}

.footer-grid h2 {
    margin: 0 0 14px;
    color: var(--yellow);
    font-size: 1rem;
}

.footer-links {
    display: grid;
    gap: 8px 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-links a {
    color: #d7daea;
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 42px;
    padding-top: 22px;
    border-top: 1px solid #2d3148;
    color: #858aa0;
    font-size: 0.8rem;
}

.channel-hero {
    margin-top: 34px;
    padding: 62px 0;
    border-top: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: #62677b;
    font-size: 0.85rem;
}

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

.channel-title-row {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 34px;
}

.channel-title-row .channel-icon {
    width: 74px;
    height: 74px;
    margin: 0;
    font-size: 1.8rem;
}

.channel-title-row h1 {
    margin: 0;
    font-size: clamp(3rem, 7vw, 5.6rem);
    letter-spacing: -0.05em;
    line-height: 1;
}

.channel-title-row p {
    max-width: 760px;
    margin: 14px 0 0;
    color: #51566b;
    font-size: 1.05rem;
}

.channel-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
}

.channel-meta span {
    padding: 7px 12px;
    border: 1px solid var(--ink);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.65);
    font-size: 0.78rem;
    font-weight: 900;
}

.channel-note-section {
    padding-top: 16px;
}

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

.channel-note-grid article {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--paper-blue);
}

.channel-note-grid article > span {
    font-size: 1.6rem;
}

.channel-note-grid h2 {
    margin: 10px 0 6px;
    font-size: 1.2rem;
}

.channel-note-grid p {
    margin: 0;
    color: #62677b;
    font-size: 0.92rem;
}

.reader-heading {
    margin-top: 34px;
    padding: 38px 0 44px;
    border-bottom: 2px solid var(--ink);
    background: #fff4de;
}

.reader-title-block {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-top: 28px;
}

.reader-label {
    color: var(--coral-dark);
    font-size: 0.8rem;
    font-weight: 900;
}

.reader-title-block h1 {
    margin: 8px 0;
    font-size: clamp(2.5rem, 6vw, 4.8rem);
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.reader-title-block p {
    max-width: 780px;
    margin: 0;
    color: #555a70;
}

.bookmark-large {
    width: auto;
    height: 48px;
    flex: 0 0 auto;
    gap: 7px;
    padding: 8px 16px;
    border: 2px solid var(--ink);
    border-radius: 12px;
    font-size: 1rem;
}

.reader-meta {
    display: grid;
    gap: 14px;
    margin-top: 30px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.reader-meta > span {
    padding: 14px 16px;
    border: 1px solid rgba(23, 26, 43, 0.25);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.6);
}

.reader-meta b {
    display: block;
    color: #74788d;
    font-size: 0.72rem;
}

.reader-content-section {
    padding: 50px 0 20px;
    background: #eceef4;
}

.reader-shell {
    max-width: 980px;
}

.reading-notice {
    display: grid;
    align-items: start;
    gap: 18px;
    margin-bottom: 34px;
    padding: 22px;
    border: 2px solid var(--ink);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 6px 6px 0 var(--yellow);
    grid-template-columns: auto 1fr;
}

.reading-notice > span {
    color: var(--coral);
    font-size: 1.7rem;
}

.reading-notice h2 {
    margin: 0 0 4px;
    font-size: 1.1rem;
}

.reading-notice p {
    margin: 0;
    color: #62677b;
}

.chapter-content {
    overflow: hidden;
    border: 2px solid var(--ink);
    border-radius: 18px;
    background: #ffffff;
}

.chapter-content > header {
    padding: 28px;
    border-bottom: 2px solid var(--ink);
    background: var(--ink);
    color: #ffffff;
    text-align: center;
}

.chapter-content > header span {
    color: var(--yellow);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.chapter-content > header h2 {
    margin: 6px 0 0;
    font-size: 1.7rem;
}

.comic-page {
    margin: 0;
    padding: 0;
    border-bottom: 2px solid var(--ink);
}

.comic-page img {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: #dfe3eb;
    object-fit: cover;
}

.comic-page figcaption {
    display: grid;
    align-items: start;
    gap: 16px;
    padding: 20px 24px;
    background: #ffffff;
    grid-template-columns: auto 1fr;
}

.comic-page figcaption span {
    padding: 4px 8px;
    border-radius: 6px;
    color: #ffffff;
    background: var(--coral);
    font-size: 0.74rem;
    font-weight: 900;
}

.comic-page figcaption p {
    margin: 0;
    color: #555a70;
}

.chapter-end {
    padding: 44px 24px;
    text-align: center;
}

.chapter-end > span {
    display: block;
    color: var(--coral);
    font-size: 2rem;
}

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

.chapter-end p {
    max-width: 650px;
    margin: 0 auto;
    color: #62677b;
}

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

.chapter-nav-link {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #ffffff;
}

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

.chapter-nav-link span {
    color: var(--coral-dark);
    font-size: 0.8rem;
}

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

.chapter-nav-link.is-disabled {
    color: #9da1b0;
    background: #f2f3f6;
}

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

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

    .hero-grid,
    .schedule-layout,
    .korean-layout,
    .reading-guide,
    .about-layout {
        gap: 42px;
        grid-template-columns: 1fr;
    }

    .hero-stage {
        min-height: 520px;
    }

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

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

    .completed-strip article:nth-child(2) {
        border-right: 0;
    }

    .completed-strip article:nth-child(-n + 2) {
        border-bottom: 1px solid var(--ink);
    }

    .about-title h2 {
        position: static;
    }
}

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

    .site-header {
        position: relative;
    }

    .header-inner {
        min-height: 74px;
        justify-content: space-between;
    }

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

    .primary-nav {
        display: none;
        padding-top: 10px;
        border-top: 1px solid var(--line);
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .nav-link {
        white-space: normal;
    }

    .hero-section {
        padding-top: 34px;
    }

    .hero-grid {
        min-height: auto;
    }

    .hero-copy h1 {
        font-size: clamp(3.4rem, 18vw, 5rem);
    }

    .hero-stage {
        min-height: 450px;
    }

    .hero-poster {
        right: 24px;
        width: min(330px, 82%);
    }

    .search-control {
        grid-template-columns: auto 1fr;
    }

    .search-control button {
        grid-column: 1 / -1;
    }

    .content-section {
        padding: 56px 0;
    }

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

    .heading-link {
        position: static;
        display: inline-flex;
        margin-top: 14px;
    }

    .three-columns,
    .ranking-board,
    .theme-grid,
    .channel-note-grid {
        grid-template-columns: 1fr;
    }

    .editorial-card-1,
    .editorial-card-2,
    .editorial-card-3,
    .editorial-card-4 {
        grid-column: 1 / -1;
    }

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

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

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .reader-title-block {
        align-items: flex-start;
        flex-direction: column;
    }

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

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

    .chapter-navigation .button {
        order: -1;
    }

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

    .app-brand-graphic {
        width: 140px;
        height: 140px;
    }
}

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

    .category-grid,
    .experience-grid,
    .completed-strip,
    .about-numbers {
        grid-template-columns: 1fr;
    }

    .category-tile {
        min-height: 210px;
    }

    .completed-strip article {
        border-right: 0;
        border-bottom: 1px solid var(--ink);
    }

    .completed-strip article:nth-child(2) {
        border-bottom: 1px solid var(--ink);
    }

    .completed-strip article:last-child {
        border-bottom: 0;
    }

    .ranking-row {
        gap: 10px;
        grid-template-columns: auto 60px 1fr;
    }

    .ranking-row img {
        width: 60px;
        height: 60px;
    }

    .ranking-row > strong {
        display: none;
    }

    .update-timeline li {
        grid-template-columns: 62px 1fr;
    }

    .update-timeline li > strong {
        grid-column: 2;
    }

    .hero-stage {
        min-height: 400px;
    }

    .note-bottom {
        bottom: 18px;
    }

    .channel-title-row {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .comic-page figcaption {
        grid-template-columns: 1fr;
    }
}

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