:root {
    color-scheme: light;
    --ink: #102b3c;
    --muted: #657783;
    --accent: #46e0be;
    --paper: #ffffff;
    --ground: #f3f6f8;
    --line: #dfe7eb;
    --radius: 16px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 24px;
}

body {
    margin: 0;
    background: var(--ground);
    color: var(--ink);
    font-family: "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    overflow-wrap: anywhere;
}

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

button, input {
    font: inherit;
}

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

button {
    cursor: pointer;
}

button:disabled, input:disabled {
    cursor: not-allowed;
    opacity: 0.45;
}

a:focus-visible, button:focus-visible, input:focus-visible {
    outline: 3px solid #077f6c;
    outline-offset: 4px;
}

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

img.image-failed {
    object-fit: contain;
    padding: 24px;
    font-size: 14px;
    color: var(--ink);
    background: linear-gradient(135deg, #d6e9eb, #b6ccc8);
}

svg {
    flex-shrink: 0;
}

h1, h2, h3, p, figure {
    margin: 0;
}

h1, h2, h3 {
    line-height: 1.45;
}

h2 {
    font-size: 26px;
    letter-spacing: -0.6px;
}

h3 {
    font-size: 17px;
}

p {
    color: var(--muted);
}

.icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: -4px;
}

.wrap {
    width: calc(100% - 48px);
    max-width: 1200px;
    margin-inline: auto;
}

main > section {
    margin-block: 64px;
}

.site-header {
    background: white;
    border-bottom: 1px solid var(--line);
}

.header-top {
    display: flex;
    align-items: center;
    gap: 24px;
    min-height: 88px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
}

.brand img {
    background: none;
}

.brand-light {
    font-weight: 400;
    margin-left: 4px;
}

.brand small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 400;
    margin-top: 6px;
}

.header-note {
    font-size: 14px;
    color: var(--muted);
    padding-left: 24px;
    border-left: 1px solid var(--line);
}

.header-save {
    margin-left: auto;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    font-size: 14px;
    padding: 10px 16px;
    border: 1px solid var(--line);
    border-radius: 24px;
}

.navigation {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2px;
    padding-block: 7px 12px;
}

.navigation a {
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 9px 10px;
    border-radius: 8px;
    min-height: 44px;
}

.navigation a .icon {
    width: 16px;
    height: 16px;
}

.navigation a:hover, .navigation a[aria-current="page"] {
    background: var(--ink);
    color: white;
}

.navigation a[aria-current="page"] .icon {
    color: var(--accent);
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--line);
    width: 44px;
    height: 44px;
    border-radius: 8px;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 24px;
    z-index: 10;
    background: var(--accent);
    padding: 12px;
}

.skip-link:focus {
    top: 8px;
}

.hero {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    background: var(--ink);
    color: white;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 28px;
}

.hero-copy {
    padding: 40px 36px;
    align-self: center;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #16715f;
}

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

.hero h1 {
    font-size: 18px;
    font-weight: 500;
    margin-top: 20px;
}

.hero-statement {
    font-size: clamp(30px, 3.5vw, 44px);
    font-weight: 750;
    color: white;
    line-height: 1.38;
    letter-spacing: -1.6px;
    margin: 8px 0 20px;
}

.hero-copy > p:not(.hero-statement) {
    color: #bed0d9;
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 26px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 22px;
    min-height: 46px;
    background: var(--accent);
    color: var(--ink);
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
}

.button:hover {
    filter: brightness(0.95);
}

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

.button[aria-pressed="true"] {
    background: #d2f8ed;
    border-color: #77ccb7;
}

.hero-bottom {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 12px;
    color: #bed0d9;
}

.hero-visual {
    position: relative;
    width: 100%;
    min-width: 0;
    min-height: 450px;
    overflow: hidden;
}

.hero-visual > img {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(180deg, #102b3c20 15%, #102b3c30 40%, #102b3cef 100%);
}

.hero-label {
    align-self: flex-start;
    padding: 5px 12px;
    background: #ffffffec;
    color: var(--ink);
    border-radius: 4px;
    font-size: 12px;
}

.hero-play {
    display: grid;
    place-items: center;
    align-self: center;
    width: 68px;
    height: 68px;
    background: #ffffff26;
    border: 1px solid #ffffffa8;
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

.hero-play .icon {
    width: 30px;
    height: 30px;
}

.hero-overlay h2 {
    font-size: 25px;
    margin: 6px 0 10px;
    max-width: 460px;
}

.hero-overlay p {
    color: #d6e3e6;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 12px;
}

.hero-overlay div > span:last-child {
    font-size: 12px;
    color: #d6e3e6;
}

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

.section-heading h2, .ranking-section h2, .tags-section h2 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-heading h2 .icon {
    width: 24px;
    height: 24px;
    color: #117a65;
}

.section-heading p {
    font-size: 14px;
    margin-top: 6px;
}

.more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    min-height: 44px;
}

.section-heading > .more {
    white-space: nowrap;
}

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

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

.video-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
    min-width: 0;
}

.cover {
    display: block;
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #cddde2;
}

.cover img {
    width: 100%;
    height: 100%;
    transition: transform 250ms ease;
}

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

.play-badge {
    position: absolute;
    left: 12px;
    bottom: 12px;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    background: #102b3cbf;
    border: 1px solid #ffffff60;
    border-radius: 50%;
    color: white;
}

.play-badge .icon {
    width: 16px;
    height: 16px;
}

.duration {
    position: absolute;
    bottom: 12px;
    right: 10px;
    background: #102b3ccb;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
}

.card-body {
    padding: 16px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #39796e;
    font-size: 12px;
}

.eyebrow > span {
    margin-left: auto;
    color: var(--muted);
}

.eyebrow .icon {
    width: 14px;
    height: 14px;
}

.card-body h3 {
    margin: 9px 0;
    min-height: 2.9em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-body p {
    font-size: 14px;
    line-height: 1.75;
    min-height: 3.5em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.meta .icon {
    width: 14px;
    height: 14px;
}

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

.category-tile {
    position: relative;
    padding: 22px;
    border-radius: 12px;
    background: #e0efef;
    transition: translate 180ms ease;
}

.category-tile:hover {
    translate: 0 -3px;
}

.category-tile > .icon {
    width: 30px;
    height: 30px;
    margin-bottom: 12px;
}

.category-tile p {
    font-size: 13px;
    margin-top: 6px;
    min-height: 3.5em;
}

.category-tile > span {
    display: flex;
    justify-content: space-between;
    margin-top: 14px;
    font-size: 12px;
}

.tone-1 {
    background: #e0eafa;
}

.tone-2 {
    background: #f4e9d8;
}

.tone-3 {
    background: #e6e5f5;
}

.fresh-section {
    padding: 30px;
    border-radius: 16px;
    background: white;
}

.timeline article {
    display: grid;
    grid-template-columns: 46px 164px minmax(0, 1fr) 44px;
    align-items: center;
    gap: 24px;
    padding: 18px 0;
    border-top: 1px solid var(--line);
}

.timeline-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
    color: var(--muted);
}

.timeline-date span, .timeline-date small {
    font-size: 12px;
}

.timeline-date strong {
    font-size: 28px;
    color: var(--ink);
    font-weight: 500;
    margin: 5px 0;
}

.mini-cover {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
}

.mini-cover img {
    width: 100%;
    height: 100%;
}

.mini-cover > span {
    position: absolute;
    right: 8px;
    bottom: 4px;
    color: white;
}

.timeline h3 {
    margin: 4px 0;
}

.timeline p {
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.round-link {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
}

.travel-mosaic {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
}

.travel-tile {
    position: relative;
    min-width: 0;
    border-radius: 16px;
    overflow: hidden;
    min-height: 215px;
}

.travel-tile:first-child {
    grid-row: span 2;
}

.travel-tile > img {
    width: 100%;
    height: 100%;
    position: absolute;
}

.travel-tile > div {
    position: absolute;
    inset: 0;
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
    background: linear-gradient(transparent, #102b3ce8);
}

.travel-tile h3 {
    font-size: 22px;
    max-width: 85%;
    margin: 6px 0;
}

.travel-tile span, .travel-tile p {
    font-size: 13px;
    color: #edf5f7;
}

.travel-play {
    position: absolute;
    right: 24px;
    top: 24px;
    border: 1px solid #ffffff8f;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
}

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

.horizontal-card {
    display: grid;
    grid-template-columns: 40% minmax(0, 1fr);
}

.horizontal-card .cover {
    height: 100%;
    aspect-ratio: auto;
}

.horizontal-card .duration {
    font-size: 12px;
    bottom: 8px;
    left: 8px;
    right: auto;
}

.horizontal-card .play-badge {
    top: 12px;
    bottom: auto;
}

.horizontal-card .card-body {
    padding: 18px;
}

.food-section {
    border-top: 3px solid #dba657;
    padding-top: 24px;
}

.food-grid .video-card {
    border-radius: 0;
    background: transparent;
    border: 0;
}

.food-grid .cover {
    border-radius: 50% 50% 10px 10px;
    aspect-ratio: 4 / 3;
}

.food-grid .card-body {
    padding-inline: 0;
}

.ranking-section {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 48px;
    background: #102b3c;
    color: white;
    padding: 36px;
    border-radius: 16px;
}

.ranking-section h2 {
    margin: 12px 0 16px;
}

.ranking-section .kicker {
    color: var(--accent);
}

.ranking-section p {
    color: #bfd0d9;
    font-size: 14px;
    margin-bottom: 16px;
}

.ranking-section .muted {
    font-size: 12px;
}

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

.rank-list li {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 60px;
    align-items: center;
    gap: 16px;
    padding: 17px 0;
    border-bottom: 1px solid #97aeb738;
}

.rank-list li:first-child {
    padding-top: 0;
}

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

.rank-number {
    font-size: 28px;
    font-weight: 750;
    font-style: italic;
    color: #42bea5;
}

.rank-list p {
    font-size: 12px;
    margin: 5px 0 0;
}

.heat {
    text-align: right;
    font-size: 22px;
    font-weight: 600;
}

.heat small {
    display: block;
    font-size: 12px;
    font-weight: 400;
    opacity: 0.65;
}

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

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

.topic-card .cover {
    aspect-ratio: 2.5;
}

.topic-card > div {
    padding: 24px;
}

.topic-card h3 {
    font-size: 22px;
    margin: 6px 0 12px;
}

.topic-card p {
    font-size: 14px;
}

.topic-card .more {
    margin-top: 12px;
}

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

.editor-grid > a {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #e5edef;
    border-radius: 12px;
    padding: 26px;
}

.editor-symbol {
    background: white;
    display: grid;
    place-items: center;
    border-radius: 50%;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
}

.editor-grid h3 {
    margin: 6px 0 10px;
}

.editor-grid p {
    font-size: 14px;
}

.saved-list {
    margin-bottom: 20px;
    font-size: 14px;
}

.saved-list ul {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}

.saved-list a {
    display: block;
    padding: 10px 16px;
    border: 1px solid #bdddd3;
    background: #e3f6ef;
    border-radius: 8px;
}

.tags-section {
    display: flex;
    gap: 36px;
    align-items: flex-start;
    border-block: 1px solid var(--line);
    padding-block: 28px;
}

.tags-section h2 {
    flex-shrink: 0;
    font-size: 18px;
    margin-top: 6px;
}

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

.tag-cloud a {
    padding: 8px 14px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 6px;
    font-size: 14px;
}

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

.about-section h2 {
    margin-top: 10px;
    font-size: 18px;
}

.about-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.5;
    margin-top: 16px;
}

.about-section > div:last-child p {
    margin-bottom: 16px;
    line-height: 1.95;
}

.subscribe-section {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr) 210px;
    align-items: center;
    gap: 28px;
    padding: 32px;
    background: #daeee9;
    border: 1px solid #b9ded4;
    border-radius: 16px;
}

.subscribe-mark img {
    background: transparent;
}

.subscribe-section h2 {
    margin: 6px 0 10px;
    font-size: 24px;
}

.subscribe-section p {
    font-size: 14px;
}

.subscribe-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
}

.subscribe-actions .button {
    background: var(--ink);
    color: white;
    width: 100%;
    padding-inline: 12px;
}

.copy-feed {
    border: 0;
    background: transparent;
    color: var(--ink);
    font-size: 14px;
    text-decoration: underline;
    min-height: 44px;
}

.subscribe-actions small {
    font-size: 12px;
    color: var(--muted);
}

.site-footer {
    background: var(--ink);
    color: #e3eef1;
    padding: 40px 0 20px;
    margin-top: 56px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
}

.footer-grid p {
    font-size: 14px;
    color: #afc4ce;
    margin-top: 12px;
}

.footer-grid nav {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 6px 26px;
    font-size: 14px;
}

.footer-grid nav a {
    padding-block: 8px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid #ffffff24;
    margin-top: 30px;
    padding-top: 20px;
    color: #adc2cc;
    font-size: 12px;
}

.back-top {
    position: fixed;
    bottom: 24px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: white;
    border: 1px solid var(--line);
    color: var(--ink);
    box-shadow: 0 5px 18px #102b3c14;
    border-radius: 50%;
    display: none;
    place-items: center;
    z-index: 5;
}

.back-top.visible {
    display: grid;
}

.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ink);
    color: white;
    padding: 12px 22px;
    border-radius: 8px;
    box-shadow: 0 6px 30px #102b3c30;
    z-index: 12;
    max-width: calc(100% - 40px);
    width: max-content;
    display: none;
    font-size: 14px;
}

.toast.visible {
    display: block;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 14px;
    color: var(--muted);
    margin: 26px 0;
}

.category-hero {
    margin-top: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    background: #e1eeee;
    border-radius: 18px;
    padding: 32px;
}

.category-food, .category-latest {
    background: #f1e8da;
}

.category-creative, .category-topic {
    background: #e9e7f2;
}

.category-digital, .category-city {
    background: #dde9f3;
}

.category-hero h1 {
    font-size: 34px;
    margin: 14px 0 18px;
}

.category-hero p {
    line-height: 1.9;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
    font-size: 12px;
}

.chip-row span {
    background: #ffffffaf;
    padding: 4px 10px;
    border-radius: 4px;
}

.category-feature {
    border-radius: 12px;
}

.feature-caption {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px 24px 54px;
    background: linear-gradient(transparent, #102b3ce8);
    color: white;
    font-size: 12px;
}

.feature-caption h2 {
    font-size: 22px;
    margin-top: 5px;
}

.category-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: white;
}

.category-bottom h2 {
    margin: 8px 0 12px;
}

.category-bottom p {
    margin-bottom: 20px;
}

.detail-heading h1 {
    font-size: clamp(26px, 3vw, 38px);
    margin: 10px 0 18px;
    max-width: 1000px;
}

.detail-meta {
    display: flex;
    gap: 12px 24px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 24px;
}

.detail-meta a {
    color: #197561;
}

.watch-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 28px;
}

.player {
    background: #0c1d28;
    border-radius: 12px;
    overflow: hidden;
    color: white;
}

.player-stage {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.player-stage > img, .player-stage video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-mode {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #102b3cbf;
    border: 1px solid #ffffff40;
    border-radius: 4px;
    padding: 3px 10px;
    font-size: 12px;
}

.player-center {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    width: 68px;
    height: 68px;
    border: 1px solid #ffffffb0;
    border-radius: 50%;
    background: #102b3c90;
    color: white;
    backdrop-filter: blur(6px);
}

.player-center .icon {
    width: 28px;
    height: 28px;
}

.scene-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, #102b3ced);
    padding: 34px 18px 12px;
    font-size: 14px;
    pointer-events: none;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    font-size: 12px;
}

.player-controls button {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: white;
    background: none;
    border: 0;
    width: 44px;
    height: 44px;
}

.player-controls input {
    accent-color: var(--accent);
    min-width: 0;
}

.seek {
    width: 100%;
    flex: 1;
}

.volume-label {
    display: flex;
    align-items: center;
    gap: 6px;
}

.volume-label input {
    width: 44px;
}

.player-status {
    color: #bdd0d7;
    font-size: 12px;
    border-top: 1px solid #ffffff17;
    padding: 10px 18px;
}

.player:fullscreen, .expanded-player {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 0;
}

.player:fullscreen .player-stage, .expanded-player .player-stage {
    height: calc(100vh - 115px);
    width: 100%;
}

.player:fullscreen .player-poster, .expanded-player .player-poster {
    object-fit: contain;
    background: #0c1d28;
}

.expanded-player {
    position: fixed;
    inset: 0;
    z-index: 30;
}

.player-expanded {
    overflow: hidden;
}

.category-slogan {
    font-size: 21px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 12px;
}

.watch-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.episode-note {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: white;
    padding: 26px;
}

.episode-note h2 {
    font-size: 22px;
    margin: 8px 0 14px;
}

.episode-note h3 {
    margin-top: 20px;
}

.episode-note p, .episode-note li {
    font-size: 14px;
    line-height: 1.95;
}

.episode-note ul {
    padding-left: 20px;
    color: var(--muted);
    margin: 10px 0;
}

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

.scene-grid img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
}

.scene-grid figcaption {
    display: flex;
    gap: 12px;
    margin-top: 12px;
    font-size: 14px;
}

.scene-grid figcaption span {
    color: #188169;
    font-weight: 700;
}

.reading-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px;
    padding: 30px;
    border-block: 1px solid var(--line);
}

.reading-grid h2 {
    font-size: 22px;
    margin-bottom: 18px;
}

.reading-grid p {
    margin-bottom: 16px;
    line-height: 1.95;
}

.episode-nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    padding: 24px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 10px;
    font-size: 14px;
    align-items: center;
}

.episode-nav > :last-child {
    text-align: right;
}

.episode-nav span {
    color: var(--muted);
}

.prose {
    max-width: 820px;
    margin: 40px auto 80px;
    padding: 40px;
    border: 1px solid var(--line);
    background: white;
    border-radius: 14px;
}

.prose h1 {
    font-size: 36px;
    margin: 10px 0 24px;
}

.prose h2 {
    font-size: 22px;
    margin: 32px 0 14px;
}

.prose p {
    line-height: 2;
    margin-bottom: 20px;
}

[hidden] {
    display: none !important;
}
