/* 蘑菇视频 MOGU VIDEO - 全局样式 */
:root {
    --bg: #FFFFFF;
    --bg-soft: #FFF7FA;
    --bg-pink: #FFF0F5;
    --bg-gray: #F7F7F8;
    --title: #222222;
    --text: #444444;
    --text-sec: #777777;
    --text-aux: #999999;
    --brand: #FF1765;
    --brand-light: #FF3D7D;
    --brand-rose: #E90052;
    --brand-deep: #C90046;
    --pink-soft: #FFD8E6;
    --pink-pale: #FFF0F5;
    --border: rgba(255, 23, 101, 0.12);
    --border-gray: rgba(0, 0, 0, 0.08);
    --shadow: 0 14px 40px rgba(30, 20, 25, 0.08);
    --shadow-pink: 0 16px 42px rgba(255, 23, 101, 0.14);
    --footer-bg: #171717;
    --footer-text: #F4F4F4;
    --max-w: 1280px;
    --nav-h: 72px;
    --radius: 16px;
    --radius-sm: 12px;
    --radius-lg: 24px;
    --radius-pill: 999px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--brand-rose); }
a:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { color: var(--title); line-height: 1.35; font-weight: 700; }
h1 { font-size: clamp(1.75rem, 4vw, 2.4rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.4rem, 3vw, 1.85rem); margin-bottom: 0.85rem; }
h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
p { margin-bottom: 1rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-gray);
    height: var(--nav-h);
}
.header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--title);
}
.menu-icon {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    position: relative;
}
.menu-icon::before, .menu-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: currentColor;
}
.menu-icon::before { top: -7px; }
.menu-icon::after { top: 7px; }
.brand-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.logo-img { height: 36px; width: auto; }
.logo-text {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--brand);
    letter-spacing: 0.02em;
}
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 12px;
}
.nav-link {
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
}
.nav-link:hover { background: var(--bg-pink); color: var(--brand); }
.nav-link.is-active {
    background: var(--bg-pink);
    color: var(--brand);
    font-weight: 600;
    box-shadow: inset 0 -2px 0 var(--brand);
}
.header-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.search-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    color: var(--text);
    font-size: 0.9rem;
    min-height: 44px;
}
.search-btn:hover { background: var(--bg-gray); color: var(--brand); }
.header-btn {
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}
.header-btn:hover { background: var(--bg-pink); color: var(--brand); }
.header-btn.is-active { background: var(--bg-pink); color: var(--brand); }
.app-btn {
    background: linear-gradient(135deg, #FF4A86 0%, #FF1765 55%, #E90052 100%);
    color: #fff !important;
    font-weight: 600;
    box-shadow: var(--shadow-pink);
}
.app-btn:hover { filter: brightness(1.05); color: #fff !important; }

/* Main */
.main-content {
    min-height: 60vh;
    padding-bottom: 40px;
}
.page-wrap {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 28px 20px 60px;
}
.section {
    margin-bottom: 48px;
}
.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.section-title {
    font-size: clamp(1.3rem, 2.5vw, 1.65rem);
}
.section-more {
    color: var(--brand);
    font-size: 0.95rem;
    font-weight: 500;
}
.section-more:hover { text-decoration: underline; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    font-size: 0.95rem;
    font-weight: 600;
    min-height: 48px;
    transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
    background: linear-gradient(135deg, #FF4A86 0%, #FF1765 55%, #E90052 100%);
    color: #fff !important;
    box-shadow: var(--shadow-pink);
}
.btn-primary:hover { filter: brightness(1.06); color: #fff !important; }
.btn-secondary {
    background: var(--bg-pink);
    color: var(--brand) !important;
    border: 1px solid var(--border);
}
.btn-secondary:hover { background: var(--pink-soft); }
.btn-group { display: flex; flex-wrap: wrap; gap: 12px; margin: 1.2rem 0; }

/* Cards */
.card {
    background: var(--bg);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    transition: box-shadow 0.2s, border-color 0.2s;
}
.card:hover { box-shadow: var(--shadow-pink); border-color: var(--border); }
.card-soft {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
}
.tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 500;
    background: var(--bg-pink);
    color: var(--brand);
}
.tag-gray {
    background: var(--bg-gray);
    color: var(--text-sec);
}

/* Hero / Index */
.hero {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 28px;
    align-items: stretch;
    margin-bottom: 40px;
}
.hero-visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(145deg, #FFF0F5 0%, #FFE4EE 50%, #FFD8E6 100%);
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/10;
}
.hero-placeholder {
    text-align: center;
    padding: 40px;
    color: var(--brand);
}
.hero-placeholder .big {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}
.hero-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}
.hero-brand {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brand);
    letter-spacing: 0.08em;
}
.hero-title {
    font-size: clamp(1.5rem, 3vw, 1.9rem);
    margin-bottom: 0.5rem;
}
.hero-desc {
    color: var(--text-sec);
    font-size: 0.98rem;
    line-height: 1.75;
}
.hero-recs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}
.hero-rec {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: var(--bg-soft);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    color: var(--text);
}
.hero-rec:hover { border-color: var(--brand); color: var(--brand); }
.hero-rec-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Channel quick bar */
.channel-bar {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 12px 0 20px;
    margin-bottom: 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}
.channel-bar::-webkit-scrollbar { height: 4px; }
.channel-bar a {
    flex-shrink: 0;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    background: #fff;
    border: 1px solid var(--border-gray);
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}
.channel-bar a:hover, .channel-bar a.is-active {
    background: var(--bg-pink);
    border-color: var(--border);
    color: var(--brand);
}

/* Inspiration pills */
.inspire-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 14px;
}
.inspire-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 18px;
    background: var(--bg-soft);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    color: var(--text);
}
.inspire-item:hover { border-color: var(--brand); }
.inspire-item strong { color: var(--title); font-size: 1rem; }
.inspire-item span { font-size: 0.88rem; color: var(--text-sec); line-height: 1.5; }

/* Featured main + list */
.featured-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
}
.featured-main {
    background: var(--bg-soft);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border);
}
.featured-main .tag { margin-bottom: 12px; }
.featured-main h3 { font-size: 1.35rem; margin-bottom: 12px; }
.featured-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.featured-item {
    padding: 16px 18px;
    background: #fff;
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-sm);
    color: var(--text);
}
.featured-item:hover { border-color: var(--border); box-shadow: var(--shadow); }
.featured-item .tag { margin-bottom: 6px; }
.featured-item h4 { font-size: 1.05rem; margin-bottom: 4px; color: var(--title); }
.featured-item p { font-size: 0.9rem; color: var(--text-sec); margin: 0; }

/* Track / horizontal */
.track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
}
.track-card {
    flex: 0 0 220px;
    background: #fff;
    border: 1px solid var(--border-gray);
    border-radius: var(--radius);
    padding: 18px;
    color: var(--text);
}
.track-card:hover { border-color: var(--border); box-shadow: var(--shadow); }
.track-card h4 { font-size: 1.05rem; margin-bottom: 8px; }
.track-card p { font-size: 0.88rem; color: var(--text-sec); margin: 0; }

/* Movie wide + grid */
.movie-wide {
    background: linear-gradient(135deg, var(--bg-pink) 0%, var(--bg-soft) 100%);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    margin-bottom: 20px;
    border: 1px solid var(--border);
}
.movie-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.movie-type {
    padding: 18px;
    background: #fff;
    border: 1px solid var(--border-gray);
    border-radius: var(--radius);
    text-align: center;
    color: var(--text);
}
.movie-type:hover { border-color: var(--brand); color: var(--brand); }
.movie-type strong { display: block; margin-bottom: 6px; color: var(--title); }

/* Shorts numbered */
.shorts-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}
.short-item {
    display: flex;
    gap: 16px;
    padding: 18px;
    background: var(--bg-soft);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    color: var(--text);
}
.short-item:hover { border-color: var(--brand); }
.short-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--brand);
    line-height: 1;
    min-width: 36px;
}

/* Variety */
.variety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}
.variety-card {
    padding: 22px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.variety-card h4 { color: var(--title); }
.variety-card p { font-size: 0.92rem; color: var(--text-sec); margin: 0; }

/* People */
.people-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}
.people-card {
    padding: 24px 18px;
    text-align: center;
    background: var(--bg-soft);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.people-card .role { font-size: 1.1rem; font-weight: 700; color: var(--title); margin-bottom: 8px; }
.people-card p { font-size: 0.88rem; color: var(--text-sec); margin: 0; }

/* Topics */
.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
}
.topic-card {
    padding: 24px;
    background: #fff;
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.topic-card h3 { margin-bottom: 10px; }
.topic-card p { color: var(--text-sec); font-size: 0.95rem; }

/* Watchlist */
.watchlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}
.wl-card {
    padding: 22px;
    background: var(--bg-pink);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    color: var(--text);
}
.wl-card:hover { box-shadow: var(--shadow-pink); }
.wl-card h4 { color: var(--title); margin-bottom: 8px; }
.wl-card p { font-size: 0.9rem; color: var(--text-sec); margin: 0; }

/* Ranking */
.rank-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.rank-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--border-gray);
    border-radius: var(--radius);
}
.rank-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--brand);
    line-height: 1;
    min-width: 42px;
}
.rank-item h4 { margin-bottom: 6px; }
.rank-item p { font-size: 0.92rem; color: var(--text-sec); margin: 0; }

/* Calendar track */
.cal-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 10px;
}
.cal-item {
    flex: 0 0 200px;
    padding: 18px;
    background: var(--bg-soft);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.cal-status {
    display: inline-block;
    font-size: 0.78rem;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    background: var(--pink-soft);
    color: var(--brand-deep);
    margin-bottom: 8px;
}
.cal-item h4 { font-size: 1rem; margin-bottom: 6px; }
.cal-item p { font-size: 0.88rem; color: var(--text-sec); margin: 0; }

/* Studio magazine */
.studio-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.studio-block {
    padding: 24px;
    background: #fff;
    border: 1px solid var(--border-gray);
    border-radius: var(--radius);
}
.studio-block:nth-child(odd) { background: var(--bg-soft); border-color: var(--border); }
.studio-block h3 { color: var(--brand); font-size: 1.05rem; margin-bottom: 10px; }

/* Reviews */
.review-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.review-card {
    padding: 24px;
    background: #fff;
    border: 1px solid var(--border-gray);
    border-radius: var(--radius);
    border-left: 4px solid var(--brand);
}
.review-meta {
    font-size: 0.85rem;
    color: var(--brand);
    font-weight: 600;
    margin-bottom: 8px;
}
.review-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.review-card p { color: var(--text-sec); font-size: 0.95rem; margin: 0; }

/* Discover */
.discover-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}
.discover-card {
    padding: 22px;
    background: var(--bg-soft);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.discover-card h4 { margin-bottom: 8px; }
.discover-card p { font-size: 0.9rem; color: var(--text-sec); margin: 0; }

/* APP page */
.app-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    margin-bottom: 40px;
}
.app-visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(160deg, #FFF0F5, #FFE8F0);
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.app-visual img { width: 100%; object-fit: contain; max-height: 400px; }
.app-content h1 { margin-bottom: 12px; }
.app-content p { color: var(--text-sec); line-height: 1.8; }

/* Page article */
.page-article {
    max-width: 820px;
}
.page-article h2 {
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid var(--border);
}
.page-article h3 { margin-top: 1.4rem; color: var(--brand-deep); }
.page-lead {
    font-size: 1.08rem;
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 1.5rem;
}
.page-article p { line-height: 1.85; color: var(--text); }

/* FAQ */
.faq-list details {
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    background: #fff;
}
.faq-list summary {
    padding: 16px 20px;
    font-weight: 600;
    color: var(--title);
    cursor: pointer;
    list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::before {
    content: '+';
    display: inline-block;
    width: 1.2em;
    color: var(--brand);
    font-weight: 700;
}
.faq-list details[open] summary::before { content: '−'; }
.faq-list details p {
    padding: 0 20px 16px;
    color: var(--text-sec);
    font-size: 0.95rem;
    line-height: 1.75;
}

/* Contact / help blocks */
.info-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}
.info-block {
    padding: 22px;
    background: var(--bg-soft);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.info-block h3 { color: var(--brand); font-size: 1.05rem; }

/* Footer */
.site-footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 48px 20px 32px;
    margin-top: 40px;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-brand { margin-bottom: 32px; }
.footer-logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
}
.footer-brand-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 10px 0 8px;
}
.footer-brand-name .en {
    font-weight: 400;
    opacity: 0.7;
    font-size: 0.9rem;
    margin-left: 6px;
}
.footer-desc {
    color: rgba(244, 244, 244, 0.7);
    font-size: 0.92rem;
    max-width: 520px;
    line-height: 1.7;
}
.footer-cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 36px;
}
.footer-col h3 {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 14px;
    font-weight: 600;
}
.footer-col a {
    color: rgba(244, 244, 244, 0.75);
    font-size: 0.9rem;
    display: block;
    padding: 5px 0;
}
.footer-col a:hover { color: var(--brand-light); }
.footer-note {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
}
.footer-note p {
    color: rgba(244, 244, 244, 0.65);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 10px;
}
.copyright {
    color: rgba(244, 244, 244, 0.5) !important;
    font-size: 0.85rem !important;
}

/* Channel Panel */
.panel-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 10, 15, 0.45);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s, visibility 0.25s;
}
.panel-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.channel-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(460px, 88vw);
    height: 100%;
    background: #fff;
    z-index: 2010;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s ease, visibility 0.3s;
    display: flex;
    flex-direction: column;
    box-shadow: -12px 0 40px rgba(0,0,0,0.12);
}
.channel-panel.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
}
.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border-gray);
    flex-shrink: 0;
}
.panel-logo-text { font-size: 1.2rem; font-weight: 800; color: var(--brand); }
.panel-close {
    width: 44px;
    height: 44px;
    font-size: 1.6rem;
    color: var(--text-sec);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.panel-close:hover { background: var(--bg-gray); color: var(--title); }
.panel-body {
    overflow-y: auto;
    padding: 16px 20px 40px;
    flex: 1;
}
.panel-group { margin-bottom: 28px; }
.panel-group h3 {
    font-size: 0.85rem;
    color: var(--text-aux);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
    font-weight: 600;
}
.panel-link {
    display: block;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    margin-bottom: 4px;
    color: var(--text);
}
.panel-link:hover { background: var(--bg-pink); }
.panel-title {
    display: block;
    font-weight: 600;
    color: var(--title);
    margin-bottom: 2px;
}
.panel-desc {
    display: block;
    font-size: 0.85rem;
    color: var(--text-sec);
    line-height: 1.45;
}
body.panel-open { overflow: hidden; }

/* Search Panel */
.search-panel {
    position: fixed;
    inset: 0;
    z-index: 2100;
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s, visibility 0.25s;
    overflow-y: auto;
}
.search-panel.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.search-inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 24px 20px 60px;
}
.search-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.search-close {
    width: 44px;
    height: 44px;
    font-size: 1.6rem;
    color: var(--text-sec);
    border-radius: 10px;
}
.search-close:hover { background: var(--bg-gray); }
.search-box input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius-pill);
    font-size: 1rem;
    outline: none;
    background: var(--bg-soft);
}
.search-box input:focus { border-color: var(--brand); }
.search-section { margin-top: 28px; }
.search-section h3 {
    font-size: 0.9rem;
    color: var(--text-aux);
    margin-bottom: 12px;
}
.search-tags, .search-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.search-tags a, .search-links a {
    padding: 8px 16px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    color: var(--text);
    font-size: 0.9rem;
}
.search-tags a:hover, .search-links a:hover {
    background: var(--pink-soft);
    color: var(--brand);
}
body.search-open { overflow: hidden; }

/* Mobile bottom nav */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid var(--border-gray);
    padding: 6px 0 calc(6px + env(safe-area-inset-bottom));
    justify-content: space-around;
    height: auto;
}
.bottom-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 6px 8px;
    min-width: 56px;
    min-height: 48px;
    color: var(--text-sec);
    font-size: 0.72rem;
    font-weight: 500;
}
.bottom-item .bottom-icon { font-size: 1.15rem; line-height: 1; }
.bottom-item.is-active { color: var(--brand); font-weight: 600; }

/* Responsive */
@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; }
    .hero-visual { min-height: 280px; }
    .featured-layout { grid-template-columns: 1fr; }
    .movie-grid { grid-template-columns: repeat(2, 1fr); }
    .studio-blocks { grid-template-columns: 1fr; }
    .app-hero { grid-template-columns: 1fr; }
    .footer-cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    :root { --nav-h: 60px; }
    .menu-toggle { display: flex; }
    .desktop-nav { display: none; }
    .header-right .btn-text { display: none; }
    .header-btn:not(.app-btn) { display: none; }
    .search-btn { padding: 8px 10px; }
    .page-wrap { padding: 20px 15px 80px; }
    .hero-side { order: -1; }
    .movie-grid { grid-template-columns: 1fr 1fr; }
    .footer-cols { grid-template-columns: 1fr 1fr; gap: 20px; }
    .mobile-bottom-nav { display: flex; }
    .site-footer { padding-bottom: 80px; }
    .channel-bar { margin-left: -15px; margin-right: -15px; padding-left: 15px; padding-right: 15px; }
}
@media (max-width: 480px) {
    .movie-grid { grid-template-columns: 1fr; }
    .btn-group { flex-direction: column; }
    .btn { width: 100%; }
    .footer-cols { grid-template-columns: 1fr; }
}

/* Utility */
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mb-2 { margin-bottom: 1rem; }
.muted { color: var(--text-sec); }
.small { font-size: 0.9rem; }
.placeholder-box {
    background: linear-gradient(145deg, #FFF0F5, #FFE4EE);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    color: var(--brand);
    font-weight: 600;
}
.reduce-motion * { transition: none !important; animation: none !important; }
