:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --secondary: #ea580c;
    --accent: #ca8a04;
    --dark: #0f172a;
    --dark-soft: #1e293b;
    --text: #1f2937;
    --muted: #64748b;
    --line: #e5e7eb;
    --bg: #f8fafc;
    --card: #ffffff;
    --shadow-soft: 0 2px 15px rgba(15, 23, 42, 0.06);
    --shadow-medium: 0 10px 30px rgba(15, 23, 42, 0.12);
    --shadow-hard: 0 18px 55px rgba(15, 23, 42, 0.22);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img,
video {
    display: block;
    max-width: 100%;
}

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

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

.section-container {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-soft);
}

.nav-bar {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: var(--shadow-soft);
}

.logo-text {
    font-size: 24px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    color: #334155;
    font-weight: 600;
}

.nav-link {
    position: relative;
    padding: 24px 0;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--primary);
}

.nav-link.is-active::after,
.nav-link:hover::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 16px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.global-search {
    position: relative;
    width: 240px;
}

.global-search input,
.wide-search input,
.toolbar input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 11px 16px;
    background: #ffffff;
    color: var(--dark);
    outline: none;
    box-shadow: inset 0 1px 0 rgba(15, 23, 42, 0.02);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.global-search input:focus,
.wide-search input:focus,
.toolbar input:focus {
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.search-results,
.wide-search-results {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    background: #ffffff;
    border-radius: 18px;
    box-shadow: var(--shadow-hard);
    overflow: hidden;
    z-index: 80;
}

.search-results a,
.wide-search-results a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.2s ease;
}

.search-results a:hover,
.wide-search-results a:hover {
    background: #f8fafc;
}

.search-results img,
.wide-search-results img {
    width: 42px;
    height: 56px;
    border-radius: 8px;
    object-fit: cover;
    background: #e2e8f0;
}

.search-results strong,
.wide-search-results strong {
    display: block;
    color: var(--dark);
    font-size: 14px;
}

.search-results span,
.wide-search-results span {
    display: block;
    color: var(--muted);
    font-size: 12px;
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: #f1f5f9;
    color: var(--dark);
    font-size: 22px;
}

.mobile-menu {
    padding: 10px 16px 18px;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
}

.mobile-menu a {
    display: block;
    padding: 11px 12px;
    border-radius: 12px;
    color: #334155;
    font-weight: 700;
}

.mobile-menu a:hover {
    background: #f8fafc;
    color: var(--primary);
}

.hero-carousel {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    background: var(--dark);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.02);
    pointer-events: none;
    transition: opacity 0.7s ease, transform 1s ease;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0.32)), linear-gradient(0deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.05));
}

.hero-content {
    position: relative;
    min-height: 640px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: center;
    gap: 56px;
    padding: 64px 0 92px;
    color: #ffffff;
}

.hero-copy {
    max-width: 780px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.18);
    color: #bfdbfe;
    font-weight: 700;
    font-size: 14px;
}

.hero-copy h1,
.hero-copy h2 {
    margin: 0;
    font-size: clamp(38px, 6vw, 76px);
    line-height: 1.04;
    letter-spacing: -0.06em;
}

.hero-copy p {
    max-width: 680px;
    margin: 22px 0 0;
    color: #e2e8f0;
    font-size: 18px;
}

.hero-tags,
.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tags {
    margin-top: 22px;
}

.hero-tags span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #eff6ff;
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 700;
}

.hero-tags span {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.hero-actions-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.primary-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #ffffff;
    box-shadow: var(--shadow-medium);
}

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

.ghost-button {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
}

.hero-poster {
    display: block;
    border-radius: 28px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-hard);
    transform: rotate(2deg);
    transition: transform 0.3s ease;
}

.hero-poster:hover {
    transform: rotate(0deg) translateY(-4px);
}

.hero-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 22px;
}

.hero-control {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-size: 34px;
    line-height: 1;
    backdrop-filter: blur(8px);
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 30px;
    z-index: 6;
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
}

.hero-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.46);
}

.hero-dot.is-active {
    width: 34px;
    background: #ffffff;
}

.search-panel {
    position: relative;
    z-index: 10;
    margin-top: -48px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 24px;
    padding: 26px;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: var(--shadow-hard);
}

.search-panel h2,
.section-heading h2,
.rank-panel h2,
.card-panel h2,
.site-footer h2 {
    margin: 0;
    color: var(--dark);
    line-height: 1.2;
}

.search-panel p,
.section-heading p {
    margin: 6px 0 0;
    color: var(--muted);
}

.wide-search {
    position: relative;
}

.wide-search input {
    min-height: 54px;
    padding-left: 22px;
    font-size: 16px;
}

.section-block {
    padding: 72px 0;
}

.section-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.section-heading > a {
    margin-left: auto;
    color: var(--primary);
    font-weight: 800;
}

.section-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: var(--shadow-soft);
}

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

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

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

.movie-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: var(--card);
    box-shadow: var(--shadow-soft);
    transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
}

.poster-link {
    position: relative;
    display: block;
    overflow: hidden;
    background: #e2e8f0;
}

.poster-link img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.movie-card:hover .poster-link img {
    transform: scale(1.06);
}

.movie-card-large {
    display: grid;
    grid-template-columns: 38% minmax(0, 1fr);
}

.movie-card-large .poster-link img {
    height: 100%;
    aspect-ratio: auto;
}

.type-badge,
.rank-badge {
    position: absolute;
    top: 12px;
    z-index: 2;
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    border-radius: 999px;
    padding: 4px 10px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    box-shadow: var(--shadow-soft);
}

.type-badge {
    right: 12px;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(8px);
}

.rank-badge {
    left: 12px;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
}

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

.movie-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.movie-card h2 {
    margin: 8px 0 8px;
    color: var(--dark);
    font-size: 19px;
    line-height: 1.28;
}

.movie-card h2 a:hover {
    color: var(--primary);
}

.movie-card p {
    min-height: 46px;
    margin: 0 0 14px;
    color: #475569;
    font-size: 14px;
}

.hot-strip {
    padding: 72px 0;
    background: linear-gradient(180deg, #fff7ed, #ffffff);
}

.light-heading .section-icon {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
}

.strip-controls {
    margin-left: auto;
    display: flex;
    gap: 8px;
}

.strip-controls button {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: #ffffff;
    color: var(--dark);
    box-shadow: var(--shadow-soft);
    font-size: 28px;
}

.horizontal-list {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    padding: 4px 0 18px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
}

.horizontal-list::-webkit-scrollbar {
    display: none;
}

.horizontal-list .movie-card {
    width: 280px;
    flex: 0 0 280px;
    scroll-snap-align: start;
}

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

.category-tile {
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.category-tile:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.category-cover {
    position: relative;
    display: block;
    height: 190px;
    overflow: hidden;
}

.category-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.category-tile:hover .category-cover img {
    transform: scale(1.06);
}

.category-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(15, 23, 42, 0.86), rgba(15, 23, 42, 0.16));
}

.category-cover span {
    position: absolute;
    left: 18px;
    bottom: 16px;
    z-index: 2;
    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
}

.category-tile p {
    margin: 0;
    padding: 18px 18px 10px;
    color: #475569;
}

.category-samples {
    display: grid;
    gap: 7px;
    padding: 0 18px 18px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 30px;
    align-items: start;
}

.rank-panel,
.card-panel {
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.rank-panel {
    position: sticky;
    top: 96px;
    padding: 22px;
}

.rank-list,
.side-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.compact-card {
    display: grid;
    grid-template-columns: 28px 54px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 8px;
    border-radius: 16px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.compact-card:hover {
    background: #f8fafc;
    transform: translateX(3px);
}

.compact-card img {
    width: 54px;
    height: 72px;
    border-radius: 10px;
    object-fit: cover;
    background: #e2e8f0;
}

.compact-card strong {
    display: block;
    color: var(--dark);
    line-height: 1.3;
}

.compact-card em {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
}

.mini-rank {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 26px;
    height: 26px;
    border-radius: 9px;
    background: #eff6ff;
    color: var(--primary-dark);
    font-weight: 900;
    font-size: 12px;
}

.page-main {
    min-height: 60vh;
}

.page-hero {
    color: #ffffff;
    background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.45), transparent 36%), linear-gradient(135deg, #0f172a, #1e293b 58%, #9a3412);
}

.small-hero,
.rank-hero,
.category-hero {
    padding: 82px 0;
}

.page-hero h1 {
    max-width: 840px;
    margin: 0;
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.page-hero p {
    max-width: 760px;
    margin: 18px 0 0;
    color: #dbeafe;
    font-size: 18px;
}

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

.toolbar {
    display: grid;
    grid-template-columns: minmax(240px, 360px) 1fr;
    gap: 18px;
    align-items: center;
    margin-bottom: 28px;
    padding: 18px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.filter-buttons button {
    min-height: 38px;
    border: 0;
    border-radius: 999px;
    padding: 0 14px;
    background: #f1f5f9;
    color: #334155;
    font-weight: 800;
}

.filter-buttons button.is-active,
.filter-buttons button:hover {
    background: var(--primary);
    color: #ffffff;
}

.rank-grid,
.category-movie-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 26px 0 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.breadcrumb a {
    color: var(--primary);
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 30px;
    align-items: start;
    padding: 24px 0 0;
}

.detail-primary {
    display: grid;
    gap: 24px;
}

.player-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #000000;
    box-shadow: var(--shadow-hard);
}

.movie-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.video-cover {
    position: absolute;
    inset: 0;
    border: 0;
    padding: 0;
    background: #000000;
    color: #ffffff;
    overflow: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.video-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.72;
    filter: saturate(1.05);
}

.video-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), rgba(15, 23, 42, 0.82));
}

.video-cover.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.play-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: 82px;
    height: 82px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #ffffff;
    font-size: 32px;
    box-shadow: var(--shadow-hard);
    transform: translate(-50%, -50%);
}

.detail-content {
    padding: 28px;
}

.detail-content h1 {
    margin: 0;
    color: var(--dark);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.12;
    letter-spacing: -0.05em;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0;
}

.detail-meta span {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    border-radius: 999px;
    padding: 4px 12px;
    background: #f1f5f9;
    color: #334155;
    font-weight: 800;
    font-size: 13px;
}

.detail-tags {
    margin-bottom: 24px;
}

.detail-content h2 {
    margin-top: 28px;
    font-size: 24px;
}

.detail-content p {
    margin: 12px 0 0;
    color: #334155;
    font-size: 17px;
}

.detail-side {
    display: grid;
    gap: 20px;
}

.side-cover {
    padding: 18px;
}

.side-cover img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 18px;
    background: #e2e8f0;
}

.full-button {
    width: 100%;
    margin-top: 16px;
}

.side-list {
    padding: 20px;
}

.side-list .compact-card {
    grid-template-columns: 54px minmax(0, 1fr);
}

.side-list .compact-card .mini-rank {
    display: none;
}

.site-footer {
    margin-top: 64px;
    padding: 56px 0 0;
    background: var(--dark);
    color: #cbd5e1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
    gap: 32px;
}

.footer-logo {
    color: #ffffff;
    font-size: 22px;
}

.site-footer p {
    margin: 14px 0 0;
    color: #94a3b8;
}

.site-footer h2 {
    color: #ffffff;
    font-size: 18px;
}

.site-footer ul {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.site-footer li + li {
    margin-top: 8px;
}

.site-footer a:hover {
    color: #60a5fa;
}

.footer-bottom {
    margin-top: 44px;
    padding: 20px;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    color: #94a3b8;
    text-align: center;
    font-size: 14px;
}

[hidden] {
    display: none !important;
}

.card-hidden {
    display: none !important;
}

@media (max-width: 1100px) {
    .movie-grid,
    .rank-grid,
    .category-movie-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .featured-grid,
    .latest-grid,
    .related-grid,
    .full-category-grid,
    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-content,
    .detail-layout,
    .split-layout {
        grid-template-columns: 1fr;
    }

    .hero-poster {
        display: none;
    }

    .rank-panel {
        position: static;
    }
}

@media (max-width: 860px) {
    .desktop-nav,
    .global-search {
        display: none;
    }

    .mobile-menu-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .hero-carousel,
    .hero-content {
        min-height: 590px;
    }

    .hero-content {
        padding-top: 48px;
    }

    .hero-control {
        display: none;
    }

    .search-panel,
    .toolbar,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .filter-buttons {
        justify-content: flex-start;
    }

    .movie-card-large {
        display: block;
    }
}

@media (max-width: 640px) {
    .section-container {
        width: min(100% - 24px, 1280px);
    }

    .nav-bar {
        height: 64px;
    }

    .logo-text {
        font-size: 20px;
    }

    .hero-copy p {
        font-size: 16px;
    }

    .hero-actions-row {
        align-items: stretch;
        flex-direction: column;
    }

    .primary-button,
    .ghost-button {
        width: 100%;
    }

    .search-panel {
        margin-top: -34px;
        padding: 18px;
        border-radius: 22px;
    }

    .movie-grid,
    .featured-grid,
    .latest-grid,
    .related-grid,
    .rank-grid,
    .category-movie-grid,
    .full-category-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .horizontal-list .movie-card {
        width: 238px;
        flex-basis: 238px;
    }

    .section-heading {
        align-items: flex-start;
    }

    .section-heading > a,
    .strip-controls {
        display: none;
    }

    .detail-content,
    .side-list,
    .side-cover {
        padding: 18px;
    }

    .play-circle {
        width: 64px;
        height: 64px;
        font-size: 24px;
    }
}
