:root {
    --ink: #132239;
    --muted: #657087;
    --paper: #f7f9fc;
    --white: #ffffff;
    --line: #dfe5ef;
    --coral: #ff5f67;
    --coral-dark: #e24654;
    --navy: #142640;
    --blue: #397df6;
    --shadow: 0 16px 40px rgba(26, 43, 72, 0.1);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

button,
input {
    font: inherit;
}

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

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    background: rgba(247, 249, 252, 0.94);
    border-bottom: 1px solid rgba(223, 229, 239, 0.9);
    backdrop-filter: blur(18px);
}

.header-shell {
    display: flex;
    min-height: 84px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.brand-mark {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: #ffffff;
    background: var(--coral);
    border: 3px solid var(--ink);
    border-radius: 15px 6px 15px 6px;
    box-shadow: 5px 5px 0 var(--ink);
    font-size: 23px;
    font-weight: 900;
    line-height: 1;
    transform: rotate(-2deg);
}

.brand-mark.small {
    width: 38px;
    height: 38px;
    border-width: 2px;
    border-radius: 12px 5px 12px 5px;
    box-shadow: 3px 3px 0 #ffffff;
    font-size: 18px;
}

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

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

.brand-copy small {
    margin-top: 5px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.17em;
}

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

.site-nav a {
    display: flex;
    min-width: 58px;
    padding: 9px 8px;
    align-items: center;
    border-radius: 12px;
    flex-direction: column;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    transition: 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--ink);
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(28, 42, 64, 0.08);
}

.site-nav a.active {
    color: var(--coral-dark);
}

.nav-icon {
    height: 20px;
    font-size: 16px;
}

.nav-label {
    margin-top: 4px;
    white-space: nowrap;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #ffffff;
    color: var(--ink);
    cursor: pointer;
    font-size: 22px;
}

.hero {
    display: grid;
    min-height: 580px;
    margin-top: 48px;
    padding: 34px;
    align-items: center;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 46px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 32px;
    box-shadow: var(--shadow);
}

.hero-copy {
    padding: 20px 0 20px 28px;
}

.hero-label,
.eyebrow {
    display: inline-block;
    color: var(--coral-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 14px 0 12px;
    font-size: clamp(52px, 7vw, 92px);
    letter-spacing: -0.08em;
    line-height: 1.05;
}

.hero h1 a {
    position: relative;
}

.hero h1 a::after {
    position: absolute;
    right: -10px;
    bottom: 3px;
    left: 0;
    z-index: -1;
    height: 18px;
    background: #ffd454;
    content: "";
    transform: rotate(-1.5deg);
}

.hero-lead {
    max-width: 570px;
    margin: 0;
    color: var(--muted);
    font-size: 18px;
}

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

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

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

.button.primary {
    color: #ffffff;
    background: var(--coral);
    box-shadow: 0 9px 20px rgba(255, 95, 103, 0.25);
}

.button.secondary {
    background: #ffffff;
    border-color: var(--line);
}

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

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

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

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

.hero-stats dd {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.hero-visual {
    position: relative;
    height: 510px;
    overflow: hidden;
    border-radius: 24px 24px 80px 24px;
    background: var(--navy);
}

.hero-image {
    height: 100%;
    aspect-ratio: 4 / 5;
}

.hero-caption {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    display: flex;
    padding: 17px 20px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: rgba(19, 34, 57, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    color: #ffffff;
    backdrop-filter: blur(12px);
}

.hero-caption span {
    color: #ffd454;
    font-size: 12px;
}

.ticker {
    margin-top: 32px;
    background: var(--navy);
    color: #ffffff;
}

.ticker-inner {
    display: grid;
    min-height: 68px;
    align-items: center;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
}

.ticker-inner p {
    margin: 0;
}

.ticker-inner a {
    color: #ffd454;
    font-weight: 700;
}

.ticker-badge {
    padding: 5px 11px;
    background: var(--coral);
    border-radius: 8px;
    font-size: 12px;
    letter-spacing: 0.12em;
}

.content-section {
    margin-top: 96px;
    margin-bottom: 96px;
}

.section-heading {
    max-width: 680px;
    margin-bottom: 32px;
}

.section-heading h2,
.korean-copy h2,
.ranking-copy h2,
.about-copy h2,
.app-copy h2 {
    margin: 8px 0 10px;
    font-size: clamp(30px, 4vw, 46px);
    letter-spacing: -0.045em;
    line-height: 1.2;
}

.section-heading p,
.korean-copy p,
.ranking-copy p,
.about-copy p,
.app-copy p {
    margin: 0;
    color: var(--muted);
}

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

.comic-card,
.poster-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: 0.25s ease;
}

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

.cover-link {
    display: block;
    overflow: hidden;
}

.comic-card img,
.poster-card img {
    aspect-ratio: 4 / 5;
    transition: transform 0.4s ease;
}

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

.card-body {
    padding: 18px;
}

.card-kicker {
    color: var(--coral-dark);
    font-size: 12px;
    font-weight: 800;
}

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

.card-body p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.card-meta {
    display: flex;
    margin-top: 15px;
    justify-content: space-between;
    gap: 8px;
    color: var(--muted);
    font-size: 12px;
}

.category-section {
    padding: 88px 0;
    background: #eef2f8;
}

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

.category-card {
    position: relative;
    min-height: 235px;
    padding: 25px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 20px;
    transition: 0.2s ease;
}

.category-card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
    background: var(--accent);
    content: "";
}

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

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

.category-card strong {
    display: block;
    margin-top: 15px;
    font-size: 19px;
}

.category-card p {
    margin: 7px 0 14px;
    color: var(--muted);
    font-size: 14px;
}

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

.latest-layout {
    display: grid;
    grid-template-columns: 0.38fr 0.62fr;
    gap: 50px;
}

.latest-title {
    position: sticky;
    top: 120px;
    align-self: start;
}

.update-list {
    border-top: 1px solid var(--ink);
}

.update-list article {
    display: grid;
    padding: 20px 4px;
    align-items: center;
    grid-template-columns: 95px 1fr auto;
    gap: 16px;
    border-bottom: 1px solid var(--line);
}

.update-list time {
    color: var(--muted);
    font-size: 13px;
}

.update-list h3 {
    margin: 4px 0 0;
    font-size: 18px;
}

.pill,
.chapter-chip {
    display: inline-block;
    padding: 3px 9px;
    background: #edf2fb;
    border-radius: 999px;
    color: var(--muted);
    font-size: 12px;
}

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

.ranking-layout {
    display: grid;
    grid-template-columns: 0.42fr 0.58fr;
    gap: 70px;
}

.eyebrow.light,
.ranking-copy .eyebrow {
    color: #ffd454;
}

.ranking-copy p {
    margin-bottom: 26px;
    color: #bdc8d8;
}

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

.ranking-list li {
    display: grid;
    padding: 15px 0;
    align-items: center;
    grid-template-columns: 60px 1fr auto;
    gap: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.rank-number {
    color: #ffd454;
    font-size: 25px;
    font-weight: 900;
    font-style: italic;
}

.ranking-list h3,
.ranking-list p {
    margin: 0;
}

.ranking-list h3 {
    font-size: 17px;
}

.ranking-list p {
    color: #94a3b8;
    font-size: 12px;
}

.rank-trend {
    color: #6fe0af;
    font-weight: 900;
}

.korean-feature {
    display: grid;
    align-items: center;
    grid-template-columns: 0.52fr 0.48fr;
    gap: 60px;
}

.korean-image-wrap {
    position: relative;
}

.korean-image {
    aspect-ratio: 16 / 11;
    border-radius: 28px 80px 28px 28px;
    box-shadow: var(--shadow);
}

.image-note {
    position: absolute;
    bottom: -18px;
    left: 28px;
    padding: 10px 16px;
    color: #ffffff;
    background: #8b7cf6;
    border-radius: 11px;
    box-shadow: var(--shadow);
    font-size: 13px;
    font-weight: 800;
}

.check-list {
    margin: 22px 0 28px;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    margin: 8px 0;
    padding-left: 28px;
}

.check-list li::before {
    position: absolute;
    left: 0;
    color: #20b486;
    content: "✓";
    font-weight: 900;
}

.completed-section {
    padding: 88px 0;
    background: #fff4f4;
}

.poster-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

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

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

.mood-grid article {
    min-height: 260px;
    padding: 27px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 65px 20px 20px 20px;
}

.mood-grid article:nth-child(even) {
    border-radius: 20px 65px 20px 20px;
}

.mood-icon {
    font-size: 34px;
}

.mood-grid h3 {
    margin: 17px 0 5px;
}

.mood-grid p {
    min-height: 58px;
    margin: 0 0 19px;
    color: var(--muted);
    font-size: 14px;
}

.mood-grid a {
    color: var(--coral-dark);
    font-weight: 800;
}

.reading-guide {
    padding: 88px 0;
    background: #eaf7f2;
}

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

.steps-grid article {
    position: relative;
    padding: 28px;
    background: #ffffff;
    border-radius: 20px;
}

.steps-grid article::after {
    position: absolute;
    top: 42px;
    right: -20px;
    z-index: 2;
    color: #20b486;
    content: "→";
    font-size: 22px;
    font-weight: 900;
}

.steps-grid article:last-child::after {
    content: none;
}

.step-number {
    color: #20b486;
    font-size: 35px;
    font-weight: 900;
}

.steps-grid h3 {
    margin: 5px 0;
}

.steps-grid p {
    margin: 0;
    color: var(--muted);
}

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

.voices-grid blockquote {
    margin: 0;
    padding: 27px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 20px;
}

.voices-grid blockquote > p {
    min-height: 105px;
    margin: 0;
    font-size: 17px;
}

.voices-grid footer {
    display: flex;
    padding-top: 16px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--line);
}

.voices-grid footer span {
    color: var(--muted);
    font-size: 13px;
}

.about-section {
    padding: 95px 0;
    background: #ffffff;
}

.about-layout {
    display: grid;
    align-items: center;
    grid-template-columns: 0.3fr 0.7fr;
    gap: 60px;
}

.about-mark {
    display: grid;
    aspect-ratio: 1;
    place-items: center;
    background: var(--coral);
    border: 7px solid var(--ink);
    border-radius: 45% 16% 45% 16%;
    box-shadow: 18px 18px 0 #ffd454;
    transform: rotate(-4deg);
}

.about-mark span {
    color: #ffffff;
    font-size: clamp(75px, 11vw, 150px);
    font-weight: 900;
    line-height: 1;
    transform: rotate(4deg);
}

.about-copy p + p {
    margin-top: 14px;
}

.about-tags {
    display: flex;
    margin-top: 24px;
    gap: 9px;
    flex-wrap: wrap;
}

.about-tags span {
    padding: 6px 12px;
    background: #f0f3f8;
    border-radius: 999px;
    color: var(--muted);
    font-size: 13px;
}

.app-section {
    display: grid;
    margin-top: 96px;
    margin-bottom: 96px;
    padding: 55px 65px;
    align-items: center;
    grid-template-columns: 1fr 260px;
    gap: 60px;
    color: #ffffff;
    background: var(--navy);
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.app-copy p {
    max-width: 650px;
    color: #bdc8d8;
}

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

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

.form-row {
    display: flex;
    gap: 10px;
}

.form-row input {
    width: 100%;
    min-height: 48px;
    padding: 0 15px;
    border: 1px solid #52647e;
    border-radius: 11px;
    outline: none;
}

.form-row input:focus {
    border-color: #ffd454;
    box-shadow: 0 0 0 3px rgba(255, 212, 84, 0.25);
}

.form-row button {
    min-width: 120px;
    border: 0;
    border-radius: 11px;
    color: var(--navy);
    background: #ffd454;
    cursor: pointer;
    font-weight: 900;
}

.form-note,
.form-success {
    margin-top: 7px !important;
    font-size: 12px;
}

.form-success {
    color: #6fe0af !important;
}

.qr-card {
    padding: 20px;
    color: var(--ink);
    background: #ffffff;
    border-radius: 20px;
    text-align: center;
}

.qr-pattern {
    display: grid;
    width: 150px;
    height: 150px;
    margin: 0 auto 14px;
    padding: 9px;
    grid-template-columns: repeat(6, 1fr);
    gap: 3px;
    background: #ffffff;
    border: 4px solid var(--ink);
}

.qr-pattern span {
    background: var(--ink);
}

.qr-pattern .q1 {
    background: var(--coral);
}

.qr-pattern .q2 {
    background: #ffffff;
}

.qr-card strong,
.qr-card > span {
    display: block;
}

.qr-card > span {
    color: var(--muted);
    font-size: 12px;
}

.site-footer {
    padding: 50px 0;
    color: #ffffff;
    background: #0c192b;
}

.footer-shell {
    display: grid;
    align-items: center;
    grid-template-columns: auto 1fr auto;
    gap: 25px;
}

.footer-shell > p {
    margin: 0;
    color: #94a3b8;
}

.footer-links {
    display: flex;
    gap: 16px;
    font-size: 14px;
}

.copyright {
    grid-column: 1 / -1;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 12px;
}

.page-top {
    margin-top: 40px;
}

.breadcrumb {
    display: flex;
    margin-bottom: 22px;
    align-items: center;
    gap: 9px;
    color: var(--muted);
    font-size: 13px;
    overflow-wrap: anywhere;
}

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

.channel-hero {
    position: relative;
    display: grid;
    min-height: 310px;
    padding: 45px;
    align-items: center;
    grid-template-columns: 110px 1fr 130px;
    gap: 34px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.channel-hero::after {
    position: absolute;
    right: -55px;
    bottom: -95px;
    width: 260px;
    height: 260px;
    background: var(--channel);
    border-radius: 50%;
    content: "";
    opacity: 0.14;
}

.channel-icon {
    display: grid;
    width: 100px;
    height: 100px;
    place-items: center;
    color: #ffffff;
    background: var(--channel);
    border-radius: 28px 10px 28px 10px;
    box-shadow: 9px 9px 0 var(--ink);
    font-size: 42px;
    font-weight: 900;
}

.channel-copy h1 {
    margin: 6px 0 8px;
    font-size: clamp(40px, 6vw, 68px);
    line-height: 1.15;
}

.channel-copy p {
    max-width: 680px;
    margin: 0;
    color: var(--muted);
}

.channel-count {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.channel-count strong {
    color: var(--channel);
    font-size: 56px;
    line-height: 1;
}

.channel-count span {
    font-size: 13px;
}

.channel-toolbar {
    display: flex;
    margin-bottom: 24px;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}

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

.channel-toolbar p,
.update-date {
    color: var(--muted);
    font-size: 14px;
}

.channel-list {
    display: grid;
    gap: 20px;
}

.channel-list article {
    display: grid;
    padding: 18px;
    grid-template-columns: 190px 1fr;
    gap: 28px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 22px;
}

.channel-cover {
    height: 235px;
    aspect-ratio: 4 / 5;
    border-radius: 14px;
}

.channel-item-copy {
    align-self: center;
}

.channel-item-meta {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    color: var(--muted);
    font-size: 13px;
}

.channel-item-copy h3 {
    margin: 8px 0;
    font-size: 26px;
}

.channel-item-copy > p {
    margin: 0 0 14px;
    color: var(--muted);
}

.channel-item-tags {
    display: flex;
    margin-bottom: 14px;
    gap: 8px;
    flex-wrap: wrap;
}

.channel-item-tags span {
    padding: 4px 10px;
    background: #f0f3f8;
    border-radius: 999px;
    color: var(--muted);
    font-size: 12px;
}

.channel-note {
    margin-bottom: 90px;
    padding: 30px;
    background: #eef2f8;
    border-radius: 20px;
}

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

.channel-note p {
    margin-top: 6px;
    color: var(--muted);
}

.reader-top {
    max-width: 1020px;
}

.reader-article {
    padding-bottom: 90px;
}

.reader-header {
    padding: 48px 55px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 28px;
    text-align: center;
    box-shadow: var(--shadow);
}

.reader-header h1 {
    margin: 10px 0 16px;
    font-size: clamp(35px, 6vw, 58px);
    letter-spacing: -0.045em;
    line-height: 1.2;
}

.reader-meta {
    display: flex;
    justify-content: center;
    gap: 18px;
    color: var(--muted);
    font-size: 13px;
    flex-wrap: wrap;
}

.reader-intro {
    max-width: 740px;
    margin: 24px auto 0;
    color: var(--muted);
}

.reading-notice {
    display: grid;
    margin: 30px 0;
    padding: 22px 25px;
    grid-template-columns: 100px 1fr;
    gap: 20px;
    background: #fff4d9;
    border-left: 5px solid #e7b32f;
    border-radius: 10px;
}

.reading-notice p {
    margin: 0;
}

.comic-chapter > h2 {
    margin: 54px 0 24px;
    text-align: center;
}

.comic-page {
    margin: 0 0 34px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.comic-page img {
    max-height: 1120px;
    aspect-ratio: 4 / 5;
    background: #dfe5ef;
}

.comic-page figcaption {
    display: grid;
    padding: 24px 30px;
    grid-template-columns: 100px 1fr;
    gap: 20px;
    color: var(--muted);
}

.comic-page figcaption span {
    color: var(--coral-dark);
    font-weight: 900;
}

.chapter-end {
    margin-top: 60px;
    padding: 45px;
    background: #ffffff;
    border: 1px dashed #abb7ca;
    border-radius: 20px;
    text-align: center;
}

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

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

.chapter-nav {
    display: grid;
    margin-top: 26px;
    grid-template-columns: 1fr auto 1fr;
    gap: 12px;
}

.chapter-button {
    display: flex;
    min-height: 52px;
    padding: 10px 16px;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.chapter-button.center {
    color: #ffffff;
    background: var(--coral);
    border-color: var(--coral);
}

.chapter-button.disabled {
    color: #9aa5b7;
    background: #edf0f5;
}

@media (max-width: 1050px) {
    .header-shell {
        min-height: 76px;
    }

    .brand-copy small {
        display: none;
    }

    .site-nav a {
        min-width: 50px;
        padding-inline: 5px;
    }

    .hero {
        min-height: 520px;
        gap: 28px;
    }

    .hero-copy {
        padding-left: 5px;
    }

    .hero-visual {
        height: 440px;
    }

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

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

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

    .ranking-layout,
    .korean-feature {
        gap: 40px;
    }
}

@media (max-width: 820px) {
    .nav-toggle {
        display: grid;
        place-items: center;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 1px);
        right: 20px;
        left: 20px;
        display: none;
        padding: 12px;
        grid-template-columns: repeat(4, 1fr);
        background: #ffffff;
        border: 1px solid var(--line);
        border-radius: 0 0 18px 18px;
        box-shadow: var(--shadow);
    }

    .site-nav.open {
        display: grid;
    }

    .hero {
        min-height: auto;
        margin-top: 30px;
        grid-template-columns: 1fr;
    }

    .hero-copy {
        padding: 8px;
    }

    .hero-visual {
        height: 420px;
    }

    .latest-layout,
    .ranking-layout,
    .korean-feature,
    .about-layout {
        grid-template-columns: 1fr;
    }

    .latest-title {
        position: static;
    }

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

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

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

    .steps-grid article::after {
        top: auto;
        right: 50%;
        bottom: -23px;
        transform: rotate(90deg);
    }

    .app-section {
        grid-template-columns: 1fr 220px;
        padding: 45px;
    }

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

    .footer-shell > p:first-of-type {
        display: none;
    }

    .channel-hero {
        grid-template-columns: 90px 1fr;
    }

    .channel-icon {
        width: 80px;
        height: 80px;
    }

    .channel-count {
        display: none;
    }
}

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

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

    .brand-mark {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .brand-copy strong {
        font-size: 17px;
    }

    .site-nav {
        right: 12px;
        left: 12px;
        grid-template-columns: repeat(2, 1fr);
        max-height: calc(100vh - 85px);
        overflow-y: auto;
    }

    .site-nav a {
        flex-direction: row;
        justify-content: center;
        gap: 7px;
    }

    .nav-label {
        margin-top: 0;
    }

    .hero {
        padding: 20px;
        border-radius: 22px;
    }

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

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

    .hero-actions {
        flex-direction: column;
    }

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

    .hero-stats {
        justify-content: space-between;
        gap: 10px;
    }

    .hero-visual {
        height: 350px;
    }

    .hero-caption {
        align-items: flex-start;
        flex-direction: column;
    }

    .ticker-inner {
        padding: 13px 0;
        grid-template-columns: auto 1fr;
    }

    .ticker-inner a {
        grid-column: 1 / -1;
    }

    .content-section {
        margin-top: 68px;
        margin-bottom: 68px;
    }

    .category-section,
    .ranking-section,
    .completed-section,
    .reading-guide,
    .about-section {
        padding: 64px 0;
    }

    .feature-grid,
    .category-grid,
    .poster-row,
    .mood-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

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

    .card-body,
    .category-card,
    .mood-grid article {
        padding: 14px;
    }

    .category-card,
    .mood-grid article {
        min-height: 225px;
    }

    .card-body h3,
    .category-card strong {
        font-size: 15px;
    }

    .card-body p,
    .card-meta {
        display: none;
    }

    .update-list article {
        grid-template-columns: 75px 1fr;
    }

    .chapter-chip {
        display: none;
    }

    .ranking-list li {
        grid-template-columns: 45px 1fr auto;
    }

    .korean-image {
        aspect-ratio: 4 / 3;
    }

    .voices-grid blockquote > p {
        min-height: auto;
    }

    .about-mark {
        width: 65%;
        margin: auto;
    }

    .app-section {
        padding: 35px 24px;
        grid-template-columns: 1fr;
        border-radius: 20px;
    }

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

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

    .qr-card {
        width: 220px;
        margin: auto;
    }

    .footer-shell {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand,
    .footer-links {
        justify-content: center;
    }

    .page-top {
        margin-top: 26px;
    }

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

    .channel-icon {
        width: 64px;
        height: 64px;
        font-size: 27px;
    }

    .channel-list article {
        grid-template-columns: 110px 1fr;
        gap: 14px;
    }

    .channel-cover {
        height: 145px;
    }

    .channel-item-copy h3 {
        margin: 3px 0 8px;
        font-size: 17px;
    }

    .channel-item-copy > p,
    .channel-item-tags,
    .channel-item-meta time {
        display: none;
    }

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

    .reader-header {
        padding: 35px 20px;
    }

    .reader-header h1 {
        font-size: 34px;
    }

    .reading-notice,
    .comic-page figcaption {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .comic-page figcaption {
        padding: 18px;
    }

    .chapter-end {
        padding: 30px 18px;
    }

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