:root {
    --ink: #2d2032;
    --muted: #786c79;
    --rose: #ff557e;
    --rose-dark: #e83d69;
    --cream: #fff8f4;
    --paper: #ffffff;
    --line: #f1dfe5;
    --shadow: 0 18px 50px rgba(87, 35, 55, 0.10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--cream);
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
    line-height: 1.7;
}

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

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

button {
    font: inherit;
}

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

.site-header {
    position: sticky;
    z-index: 10;
    top: 0;
    border-bottom: 1px solid rgba(241, 223, 229, 0.9);
    background: rgba(255, 248, 244, 0.94);
    backdrop-filter: blur(14px);
}

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

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 9px;
    color: var(--rose-dark);
    font-size: 19px;
    font-weight: 800;
    letter-spacing: 0.4px;
}

.brand-mark {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: #fff;
    border-radius: 12px 12px 12px 3px;
    background: linear-gradient(135deg, #ff8fa8, #f24371);
    box-shadow: 0 8px 17px rgba(242, 67, 113, 0.24);
}

.site-nav {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.nav-item,
.header-action {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 9px 10px;
    color: #5e5260;
    border-radius: 9px;
    font-size: 13px;
    white-space: nowrap;
}

.nav-item:hover,
.header-action:hover {
    color: var(--rose-dark);
    background: #ffeaf0;
}

.header-action {
    flex: 0 0 auto;
    color: var(--rose-dark);
    background: #ffe8ef;
    font-weight: 700;
}

.hero {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    min-height: 480px;
    margin-top: 42px;
    overflow: hidden;
    border-radius: 28px;
    background: var(--paper);
    box-shadow: var(--shadow);
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 58px;
    background: linear-gradient(145deg, #fff0f4, #fffaf5);
}

.section-kicker,
.eyebrow {
    margin: 0 0 9px;
    color: var(--rose-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.hero h1,
.hero h1 a {
    margin: 0;
    color: var(--ink);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.14;
}

.hero-copy > p:not(.section-kicker) {
    max-width: 360px;
    margin: 19px 0 28px;
    color: var(--muted);
    font-size: 17px;
}

.primary-button {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    color: #fff;
    border-radius: 12px;
    background: var(--rose);
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(255, 85, 126, 0.25);
}

.primary-button:hover {
    background: var(--rose-dark);
    transform: translateY(-1px);
}

.hero-stage {
    position: relative;
    min-height: 480px;
    background: #dfb8c2;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: none;
}

.hero-slide.is-active {
    display: block;
}

.hero-slide img {
    height: 100%;
}

.slide-caption {
    position: absolute;
    right: 25px;
    bottom: 25px;
    left: 25px;
    padding: 23px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 17px;
    background: rgba(36, 22, 31, 0.48);
    backdrop-filter: blur(8px);
}

.slide-caption span {
    color: #ffc2d1;
    font-weight: 800;
}

.slide-caption h2 {
    margin: 5px 0 2px;
    font-size: 26px;
}

.slide-caption p {
    margin: 0;
    font-size: 14px;
}

.hero-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
}

.slide-button {
    width: 38px;
    height: 38px;
    color: #fff;
    border: 0;
    border-radius: 50%;
    background: rgba(45, 32, 50, 0.56);
    cursor: pointer;
}

.notice-strip {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 68px;
    margin-top: 26px;
    padding: 13px 22px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #fff;
}

.notice-icon {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    color: var(--rose-dark);
    border-radius: 50%;
    background: #ffe7ee;
}

.notice-strip p {
    flex: 1;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.notice-strip a,
.section-heading > a,
.text-link {
    color: var(--rose-dark);
    font-size: 14px;
    font-weight: 800;
}

.section-block {
    margin-top: 76px;
}

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

.section-heading h2,
.feature-copy h2,
.about-panel h2,
.app-copy h2,
.channel-hero h1,
.article-header h1 {
    margin: 0;
    font-size: clamp(27px, 3vw, 38px);
    line-height: 1.25;
}

.section-heading .section-kicker {
    position: absolute;
    margin-top: -25px;
}

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

.video-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 7px 20px rgba(87, 35, 55, 0.04);
}

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

.card-image {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f1d2da;
}

.card-image img {
    height: 100%;
}

.duration {
    position: absolute;
    right: 10px;
    bottom: 10px;
    padding: 2px 7px;
    color: #fff;
    border-radius: 6px;
    background: rgba(20, 16, 22, 0.72);
    font-size: 12px;
    font-weight: 700;
}

.card-body {
    display: flex;
    min-height: 164px;
    flex: 1;
    flex-direction: column;
    padding: 17px;
}

.card-body h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.45;
}

.card-body p:last-child {
    margin: 9px 0 0;
    color: var(--muted);
    font-size: 13px;
}

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

.channel-tile {
    display: grid;
    min-height: 138px;
    grid-template-columns: 48px 1fr;
    align-items: center;
    gap: 0 14px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: #fff;
    font-size: 17px;
    font-weight: 800;
}

.channel-tile:hover {
    border-color: #ffb8ca;
    background: #fff4f7;
}

.channel-icon {
    display: grid;
    width: 48px;
    height: 48px;
    grid-row: span 2;
    place-items: center;
    color: var(--rose-dark);
    border-radius: 14px;
    background: #ffe8ef;
    font-size: 23px;
}

.channel-tile small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.45;
}

.feature-band,
.app-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 360px;
    margin-top: 76px;
    overflow: hidden;
    border-radius: 24px;
    background: #34222e;
}

.feature-image img {
    height: 100%;
}

.feature-copy,
.app-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 52px;
    color: #fff;
}

.feature-copy h2,
.app-copy h2 {
    color: #fff;
}

.feature-copy > p:not(.section-kicker),
.app-copy > p:not(.section-kicker) {
    color: #e6d6de;
}

.text-link {
    margin-top: 8px;
    color: #ffb2c7;
}

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

.schedule-card {
    min-height: 176px;
    padding: 22px;
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 7px 18px rgba(87, 35, 55, 0.04);
}

.schedule-card span {
    color: var(--rose-dark);
    font-size: 13px;
    font-weight: 800;
}

.schedule-card strong {
    display: block;
    margin-top: 8px;
    font-size: 18px;
}

.schedule-card p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 76px;
    padding: 27px;
    border-radius: 20px;
    background: #ffe8ef;
}

.stats-row div {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid #f8bdcd;
}

.stats-row div:last-child {
    border-right: 0;
}

.stats-row strong {
    color: var(--rose-dark);
    font-size: 31px;
}

.stats-row span {
    color: var(--muted);
    font-size: 13px;
}

.watch-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.watch-list article {
    min-height: 194px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: #fff;
}

.watch-list span {
    color: #f2a5ba;
    font-size: 29px;
    font-weight: 900;
}

.watch-list h3 {
    margin: 9px 0 5px;
    font-size: 18px;
    line-height: 1.45;
}

.watch-list p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.topic-ribbon {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 76px;
}

.topic-ribbon p {
    margin: 0 5px 0 0;
    font-weight: 800;
}

.topic-ribbon a {
    padding: 7px 13px;
    border-radius: 999px;
    background: #fff;
    color: var(--muted);
    font-size: 13px;
}

.about-panel {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 45px;
    margin-top: 76px;
    padding: 48px;
    border-radius: 24px;
    background: #fff;
}

.about-panel > p {
    margin: 0;
    color: var(--muted);
}

.app-panel {
    margin-bottom: 76px;
    background: linear-gradient(130deg, #f54d76, #ec6f94);
}

.app-copy {
    min-height: 360px;
}

.app-copy .section-kicker {
    color: #ffe6ee;
}

.app-copy .primary-button {
    color: var(--rose-dark);
    background: #fff;
}

.qr-card {
    display: grid;
    width: 190px;
    height: 190px;
    align-self: center;
    justify-self: center;
    place-items: center;
    color: var(--rose-dark);
    border: 14px solid #fff;
    border-radius: 28px;
    background: repeating-linear-gradient(45deg, #fff 0 9px, #ffe6ed 9px 18px);
    box-shadow: 0 20px 45px rgba(104, 20, 46, 0.2);
}

.qr-card span {
    display: grid;
    width: 69px;
    height: 69px;
    place-items: center;
    color: #fff;
    border-radius: 21px;
    background: var(--rose);
    font-size: 34px;
    font-weight: 900;
}

.qr-card small {
    margin-top: -47px;
    font-size: 12px;
    font-weight: 900;
}

.site-footer {
    padding: 26px 0;
    color: #e8dbe2;
    background: #2d2029;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 12px;
}

.footer-inner p {
    margin: 0;
}

.page-main,
.article-main {
    min-height: 70vh;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 34px;
    color: var(--muted);
    font-size: 13px;
}

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

.channel-hero {
    margin-top: 28px;
    padding: 50px;
    border-radius: 23px;
    background: linear-gradient(130deg, #fff0f4, #fff 70%);
}

.channel-hero p:last-child {
    max-width: 680px;
    margin: 16px 0 0;
    color: var(--muted);
}

.compact-block {
    margin-top: 60px;
    margin-bottom: 64px;
}

.section-heading > span {
    color: var(--muted);
    font-size: 13px;
}

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

.channel-note {
    margin-bottom: 70px;
    padding: 37px 42px;
    border-left: 5px solid var(--rose);
    border-radius: 0 18px 18px 0;
    background: #fff;
}

.channel-note h2 {
    margin: 0 0 12px;
    font-size: 23px;
}

.channel-note p {
    margin: 0;
    color: var(--muted);
}

.article-layout {
    max-width: 820px;
    margin: 30px auto 78px;
}

.article-header {
    padding: 42px 0 30px;
    border-bottom: 1px solid var(--line);
}

.article-header h1 {
    font-size: clamp(31px, 4vw, 47px);
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 13px;
}

.article-lead {
    margin: 25px 0 0;
    color: #554957;
    font-size: 18px;
}

.reading-note {
    display: flex;
    gap: 17px;
    margin: 30px 0;
    padding: 22px;
    border-radius: 15px;
    background: #ffeaf0;
}

.reading-note > span {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--rose-dark);
    border-radius: 50%;
    background: #fff;
}

.reading-note h2 {
    margin: 0;
    font-size: 17px;
}

.reading-note p {
    margin: 3px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.article-content h2 {
    margin: 44px 0 13px;
    font-size: 25px;
}

.article-content p {
    margin: 0;
    color: #564b56;
    font-size: 16px;
}

.article-figure {
    margin: 30px 0;
}

.article-figure img {
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    background: #edced8;
}

.article-figure figcaption {
    margin-top: 8px;
    color: var(--muted);
    font-size: 13px;
}

.ending-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 54px;
    padding: 42px 30px;
    text-align: center;
    border-radius: 21px;
    background: #fff0f4;
}

.ending-card > span {
    color: var(--rose-dark);
    font-size: 26px;
}

.ending-card h2 {
    margin: 7px 0 0;
    font-size: 25px;
}

.ending-card p {
    margin: 6px 0 22px;
    color: var(--muted);
}

@media (max-width: 920px) {
    .site-nav {
        justify-content: flex-start;
        overflow-x: auto;
    }

    .nav-item {
        padding: 9px 7px;
    }

    .header-action {
        display: none;
    }

    .hero,
    .feature-band,
    .app-panel {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        padding: 42px;
    }

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

    .feature-image {
        min-height: 300px;
    }

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

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

    .about-panel {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 620px) {
    .shell {
        width: min(100% - 28px, 1160px);
    }

    .header-inner {
        min-height: 63px;
        gap: 13px;
    }

    .brand {
        font-size: 0;
    }

    .site-nav {
        gap: 1px;
    }

    .nav-item {
        flex-direction: column;
        gap: 0;
        padding: 6px 8px;
        font-size: 11px;
    }

    .hero {
        min-height: 0;
        margin-top: 22px;
        border-radius: 20px;
    }

    .hero-copy,
    .feature-copy,
    .app-copy,
    .channel-hero {
        padding: 30px 24px;
    }

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

    .slide-caption {
        right: 14px;
        bottom: 14px;
        left: 14px;
        padding: 15px;
    }

    .slide-caption h2 {
        font-size: 21px;
    }

    .notice-strip {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .notice-strip p {
        width: calc(100% - 45px);
        flex: auto;
    }

    .section-block,
    .feature-band,
    .stats-row,
    .topic-ribbon,
    .about-panel {
        margin-top: 54px;
    }

    .card-grid,
    .five-grid,
    .channel-grid,
    .watch-list,
    .schedule-grid,
    .stats-row {
        grid-template-columns: 1fr;
    }

    .stats-row div {
        padding: 13px 0;
        border-right: 0;
        border-bottom: 1px solid #f8bdcd;
    }

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

    .feature-image {
        min-height: 225px;
    }

    .app-panel {
        margin-bottom: 54px;
    }

    .app-copy {
        min-height: 0;
    }

    .qr-card {
        width: 154px;
        height: 154px;
        margin: 0 0 34px;
    }

    .about-panel {
        padding: 30px 24px;
    }

    .footer-inner {
        flex-direction: column;
    }

    .channel-hero {
        margin-top: 20px;
    }

    .channel-note {
        padding: 27px 23px;
    }

    .article-layout {
        margin-top: 18px;
    }

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