:root {
    --ink: #10253f;
    --ink-soft: #38506c;
    --paper: #f7f9fc;
    --white: #ffffff;
    --coral: #ff6259;
    --coral-dark: #e94840;
    --sun: #ffc84a;
    --rose: #ff8ca8;
    --violet: #8b78ff;
    --cyan: #58c9df;
    --mint: #5fc6a8;
    --blue: #4988e8;
    --line: #dce4ee;
    --shadow: 0 18px 50px rgba(16, 37, 63, 0.1);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    content: "";
    background-image: radial-gradient(circle at 18% 2%, rgba(255, 98, 89, 0.11), transparent 28%), radial-gradient(circle at 88% 34%, rgba(73, 136, 232, 0.09), transparent 24%);
    pointer-events: none;
}

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

button,
input {
    font: inherit;
}

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

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

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

.icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(220, 228, 238, 0.85);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
}

.header-inner {
    display: flex;
    width: min(1200px, calc(100% - 40px));
    min-height: 82px;
    margin-inline: auto;
    align-items: center;
    gap: 26px;
}

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

.brand-mark {
    position: relative;
    display: grid;
    width: 46px;
    height: 46px;
    color: var(--white);
    border-radius: 15px 15px 15px 5px;
    background: var(--coral);
    box-shadow: 5px 5px 0 var(--ink);
    place-items: center;
}

.brand-mark-main {
    font-size: 25px;
    font-weight: 900;
    line-height: 1;
}

.brand-mark-dot {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sun);
}

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

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

.brand-copy small {
    margin-top: 5px;
    color: #73859a;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.site-nav {
    margin-left: auto;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    display: flex;
    min-height: 42px;
    padding: 8px 9px;
    color: #53687e;
    border-radius: 13px;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    transition: 180ms ease;
}

.nav-link .icon {
    width: 17px;
    height: 17px;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--white);
    background: var(--ink);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    margin-left: auto;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 13px;
    background: var(--white);
    align-items: center;
    justify-content: center;
}

.section {
    margin-top: 104px;
}

.eyebrow {
    margin-bottom: 10px;
    color: var(--coral-dark);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

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

.section-heading h2 {
    margin-bottom: 0;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.2;
    letter-spacing: -0.03em;
}

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

.section-link,
.text-link {
    display: inline-flex;
    color: var(--coral-dark);
    align-items: center;
    gap: 8px;
    font-weight: 800;
}

.section-link:hover,
.text-link:hover {
    color: var(--ink);
}

.hero {
    display: grid;
    min-height: 610px;
    margin-top: 46px;
    padding: 68px 72px;
    color: var(--white);
    border-radius: 38px;
    background: var(--ink);
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;
    overflow: hidden;
}

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

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

.hero h1 {
    margin-bottom: 20px;
    font-size: clamp(64px, 8vw, 112px);
    line-height: 0.95;
    letter-spacing: -0.08em;
}

.hero h1 a {
    position: relative;
}

.hero h1 a::after {
    position: absolute;
    right: -21px;
    top: -8px;
    width: 15px;
    height: 15px;
    content: "";
    border: 4px solid var(--sun);
    border-radius: 50%;
}

.hero-lead {
    max-width: 560px;
    margin-bottom: 32px;
    color: #dbe7f4;
    font-size: 20px;
    line-height: 1.8;
}

.hero-actions,
.app-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.button {
    display: inline-flex;
    min-height: 52px;
    padding: 12px 20px;
    border: 0;
    border-radius: 16px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 800;
    transition: 180ms ease;
}

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

.button-primary {
    color: var(--white);
    background: var(--coral);
    box-shadow: 0 12px 28px rgba(255, 98, 89, 0.28);
}

.button-secondary {
    color: var(--ink);
    border: 1px solid var(--line);
    background: var(--white);
}

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

.hero-notes {
    display: flex;
    margin-top: 34px;
    flex-wrap: wrap;
    gap: 10px 22px;
}

.hero-notes li {
    position: relative;
    padding-left: 16px;
    color: #acc0d5;
    font-size: 14px;
}

.hero-notes li::before {
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    content: "";
    border-radius: 50%;
    background: var(--sun);
}

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

.hero-art::before {
    position: absolute;
    inset: 20px -140px -100px 70px;
    content: "";
    border-radius: 50%;
    background: var(--coral);
    opacity: 0.92;
}

.hero-cover {
    position: absolute;
    z-index: 1;
    width: min(350px, 85%);
    aspect-ratio: 3 / 4;
    border: 8px solid var(--white);
    border-radius: 16px;
    box-shadow: 24px 24px 0 rgba(3, 17, 32, 0.42);
    overflow: hidden;
    transform: rotate(4deg);
}

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

.hero-ticket {
    position: absolute;
    right: -20px;
    bottom: 28px;
    z-index: 3;
    display: flex;
    width: 270px;
    padding: 22px;
    color: var(--ink);
    border-radius: 3px 18px 18px 18px;
    background: var(--sun);
    box-shadow: 0 20px 35px rgba(3, 17, 32, 0.3);
    flex-direction: column;
}

.hero-ticket span {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.hero-ticket strong {
    margin: 3px 0;
    font-size: 24px;
}

.hero-ticket small {
    color: #5a4820;
}

.hero-sticker {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 4;
    display: grid;
    width: 74px;
    height: 74px;
    color: var(--ink);
    border-radius: 50%;
    background: var(--sun);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    place-items: center;
    transform: rotate(10deg);
}

.signal-strip {
    display: grid;
    margin-top: 28px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow);
    grid-template-columns: repeat(3, 0.55fr) 2.2fr;
    overflow: hidden;
}

.signal-strip > div {
    display: flex;
    min-height: 94px;
    padding: 18px 24px;
    border-right: 1px solid var(--line);
    flex-direction: column;
    justify-content: center;
}

.signal-strip strong {
    color: var(--coral-dark);
    font-size: 25px;
    line-height: 1.1;
}

.signal-strip span {
    color: var(--ink-soft);
    font-size: 14px;
}

.signal-strip .signal-message {
    color: var(--white);
    border-right: 0;
    background: var(--ink);
    flex-direction: row;
    align-items: center;
    gap: 14px;
}

.signal-message .icon {
    color: var(--sun);
    flex: 0 0 auto;
}

.signal-message span {
    color: #dbe7f4;
}

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

.comic-card {
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(16, 37, 63, 0.06);
    overflow: hidden;
    transition: 180ms ease;
}

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

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

.cover-link img,
.catalog-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 300ms ease;
}

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

.cover-badge,
.catalog-cover > span {
    position: absolute;
    left: 14px;
    top: 14px;
    padding: 5px 10px;
    color: var(--white);
    border-radius: 9px;
    background: var(--coral);
    font-size: 12px;
    font-weight: 800;
}

.card-body {
    padding: 20px;
}

.card-kicker {
    margin-bottom: 6px;
    color: var(--coral-dark);
    font-size: 13px;
    font-weight: 800;
}

.card-body h3,
.catalog-copy h2 {
    margin-bottom: 8px;
    line-height: 1.35;
}

.card-body h3 {
    font-size: 21px;
}

.card-body p:not(.card-kicker) {
    display: -webkit-box;
    min-height: 50px;
    margin-bottom: 14px;
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.7;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.chapter-pill {
    display: inline-block;
    padding: 4px 9px;
    color: #52677c;
    border-radius: 8px;
    background: #eef3f8;
    font-size: 12px;
    font-weight: 700;
}

.editorial-section {
    padding: 66px;
    color: var(--white);
    border-radius: 34px;
    background: var(--ink);
}

.inverse-heading .eyebrow {
    color: var(--sun);
}

.inverse-heading > p {
    color: #b9c9d9;
}

.editor-grid {
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    gap: 22px;
}

.editor-card {
    position: relative;
    min-height: 260px;
    border-radius: 20px;
    background: #1b3553;
    overflow: hidden;
}

.editor-card-featured {
    grid-row: span 2;
}

.editor-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.58;
}

.editor-copy {
    position: absolute;
    inset: auto 0 0;
    padding: 28px;
    background: linear-gradient(transparent, rgba(8, 25, 43, 0.96));
}

.editor-copy span {
    color: var(--sun);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.editor-copy h3 {
    margin: 4px 0 8px;
    font-size: 28px;
}

.editor-copy p {
    max-width: 590px;
    margin-bottom: 12px;
    color: #dbe5ef;
    font-size: 14px;
}

.editor-copy .text-link {
    color: var(--white);
}

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

.category-card {
    position: relative;
    display: flex;
    min-height: 250px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--white);
    box-shadow: 0 8px 25px rgba(16, 37, 63, 0.05);
    flex-direction: column;
    overflow: hidden;
    transition: 180ms ease;
}

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

.category-card:hover {
    color: var(--white);
    border-color: var(--ink);
    background: var(--ink);
    transform: translateY(-4px);
}

.category-icon {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    color: var(--white);
    border-radius: 15px;
    background: var(--coral);
    place-items: center;
}

.category-icon .icon {
    width: 24px;
    height: 24px;
}

.category-number {
    position: absolute;
    right: 20px;
    top: 14px;
    color: #e7edf4;
    font-size: 44px;
    font-weight: 900;
}

.category-card:hover .category-number {
    color: rgba(255, 255, 255, 0.13);
}

.category-card strong {
    margin-bottom: 8px;
    font-size: 22px;
}

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

.category-card:hover > span:not(.category-icon):not(.category-number) {
    color: #c5d4e4;
}

.category-card em {
    margin-top: auto;
    padding-top: 18px;
    color: var(--coral-dark);
    font-size: 13px;
    font-style: normal;
    font-weight: 800;
}

.category-card:hover em {
    color: var(--sun);
}

.category-sun .category-icon {
    background: #eaa928;
}

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

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

.category-cyan .category-icon {
    background: #36abc2;
}

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

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

.ranking-section {
    padding-block: 80px;
    color: var(--white);
    background: var(--coral);
}

.ranking-layout {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 70px;
    align-items: center;
}

.ranking-intro .eyebrow {
    color: #5e201c;
}

.ranking-intro h2 {
    margin-bottom: 20px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
}

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

.ranking-list {
    border-radius: 24px;
    background: var(--white);
    box-shadow: 20px 20px 0 rgba(16, 37, 63, 0.16);
    overflow: hidden;
}

.rank-item {
    display: grid;
    min-height: 86px;
    padding: 14px 22px;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    grid-template-columns: 48px 1fr auto;
    gap: 14px;
    align-items: center;
}

.rank-item:last-child {
    border-bottom: 0;
}

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

.rank-item a {
    display: flex;
    flex-direction: column;
}

.rank-item a span {
    color: var(--ink-soft);
    font-size: 13px;
}

.rank-trend {
    padding: 5px 9px;
    color: #23785f;
    border-radius: 8px;
    background: #e1f6ee;
    font-size: 12px;
    font-weight: 700;
}

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

.schedule-day {
    display: flex;
    min-height: 170px;
    padding: 20px 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    flex-direction: column;
    gap: 11px;
}

.schedule-day strong {
    display: inline-flex;
    color: var(--coral-dark);
    font-size: 19px;
}

.schedule-day span {
    padding-top: 9px;
    color: var(--ink-soft);
    border-top: 1px dashed var(--line);
    font-size: 13px;
}

.schedule-day.is-today {
    color: var(--white);
    border-color: var(--ink);
    background: var(--ink);
    transform: translateY(-8px);
}

.schedule-day.is-today strong {
    color: var(--sun);
}

.schedule-day.is-today span {
    color: #c6d5e5;
    border-color: #405772;
}

.korean-section {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 40px;
}

.korean-poster {
    position: sticky;
    top: 112px;
    height: max-content;
    padding: 48px;
    color: var(--white);
    border-radius: 28px;
    background: linear-gradient(145deg, #315fba, #162d55);
    box-shadow: var(--shadow);
}

.korean-poster::after {
    display: block;
    width: 74px;
    height: 6px;
    margin-top: 38px;
    content: "";
    border-radius: 9px;
    background: var(--sun);
}

.poster-label {
    color: #a9c5ff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.korean-poster h2 {
    margin: 12px 0 20px;
    font-size: 40px;
    line-height: 1.18;
}

.korean-poster p {
    color: #d2dff5;
}

.korean-poster .text-link {
    color: var(--white);
}

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

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

.korean-index {
    color: var(--coral);
    font-weight: 900;
}

.korean-row img {
    width: 82px;
    aspect-ratio: 3 / 4;
    border-radius: 12px;
    object-fit: cover;
}

.korean-row h3 {
    margin-bottom: 4px;
    font-size: 19px;
}

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

.row-meta {
    padding: 6px 10px;
    color: #315fba;
    border-radius: 9px;
    background: #e7efff;
    font-size: 12px;
    font-weight: 800;
}

.discovery-section {
    display: grid;
    padding: 56px;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: var(--white);
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.discovery-copy h2 {
    margin-bottom: 18px;
    font-size: 36px;
    line-height: 1.25;
}

.discovery-copy p:not(.eyebrow) {
    margin-bottom: 0;
    color: var(--ink-soft);
}

.mood-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.mood-cloud a {
    padding: 12px 18px;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #f4f7fa;
    font-weight: 700;
    transition: 180ms ease;
}

.mood-cloud a:nth-child(2n) {
    color: #7d2521;
    background: #fff0ed;
}

.mood-cloud a:hover {
    color: var(--white);
    border-color: var(--ink);
    background: var(--ink);
}

.update-board {
    border: 1px solid var(--line);
    border-radius: 26px;
    background: var(--white);
    overflow: hidden;
}

.board-heading {
    display: flex;
    padding: 30px 36px;
    color: var(--white);
    background: var(--ink);
    align-items: center;
    justify-content: space-between;
}

.board-heading .eyebrow {
    margin-bottom: 2px;
    color: var(--sun);
}

.board-heading h2 {
    margin-bottom: 0;
    font-size: 30px;
}

.live-dot {
    position: relative;
    padding-left: 18px;
    color: #c6d5e5;
    font-size: 13px;
}

.live-dot::before {
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    content: "";
    border-radius: 50%;
    background: #4ce3a7;
    box-shadow: 0 0 0 5px rgba(76, 227, 167, 0.14);
}

.update-list li {
    display: grid;
    min-height: 66px;
    padding: 13px 36px;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 80px 120px 1fr 90px;
    gap: 18px;
    align-items: center;
}

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

.update-list time,
.update-list li > span:last-child {
    color: #74869a;
    font-size: 13px;
}

.update-category {
    color: var(--coral-dark);
    font-size: 13px;
    font-weight: 800;
}

.update-list a {
    font-weight: 800;
}

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

.reader-grid blockquote {
    margin: 0;
    padding: 30px;
    border-radius: 4px 22px 22px 22px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.reader-grid blockquote:nth-child(2) {
    color: var(--white);
    background: var(--ink);
}

.reader-grid blockquote::before {
    display: block;
    margin-bottom: 12px;
    color: var(--coral);
    content: "“";
    font-family: Georgia, serif;
    font-size: 54px;
    line-height: 0.5;
}

.reader-grid blockquote p {
    min-height: 96px;
}

.reader-grid blockquote footer {
    color: #73859a;
    font-size: 13px;
}

.reader-grid blockquote:nth-child(2) footer {
    color: #aebfd0;
}

.about-section {
    display: grid;
    padding: 58px;
    color: var(--white);
    border-radius: 32px;
    background: var(--ink);
    grid-template-columns: 0.7fr 1.3fr;
    gap: 54px;
}

.about-monogram {
    display: grid;
    width: 84px;
    height: 84px;
    margin-bottom: 28px;
    color: var(--ink);
    border-radius: 50%;
    background: var(--sun);
    box-shadow: 9px 9px 0 var(--coral);
    font-size: 42px;
    font-weight: 900;
    place-items: center;
}

.about-title-block .eyebrow {
    color: var(--sun);
}

.about-title-block h2 {
    font-size: 40px;
}

.about-copy p {
    color: #c6d5e5;
}

.about-values {
    display: grid;
    grid-column: 1 / -1;
    padding-top: 30px;
    border-top: 1px solid #36506b;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-values div {
    display: flex;
    flex-direction: column;
}

.about-values strong {
    color: var(--sun);
    font-size: 22px;
}

.about-values span {
    color: #aebfd0;
    font-size: 14px;
}

.app-section {
    display: grid;
    margin-bottom: 104px;
    padding: 58px 72px;
    border: 1px solid #f0cfca;
    border-radius: 34px;
    background: #fff0ed;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 65px;
    align-items: center;
}

.app-graphic {
    position: relative;
    display: flex;
    min-height: 300px;
    align-items: center;
    justify-content: center;
}

.phone-frame {
    width: 180px;
    height: 320px;
    padding: 14px;
    border: 7px solid var(--ink);
    border-radius: 32px;
    background: var(--white);
    box-shadow: 18px 18px 0 var(--coral);
    transform: rotate(-5deg);
}

.phone-speaker {
    display: block;
    width: 48px;
    height: 5px;
    margin: 0 auto 14px;
    border-radius: 8px;
    background: var(--ink);
}

.phone-screen {
    display: flex;
    height: 264px;
    color: var(--white);
    border-radius: 20px;
    background: var(--ink);
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mini-logo {
    display: grid;
    width: 70px;
    height: 70px;
    margin-bottom: 18px;
    color: var(--ink);
    border-radius: 20px 20px 20px 5px;
    background: var(--sun);
    font-size: 36px;
    font-weight: 900;
    place-items: center;
}

.phone-screen small {
    color: #b9c9d9;
}

.brand-code {
    position: absolute;
    right: 16px;
    bottom: 8px;
    display: grid;
    width: 108px;
    height: 108px;
    color: var(--ink);
    border: 8px solid var(--white);
    background: repeating-linear-gradient(45deg, var(--ink) 0 5px, var(--white) 5px 10px);
    box-shadow: var(--shadow);
    place-items: center;
}

.brand-code span {
    display: grid;
    width: 50px;
    height: 50px;
    color: var(--white);
    background: var(--coral);
    font-size: 27px;
    font-weight: 900;
    place-items: center;
}

.brand-code small {
    position: absolute;
    bottom: -32px;
    padding: 2px 9px;
    border-radius: 7px;
    background: var(--white);
    font-weight: 800;
    white-space: nowrap;
}

.app-copy h2 {
    margin-bottom: 18px;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.12;
}

.app-copy > p:not(.eyebrow) {
    max-width: 600px;
    color: var(--ink-soft);
}

.subscribe-status {
    color: var(--ink-soft);
    font-size: 13px;
}

.site-footer {
    padding: 54px 0 32px;
    color: var(--white);
    background: #09192b;
}

.footer-inner {
    width: min(1200px, calc(100% - 40px));
    margin-inline: auto;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    display: grid;
    width: 50px;
    height: 50px;
    color: var(--ink);
    border-radius: 16px 16px 16px 5px;
    background: var(--sun);
    font-size: 27px;
    font-weight: 900;
    place-items: center;
}

.footer-brand strong {
    font-size: 21px;
}

.footer-brand p {
    margin-bottom: 0;
    color: #8297ad;
    font-size: 13px;
}

.footer-nav ul {
    display: flex;
    margin: 34px 0;
    padding: 22px 0;
    border-block: 1px solid #23394f;
    flex-wrap: wrap;
    gap: 14px 28px;
}

.footer-nav a {
    color: #b4c3d2;
    font-size: 14px;
}

.footer-nav a:hover {
    color: var(--sun);
}

.copyright {
    margin-bottom: 0;
    color: #6f859b;
    font-size: 13px;
}

.back-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 40;
    display: grid;
    width: 46px;
    height: 46px;
    color: var(--white);
    border: 0;
    border-radius: 14px;
    background: var(--coral);
    box-shadow: var(--shadow);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    place-items: center;
    transition: 180ms ease;
}

.back-top.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.back-top .icon {
    transform: rotate(-90deg);
}

.breadcrumb {
    display: flex;
    margin-top: 34px;
    margin-bottom: 28px;
    color: #718397;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
}

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

.catalog-hero {
    position: relative;
    display: grid;
    min-height: 300px;
    padding: 52px 58px;
    color: var(--white);
    border-radius: 30px;
    background: var(--ink);
    grid-template-columns: 100px 1fr auto;
    gap: 32px;
    align-items: center;
    overflow: hidden;
}

.catalog-hero::after {
    position: absolute;
    right: -60px;
    bottom: -110px;
    width: 280px;
    height: 280px;
    content: "";
    border: 48px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.catalog-hero-icon {
    display: grid;
    width: 88px;
    height: 88px;
    color: var(--ink);
    border-radius: 26px;
    background: var(--sun);
    place-items: center;
    transform: rotate(-5deg);
}

.catalog-hero-icon .icon {
    width: 44px;
    height: 44px;
}

.catalog-hero .eyebrow {
    color: var(--sun);
}

.catalog-hero h1 {
    margin-bottom: 10px;
    font-size: clamp(42px, 6vw, 70px);
    line-height: 1;
}

.catalog-hero p:not(.eyebrow) {
    max-width: 680px;
    margin-bottom: 0;
    color: #c9d6e4;
}

.catalog-count {
    position: relative;
    z-index: 2;
    padding: 8px 14px;
    border: 1px solid #536a83;
    border-radius: 999px;
    font-size: 13px;
    white-space: nowrap;
}

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

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

.catalog-item {
    display: grid;
    min-height: 290px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--white);
    box-shadow: 0 10px 28px rgba(16, 37, 63, 0.05);
    grid-template-columns: 190px 1fr;
    overflow: hidden;
}

.catalog-item:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 12px);
    justify-self: center;
}

.catalog-cover {
    position: relative;
    display: block;
    min-height: 100%;
    overflow: hidden;
}

.catalog-copy {
    display: flex;
    padding: 28px;
    flex-direction: column;
}

.catalog-copy h2 {
    font-size: 25px;
}

.catalog-copy > p:not(.card-kicker) {
    margin-bottom: 16px;
    color: var(--ink-soft);
    font-size: 14px;
}

.catalog-meta {
    display: flex;
    margin-bottom: 16px;
    color: #718397;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 12px;
}

.catalog-copy .text-link {
    margin-top: auto;
}

.category-note {
    display: grid;
    margin-top: 62px;
    margin-bottom: 100px;
    padding: 28px 32px;
    color: var(--white);
    border-radius: 20px;
    background: var(--ink);
    grid-template-columns: 36px 1fr auto;
    gap: 18px;
    align-items: center;
}

.category-note .icon {
    color: var(--sun);
    width: 28px;
    height: 28px;
}

.category-note strong {
    color: var(--sun);
}

.category-note p {
    margin-bottom: 0;
    color: #c2d0df;
    font-size: 14px;
}

.category-note a {
    padding: 9px 14px;
    border: 1px solid #4a6179;
    border-radius: 11px;
    font-size: 13px;
    font-weight: 800;
}

.reader-header {
    max-width: 920px;
    padding: 40px 0 32px;
    text-align: center;
}

.reader-header h1 {
    margin-bottom: 18px;
    font-size: clamp(38px, 6vw, 66px);
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.reader-summary {
    max-width: 720px;
    margin: 0 auto 28px;
    color: var(--ink-soft);
    font-size: 17px;
}

.reader-meta {
    display: flex;
    margin: 0;
    justify-content: center;
    gap: 12px;
}

.reader-meta div {
    min-width: 150px;
    padding: 11px 17px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: var(--white);
}

.reader-meta dt {
    color: #7b8c9e;
    font-size: 12px;
}

.reader-meta dd {
    margin: 0;
    font-weight: 800;
}

.reading-note {
    display: grid;
    max-width: 920px;
    margin-top: 22px;
    margin-bottom: 46px;
    padding: 24px 28px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    grid-template-columns: 36px 1fr auto;
    gap: 16px;
    align-items: center;
}

.reading-note > .icon {
    color: var(--coral);
    width: 28px;
    height: 28px;
}

.reading-note h2 {
    margin-bottom: 2px;
    font-size: 18px;
}

.reading-note p {
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: 14px;
}

.shelf-button {
    display: inline-flex;
    min-height: 44px;
    padding: 10px 14px;
    color: var(--white);
    border: 0;
    border-radius: 12px;
    background: var(--ink);
    cursor: pointer;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.shelf-button.is-saved {
    background: #288468;
}

.chapter-content {
    padding: 68px 0 76px;
    background: #08192b;
}

.chapter-heading {
    max-width: 900px;
    margin-bottom: 28px;
    color: var(--white);
    text-align: center;
}

.chapter-heading span {
    color: var(--sun);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.18em;
}

.chapter-heading h2 {
    margin: 5px 0 0;
    font-size: 30px;
}

.reader-panels {
    width: min(900px, calc(100% - 32px));
    margin-inline: auto;
}

.reader-panel {
    margin: 0 0 34px;
}

.reader-panel img {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 6px;
    background: #18314d;
    object-fit: cover;
}

.reader-panel figcaption {
    padding: 14px 6px 0;
    color: #aebfd0;
    font-size: 14px;
    text-align: center;
}

.chapter-end {
    display: grid;
    max-width: 920px;
    margin-top: 62px;
    padding: 36px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--white);
    grid-template-columns: 72px 1fr auto;
    gap: 22px;
    align-items: center;
}

.end-mark {
    display: grid;
    width: 64px;
    height: 64px;
    color: var(--white);
    border-radius: 50%;
    background: var(--coral);
    font-size: 25px;
    font-weight: 900;
    place-items: center;
}

.chapter-end h2 {
    margin-bottom: 4px;
    font-size: 24px;
}

.chapter-end p {
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: 14px;
}

.chapter-nav {
    display: grid;
    max-width: 920px;
    margin-top: 24px;
    margin-bottom: 90px;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.chapter-button {
    display: flex;
    min-height: 62px;
    padding: 13px 18px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: var(--white);
    align-items: center;
    gap: 12px;
    font-weight: 800;
}

.chapter-button-next {
    justify-content: flex-end;
    text-align: right;
}

.chapter-button-next .icon,
.chapter-button.is-disabled:last-child .icon {
    transform: rotate(180deg);
}

.chapter-button.is-disabled {
    color: #9aa8b6;
    background: #edf1f5;
}

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

    .menu-toggle {
        display: flex;
    }

    .site-nav {
        position: absolute;
        left: 20px;
        right: 20px;
        top: calc(100% + 10px);
        display: none;
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: var(--white);
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: block;
    }

    .nav-list {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .nav-link {
        justify-content: center;
    }

    .hero {
        padding: 54px;
        gap: 36px;
    }

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

    .comic-card:nth-child(7),
    .comic-card:nth-child(8) {
        display: none;
    }

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

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

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

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

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

    .korean-poster {
        position: static;
    }
}

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

    .brand-copy small {
        display: none;
    }

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

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

    .section {
        margin-top: 72px;
    }

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

    .hero {
        min-height: auto;
        margin-top: 28px;
        padding: 42px 26px;
        border-radius: 26px;
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: clamp(58px, 18vw, 86px);
    }

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

    .hero-ticket {
        right: 0;
    }

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

    .signal-strip > div {
        padding: 15px 8px;
        text-align: center;
    }

    .signal-strip .signal-message {
        grid-column: 1 / -1;
        min-height: 70px;
        padding-inline: 20px;
        text-align: left;
    }

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

    .comic-card:nth-child(7),
    .comic-card:nth-child(8) {
        display: block;
    }

    .card-body {
        padding: 16px;
    }

    .editorial-section {
        width: min(100% - 28px, 1200px);
        padding: 36px 18px;
        border-radius: 24px;
    }

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

    .editor-card-featured {
        grid-row: auto;
    }

    .editor-card {
        min-height: 320px;
    }

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

    .category-card:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 9px);
        justify-self: center;
    }

    .ranking-section {
        padding-block: 58px;
    }

    .ranking-layout,
    .discovery-section,
    .about-section,
    .app-section {
        grid-template-columns: 1fr;
    }

    .ranking-layout {
        gap: 38px;
    }

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

    .schedule-day.is-today {
        transform: none;
    }

    .korean-row {
        grid-template-columns: 30px 68px 1fr;
        gap: 12px;
    }

    .korean-row img {
        width: 68px;
    }

    .row-meta {
        display: none;
    }

    .discovery-section,
    .about-section,
    .app-section {
        padding: 34px 24px;
        gap: 34px;
    }

    .update-list li {
        padding-inline: 22px;
        grid-template-columns: 64px 1fr 70px;
    }

    .update-category {
        display: none;
    }

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

    .reader-grid blockquote p {
        min-height: 0;
    }

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

    .app-graphic {
        order: 2;
    }

    .catalog-hero {
        padding: 34px 26px;
        grid-template-columns: 72px 1fr;
        gap: 20px;
    }

    .catalog-hero-icon {
        width: 66px;
        height: 66px;
        border-radius: 20px;
    }

    .catalog-hero-icon .icon {
        width: 34px;
        height: 34px;
    }

    .catalog-count {
        grid-column: 1 / -1;
        justify-self: start;
    }

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

    .catalog-item:last-child {
        grid-column: auto;
        width: 100%;
    }

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

    .category-note a {
        grid-column: 2;
        justify-self: start;
    }

    .reader-meta {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 7px;
    }

    .reader-meta div {
        min-width: 0;
        padding: 9px 6px;
    }

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

    .shelf-button {
        grid-column: 2;
        justify-self: start;
    }

    .chapter-end {
        grid-template-columns: 62px 1fr;
        padding: 26px;
    }

    .chapter-end .button {
        grid-column: 1 / -1;
    }
}

@media (max-width: 520px) {
    .brand-copy strong {
        font-size: 17px;
    }

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

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

    .hero-cover {
        width: 82%;
    }

    .hero-ticket {
        width: 225px;
        padding: 17px;
    }

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

    .card-body p:not(.card-kicker) {
        display: none;
    }

    .card-body h3 {
        font-size: 17px;
    }

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

    .category-card:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 7px);
    }

    .rank-item {
        padding-inline: 14px;
        grid-template-columns: 34px 1fr;
    }

    .rank-trend {
        display: none;
    }

    .schedule-day {
        min-height: 150px;
    }

    .korean-poster {
        padding: 32px 26px;
    }

    .korean-row p {
        display: none;
    }

    .update-list li {
        grid-template-columns: 56px 1fr;
    }

    .update-list li > span:last-child {
        display: none;
    }

    .catalog-item {
        min-height: 250px;
        grid-template-columns: 130px 1fr;
    }

    .catalog-copy {
        padding: 18px;
    }

    .catalog-copy h2 {
        font-size: 20px;
    }

    .catalog-copy > p:not(.card-kicker) {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
    }

    .catalog-meta {
        display: none;
    }

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

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

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