@charset "UTF-8";

:root {
    --ink: #182b2d;
    --muted: #657675;
    --paper: #ffffff;
    --wash: #f3f6f5;
    --line: #e2e9e7;
    --accent: #c0f169;
    --green: #175c48;
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font: 16px/1.75 "Microsoft YaHei", "PingFang SC", sans-serif;
}

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

button, input {
    font: inherit;
}

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

button, .button {
    cursor: pointer;
}

button {
    color: inherit;
}

a:focus-visible, button:focus-visible, input:focus-visible {
    outline: 3px solid #398d74;
    outline-offset: 5px;
}

img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    background: #d9e4df;
}

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

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

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

.icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    vertical-align: middle;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.skip {
    position: absolute;
    left: 20px;
    top: -100px;
    z-index: 50;
    background: white;
    padding: 12px;
}

.skip:focus {
    top: 10px;
}

.masthead {
    background: #122b29;
    color: #ffffff;
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-size: 25px;
    font-weight: 800;
    letter-spacing: -1px;
    white-space: nowrap;
}

.brand img {
    width: 40px;
    height: 40px;
    background: transparent;
}

.brand em {
    color: var(--accent);
    font-size: 20px;
    font-style: normal;
}

.brand-note {
    margin-right: auto;
    padding-left: 22px;
    border-left: 1px solid #3b514d;
    font-size: 13px;
    color: #c4d0cb;
    letter-spacing: 3px;
}

.pill-link, .menu-button {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 1px solid #455d55;
    border-radius: 24px;
    padding: 8px 18px;
    color: #fff;
    background: transparent;
    font-size: 14px;
}

.menu-button {
    display: none;
}

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

.primary-nav {
    display: flex;
    gap: 8px;
    align-items: center;
    min-height: 66px;
    justify-content: space-between;
}

.primary-nav a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 18px 6px;
    font-size: 14px;
    position: relative;
    white-space: nowrap;
}

.primary-nav a[aria-current="page"] {
    color: var(--green);
    font-weight: bold;
}

.primary-nav a[aria-current="page"]::after {
    content: "";
    position: absolute;
    left: 6px;
    right: 6px;
    bottom: 0;
    height: 3px;
    background: var(--green);
}

.hero {
    display: grid;
    grid-template-columns: .77fr 1.23fr;
    gap: 40px;
    align-items: center;
    padding: 40px 0 36px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--green);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 12px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(34px, 4vw, 54px);
    margin: 16px 0 4px;
    letter-spacing: -2px;
}

.hero-line {
    font-size: clamp(25px, 3vw, 39px);
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.hero-copy > p:not(.eyebrow):not(.hero-line) {
    color: var(--muted);
    max-width: 400px;
}

.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 24px;
}

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

.button.lime {
    color: #193f2c;
    background: var(--accent);
}

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

.hero-bottom {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid var(--line);
    padding-top: 18px;
    margin-top: 26px;
    font-size: 12px;
    color: var(--muted);
}

.hero-bottom strong {
    font-size: 21px;
    color: var(--ink);
}

.hero-media, .poster {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: #294d42;
    color: white;
    isolation: isolate;
}

.hero-media > img {
    aspect-ratio: 16 / 11;
}

.hero-media::after, .poster::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 30%, #102923e8);
    z-index: -1;
}

.hero-media > img, .poster > img {
    position: relative;
    z-index: -2;
}

.hero-caption {
    position: absolute;
    bottom: 28px;
    left: 28px;
    right: 28px;
}

.hero-caption h2 {
    font-size: 28px;
    margin: 12px 0 8px;
}

.hero-caption p {
    color: #e1e9e4;
    font-size: 14px;
}

.badge {
    display: inline-flex;
    padding: 4px 9px;
    border-radius: 5px;
    background: var(--accent);
    color: #183829;
    font-size: 12px;
    font-weight: 700;
}

.hero-tag {
    position: absolute;
    top: 22px;
    left: 22px;
}

.play-circle {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border: 1px solid #ffffff8a;
    border-radius: 50%;
    background: #ffffff24;
    color: white;
    backdrop-filter: blur(5px);
}

.hero-play {
    position: absolute;
    right: 26px;
    top: 22px;
}

.mini-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--line);
    border-radius: 12px;
    margin-bottom: 30px;
}

.mini-strip a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    min-width: 0;
}

.mini-strip a + a {
    border-left: 1px solid var(--line);
}

.mini-strip .icon {
    color: var(--green);
    width: 27px;
    height: 27px;
}

.mini-strip strong, .mini-strip small {
    display: block;
}

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

.section {
    padding-block: 32px;
}

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

.section-head h2 {
    font-size: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-head h2 .icon {
    color: var(--green);
    width: 25px;
    height: 25px;
}

.section-head p {
    color: var(--muted);
    font-size: 14px;
    margin-top: 5px;
}

.more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    white-space: nowrap;
    color: var(--green);
}

.grid-four, .grid-three, .grid-two {
    display: grid;
    gap: 24px;
}

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

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

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

.card {
    min-width: 0;
}

.cover {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 12px;
    background: var(--wash);
}

.cover img {
    aspect-ratio: 16 / 9;
    transition: transform .35s ease;
}

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

.cover .play-circle {
    position: absolute;
    left: 12px;
    bottom: 12px;
    width: 31px;
    height: 31px;
    background: #0f292b80;
}

.cover .play-circle .icon {
    width: 14px;
    height: 14px;
}

.duration {
    position: absolute;
    right: 9px;
    bottom: 9px;
    background: #102623dc;
    border-radius: 4px;
    padding: 1px 6px;
    color: white;
    font-size: 12px;
}

.card h3 {
    font-size: 16px;
    margin: 12px 0 7px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 45px;
}

.card p {
    color: var(--muted);
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 49px;
}

.meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 12px;
    margin-top: 10px;
}

.meta a, .meta span:first-child {
    color: var(--green);
}

.split-section {
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    gap: 36px;
    padding-block: 32px;
}

.timeline {
    border-top: 1px solid var(--line);
}

.timeline-row {
    display: grid;
    grid-template-columns: 65px 1fr 100px;
    gap: 20px;
    align-items: center;
    padding: 19px 0;
    border-bottom: 1px solid var(--line);
}

.timeline-row > time {
    color: var(--green);
    font-size: 14px;
    font-weight: 700;
}

.timeline-row h3 {
    font-size: 16px;
}

.timeline-row p {
    color: var(--muted);
    font-size: 12px;
    margin-top: 5px;
}

.timeline-row img {
    aspect-ratio: 16 / 10;
    border-radius: 8px;
}

.rank-panel {
    background: #f0f5ee;
    border-radius: var(--radius);
    padding: 26px;
}

.rank-row {
    display: grid;
    grid-template-columns: 30px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #dce5d9;
}

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

.rank-number {
    color: #688c5e;
    font: italic 700 26px/1 Georgia, serif;
}

.rank-row h3 {
    font-size: 14px;
}

.rank-row p, .rank-row small {
    font-size: 12px;
    color: var(--muted);
}

.rank-score {
    color: var(--green);
    font-size: 17px;
    font-weight: 700;
}

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

.category {
    display: grid;
    grid-template-columns: 42px 1fr;
    column-gap: 12px;
    padding: 20px 16px;
    border-radius: 12px;
    background: #f0f5f2;
    border: 1px solid #e7ede9;
}

.category:nth-child(4n + 2) {
    background: #edf4fa;
}

.category:nth-child(4n + 3) {
    background: #faf3e9;
}

.category:nth-child(4n + 4) {
    background: #f5eff6;
}

.category .icon {
    grid-row: span 2;
    align-self: center;
    width: 30px;
    height: 30px;
}

.category h3 {
    font-size: 16px;
}

.category p {
    font-size: 12px;
    color: var(--muted);
    margin-top: 5px;
}

.travel-band {
    border-radius: 22px;
    background: #142f2d;
    color: white;
    padding: 32px;
    margin-block: 32px;
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 35px;
    align-items: center;
}

.travel-band h2 {
    font-size: 34px;
    margin: 12px 0;
}

.travel-band p {
    color: #c3d1ca;
    font-size: 14px;
}

.travel-band .eyebrow {
    color: var(--accent);
}

.travel-band .card h3 {
    min-height: auto;
}

.travel-band .meta, .travel-band .meta span:first-child {
    color: #c3d1ca;
}

.city-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: var(--radius);
    background: var(--wash);
    overflow: hidden;
}

.city-feature > .cover {
    border-radius: 0;
}

.city-feature > .cover img {
    height: 100%;
    min-height: 300px;
}

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

.city-copy h3 {
    font-size: 25px;
    margin: 10px 0 14px;
}

.city-copy p {
    color: var(--muted);
    font-size: 14px;
}

.food-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    counter-reset: food;
}

.food-item {
    position: relative;
    border-bottom: 2px solid #e7e0d5;
    padding-bottom: 20px;
}

.food-item h3 {
    font-size: 17px;
    margin: 16px 0 8px;
}

.food-item h3::before {
    counter-increment: food;
    content: "0" counter(food) " / ";
    color: #a07844;
    font: italic 21px Georgia, serif;
}

.food-item p {
    font-size: 14px;
    color: var(--muted);
}

.poster > img {
    aspect-ratio: 16 / 10;
}

.poster-copy {
    position: absolute;
    bottom: 26px;
    left: 26px;
    right: 26px;
}

.poster h3 {
    font-size: 25px;
    margin: 10px 0;
}

.poster p {
    font-size: 14px;
    color: #e0e8e2;
}

.topic-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 12px;
    font-size: 14px;
    color: var(--green);
}

.editor-note {
    display: grid;
    grid-template-columns: 95px 1fr auto;
    gap: 22px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    align-items: center;
    margin-top: 10px;
}

.editor-monogram {
    display: grid;
    place-items: center;
    background: #e6efdc;
    color: var(--green);
    width: 78px;
    height: 78px;
    border-radius: 50%;
    font: italic 32px Georgia, serif;
}

.editor-note h3 {
    margin-bottom: 8px;
    font-size: 19px;
}

.editor-note p {
    color: var(--muted);
    font-size: 14px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags a {
    background: var(--wash);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    min-height: 44px;
}

.about {
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-top: 30px;
}

.about p {
    color: var(--muted);
    margin-bottom: 14px;
}

.subscribe {
    display: flex;
    align-items: center;
    gap: 28px;
    border-radius: var(--radius);
    background: #d4efb7;
    padding: 36px;
    margin: 28px 0 64px;
}

.subscribe > img {
    width: 86px;
    height: 86px;
    background: transparent;
}

.subscribe > div {
    flex: 1;
}

.subscribe h2 {
    font-size: 25px;
    margin-bottom: 8px;
}

.subscribe p {
    font-size: 14px;
    color: #3d5844;
}

.subscribe small {
    display: block;
    margin-top: 8px;
    color: #3d5844;
    font-size: 12px;
}

.footer {
    background: #112b29;
    color: #c5d0ca;
    padding: 42px 0 22px;
}

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

.footer .brand {
    color: white;
    margin-bottom: 12px;
}

.footer p {
    font-size: 14px;
    max-width: 450px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 24px;
    align-content: start;
    font-size: 14px;
}

.copyright {
    border-top: 1px solid #334944;
    padding-top: 20px;
    margin-top: 32px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 12px;
}

.back-top {
    position: fixed;
    bottom: 22px;
    right: 20px;
    padding: 12px;
    border: 1px solid var(--line);
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 18px #10292314;
    z-index: 8;
}

.breadcrumb {
    padding-top: 26px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--muted);
}

.category-intro {
    padding-block: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.category-intro h1 {
    font-size: 42px;
    margin: 12px 0;
}

.category-intro p:last-child {
    color: var(--muted);
}

.category-quote {
    padding: 25px 32px;
    border-left: 4px solid var(--green);
    background: var(--wash);
    font-size: 24px;
    font-weight: 700;
}

.feature-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 34px;
    align-items: center;
    background: var(--wash);
    padding: 24px;
    border-radius: var(--radius);
}

.feature-row h3 {
    font-size: 25px;
    margin: 12px 0;
}

.feature-row p {
    font-size: 14px;
    color: var(--muted);
}

.detail-heading {
    max-width: 900px;
    padding: 26px 0;
}

.detail-heading h1 {
    font-size: clamp(27px, 4vw, 39px);
    margin: 12px 0;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 2.4fr) minmax(0, 1fr);
    gap: 38px;
    padding-bottom: 55px;
}

.detail-main > section {
    margin-top: 35px;
}

.detail-main h2 {
    font-size: 24px;
    margin-bottom: 18px;
}

.detail-main p {
    margin-bottom: 16px;
}

.detail-aside {
    align-self: start;
    padding: 24px;
    background: var(--wash);
    border-radius: var(--radius);
}

.detail-aside > h2 {
    font-size: 20px;
    margin-bottom: 24px;
}

.detail-aside .card + .card {
    margin-top: 24px;
}

.player {
    background: #102422;
    color: #ffffff;
    border-radius: 14px;
    overflow: hidden;
}

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

.player-stage > img {
    aspect-ratio: 16 / 9;
    height: 100%;
}

.player-stage::after {
    content: "";
    position: absolute;
    inset: 50% 0 0;
    background: linear-gradient(transparent, #061e1acc);
    pointer-events: none;
}

.player-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 68px;
    height: 68px;
}

.player-label {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 4px 10px;
    border-radius: 4px;
    background: #102422d9;
    font-size: 12px;
}

.scene-caption {
    position: absolute;
    bottom: 16px;
    left: 20px;
    right: 20px;
    font-size: 14px;
    z-index: 2;
}

.player-controls {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 10px 14px;
    flex-wrap: wrap;
}

.player-controls button {
    min-width: 44px;
    min-height: 44px;
    border: 0;
    background: transparent;
    color: white;
}

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

.player-controls .seek {
    flex: 1;
    min-width: 70px;
}

.player-controls .volume {
    width: 55px;
}

.player-controls output {
    font-size: 12px;
    white-space: nowrap;
}

.player-note {
    padding: 0 18px 14px;
    color: #c6d9d0;
    font-size: 12px;
}

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

.player:fullscreen .player-stage {
    max-height: calc(100vh - 110px);
}

.player:fullscreen .player-stage img {
    object-fit: contain;
}

.scene-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.scene-grid img {
    aspect-ratio: 16 / 9;
    border-radius: 10px;
}

.scene-grid figcaption {
    margin-top: 9px;
    color: var(--muted);
    font-size: 14px;
}

.highlights {
    padding: 22px 22px 22px 42px;
    background: var(--wash);
    border-radius: 12px;
}

.highlights li + li {
    margin-top: 12px;
}

.prev-next {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid var(--line);
    padding-top: 24px;
    margin-top: 32px;
}

.prev-next a {
    flex: 1;
    font-size: 14px;
}

.prev-next small {
    display: block;
    color: var(--muted);
}

.notice {
    border-left: 3px solid var(--green);
    padding: 14px 20px;
    background: #f0f5ee;
    font-size: 14px;
}

.library-list {
    display: grid;
    gap: 12px;
}

.library-item {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 10px;
}

.library-item button {
    border: 0;
    background: var(--wash);
    border-radius: 6px;
    min-width: 60px;
}

.toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 22px;
    background: #102b27;
    color: white;
    border-radius: 9px;
    max-width: calc(100% - 36px);
    z-index: 50;
    box-shadow: 0 6px 30px #10292330;
}

.legal {
    max-width: 850px;
    padding: 35px 0 70px;
}

.legal h1 {
    font-size: 34px;
    margin-bottom: 30px;
}

.legal h2 {
    font-size: 22px;
    margin: 30px 0 12px;
}

[hidden] {
    display: none !important;
}
