:root {
    --peach-50: #fff5f2;
    --peach-100: #ffe8e1;
    --peach-200: #ffd4c7;
    --peach-400: #ff9374;
    --coral-400: #ff7c64;
    --coral-500: #ff5533;
    --coral-600: #ed3010;
    --ink-900: #111827;
    --ink-700: #374151;
    --ink-600: #4b5563;
    --ink-500: #6b7280;
    --line: #f2d2c8;
    --surface: #ffffff;
    --sunrise: linear-gradient(135deg, #ffd4c7, #ffab9d, #ff9374, #ff7c64, #ff7a47);
    --soft-gradient: linear-gradient(180deg, #fff5f2 0%, #ffffff 52%, #fff5f2 100%);
    --shadow: 0 12px 30px rgba(255, 85, 51, 0.13);
    --shadow-strong: 0 25px 60px rgba(17, 24, 39, 0.24);
    color-scheme: light;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--ink-900);
    background: var(--soft-gradient);
    line-height: 1.65;
}

body.menu-open {
    overflow: hidden;
}

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

img {
    display: block;
    width: 100%;
    height: auto;
    background: linear-gradient(135deg, #ffe8e1, #ff9374);
}

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: var(--sunrise);
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(237, 48, 16, 0.18);
}

.header-inner {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

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

.logo-mark {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.26);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    font-size: 15px;
    font-weight: 600;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: #fff5f2;
    transform: translateY(-1px);
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    cursor: pointer;
}

.mobile-menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: #ffffff;
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    padding: 12px 24px 18px;
    background: rgba(255, 255, 255, 0.97);
    color: var(--ink-700);
    border-top: 1px solid var(--peach-200);
}

.mobile-link {
    display: block;
    padding: 10px 0;
    font-weight: 650;
}

.mobile-link.is-active,
.mobile-link:hover {
    color: var(--coral-500);
}

.hero-carousel {
    position: relative;
    min-height: 72vh;
    margin-top: 64px;
    overflow: hidden;
    background: #111827;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 28%, rgba(255, 147, 116, 0.5), transparent 28%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.56) 45%, rgba(0, 0, 0, 0.18) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.5));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    color: #ffffff;
    padding: 60px 0 130px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
    color: #fff5f2;
    font-weight: 700;
}

.hero-content h1,
.hero-content h2,
.page-hero h1 {
    margin: 0;
    font-size: clamp(36px, 6vw, 72px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.hero-content h2 {
    margin-top: 14px;
    font-size: clamp(28px, 4vw, 48px);
}

.hero-content p {
    max-width: 680px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
}

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

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

.hero-tags span,
.movie-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 232, 225, 0.92);
    color: var(--coral-600);
    font-size: 13px;
    font-weight: 700;
}

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

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

.primary-button,
.search-form button {
    background: var(--sunrise);
    color: #ffffff;
    box-shadow: 0 14px 32px rgba(255, 85, 51, 0.28);
}

.secondary-button {
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink-700);
}

.primary-button:hover,
.secondary-button:hover,
.search-form button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 18px 40px rgba(255, 85, 51, 0.24);
}

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

.hero-control:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-50%) scale(1.04);
}

.hero-prev {
    left: 24px;
    transform: translateY(-50%);
}

.hero-next {
    right: 24px;
    transform: translateY(-50%);
}

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

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

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

.hero-thumb-row {
    position: absolute;
    left: 50%;
    bottom: 56px;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    transform: translateX(-50%);
}

.hero-thumb {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 10px;
    align-items: center;
    padding: 8px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    backdrop-filter: blur(12px);
    font-size: 13px;
    font-weight: 800;
    overflow: hidden;
}

.hero-thumb img {
    height: 48px;
    object-fit: cover;
    border-radius: 10px;
}

.search-band {
    background: #ffffff;
    border-bottom: 1px solid var(--peach-200);
}

.search-band-inner {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) minmax(280px, 520px);
    gap: 28px;
    align-items: center;
    padding: 28px 0;
}

.search-band h2,
.section-heading h2,
.content-card h2,
.site-footer h2 {
    margin: 0;
    font-size: 26px;
    line-height: 1.2;
}

.search-band p,
.section-heading p {
    margin: 6px 0 0;
    color: var(--ink-600);
}

.search-form {
    display: flex;
    gap: 10px;
    padding: 8px;
    border-radius: 999px;
    background: var(--peach-50);
    border: 1px solid var(--peach-200);
}

.search-form input,
.filter-bar input,
.filter-bar select {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--peach-200);
    border-radius: 14px;
    padding: 0 14px;
    color: var(--ink-700);
    background: #ffffff;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-form input {
    border: 0;
    background: transparent;
}

.search-form input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
    border-color: var(--coral-500);
    box-shadow: 0 0 0 3px rgba(255, 85, 51, 0.14);
}

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

.section-soft {
    background: linear-gradient(135deg, rgba(255, 232, 225, 0.65), rgba(255, 243, 241, 0.82));
    border-top: 1px solid rgba(255, 212, 199, 0.65);
    border-bottom: 1px solid rgba(255, 212, 199, 0.65);
}

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

.section-heading span {
    display: inline-block;
    margin-bottom: 6px;
    color: var(--coral-500);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-heading a {
    color: var(--coral-500);
    font-weight: 800;
}

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

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

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

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(237, 48, 16, 0.18);
}

.movie-card-link {
    display: block;
    height: 100%;
}

.movie-poster {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, #ffe8e1, #ff9374);
}

.movie-card-compact .movie-poster {
    aspect-ratio: 16 / 10;
}

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

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

.movie-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.42));
}

.movie-year,
.movie-type,
.rank-badge {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    padding: 4px 9px;
    font-size: 12px;
    font-weight: 800;
}

.movie-year {
    right: 10px;
    bottom: 10px;
    background: rgba(0, 0, 0, 0.68);
    color: #ffffff;
}

.movie-type {
    top: 10px;
    left: 10px;
    background: var(--coral-500);
    color: #ffffff;
}

.rank-badge {
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--coral-600);
}

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

.movie-card-meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--coral-500);
    font-size: 12px;
    font-weight: 800;
}

.movie-card h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
    transition: color 0.2s ease;
}

.movie-card:hover h3 {
    color: var(--coral-500);
}

.movie-card p {
    display: -webkit-box;
    min-height: 48px;
    margin: 8px 0 14px;
    overflow: hidden;
    color: var(--ink-600);
    font-size: 14px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

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

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

.category-tile {
    display: block;
    padding: 18px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 48px rgba(237, 48, 16, 0.16);
}

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

.category-covers img {
    height: 90px;
    object-fit: cover;
    border-radius: 14px;
}

.category-tile h3 {
    margin: 0 0 8px;
    font-size: 21px;
}

.category-tile p {
    min-height: 48px;
    margin: 0 0 14px;
    color: var(--ink-600);
}

.category-tile span {
    color: var(--coral-500);
    font-weight: 800;
}

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

.page-main {
    padding-top: 64px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffe8e1 0%, #fff5f2 42%, #ffffff 100%);
}

.page-hero::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(255, 124, 100, 0.28);
    filter: blur(2px);
}

.slim-hero .container {
    position: relative;
    z-index: 1;
    padding: 54px 0 60px;
}

.page-hero p {
    max-width: 760px;
    margin: 16px 0 0;
    color: var(--ink-600);
    font-size: 18px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 18px;
    color: var(--ink-600);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--coral-500);
    font-weight: 700;
}

.breadcrumb em {
    color: #c9a498;
    font-style: normal;
}

.filter-bar {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 170px 170px 170px;
    gap: 12px;
    margin-bottom: 26px;
    padding: 16px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.filter-bar-wide {
    grid-template-columns: minmax(260px, 1fr) 160px 160px 160px;
}

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

.rank-row a {
    display: grid;
    grid-template-columns: 54px 86px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 12px 16px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-row a:hover {
    transform: translateX(4px);
    box-shadow: 0 18px 36px rgba(237, 48, 16, 0.15);
}

.rank-number {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--sunrise);
    color: #ffffff;
    font-weight: 900;
}

.rank-row img {
    height: 58px;
    object-fit: cover;
    border-radius: 12px;
}

.rank-info {
    min-width: 0;
}

.rank-info strong,
.rank-info em {
    display: block;
}

.rank-info strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 17px;
}

.rank-info em {
    overflow: hidden;
    color: var(--ink-600);
    font-style: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-meta {
    color: var(--coral-500);
    font-weight: 800;
    white-space: nowrap;
}

.detail-main {
    background: linear-gradient(180deg, #fff5f2 0%, #ffffff 42%);
}

.detail-hero {
    padding: 34px 0 0;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
    gap: 28px;
    align-items: stretch;
}

.player-panel,
.detail-side,
.content-card {
    border-radius: 26px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.player-panel {
    padding: 12px;
}

.video-shell {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 20px;
    background: #000000;
    box-shadow: var(--shadow-strong);
}

.movie-video,
.play-cover,
.play-cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.movie-video {
    object-fit: contain;
    background: #000000;
}

.play-cover {
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    padding: 0;
    cursor: pointer;
    background: transparent;
}

.play-cover img {
    object-fit: cover;
    opacity: 0.58;
    filter: saturate(1.05);
}

.play-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 85, 51, 0.22), rgba(0, 0, 0, 0.64));
}

.play-circle {
    position: relative;
    z-index: 3;
    width: 82px;
    height: 82px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding-left: 6px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--coral-500);
    font-size: 34px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.26);
    transition: transform 0.2s ease;
}

.play-cover:hover .play-circle {
    transform: scale(1.08);
}

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

.detail-side {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 18px;
    padding: 18px;
}

.detail-poster {
    height: 198px;
    object-fit: cover;
    border-radius: 18px;
}

.detail-info h1 {
    margin: 10px 0 10px;
    font-size: 30px;
    line-height: 1.18;
}

.detail-info p {
    margin: 0 0 14px;
    color: var(--ink-600);
}

.detail-badge {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--coral-500);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
}

dl {
    display: grid;
    gap: 8px;
    margin: 0 0 14px;
}

dl div {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 10px;
}

dt {
    color: var(--ink-500);
}

dd {
    margin: 0;
    color: var(--ink-700);
    font-weight: 700;
}

dd a {
    color: var(--coral-500);
}

.detail-tags span {
    background: var(--peach-100);
}

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 0.9fr);
    gap: 26px;
    align-items: start;
}

.content-card {
    padding: 28px;
}

.content-card h2 + p {
    margin-top: 12px;
}

.content-card p {
    margin: 0 0 22px;
    color: var(--ink-700);
    font-size: 16px;
}

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

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

.mini-card:hover {
    transform: translateX(4px);
    background: var(--peach-100);
}

.mini-card img {
    height: 58px;
    object-fit: cover;
    border-radius: 12px;
}

.mini-card span {
    overflow: hidden;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.site-footer {
    background: linear-gradient(180deg, #fff5f2, #ffffff);
    border-top: 1px solid var(--peach-200);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 28px;
    padding: 46px 0;
}

.footer-logo {
    color: var(--coral-500);
    font-size: 20px;
}

.footer-logo .logo-mark {
    background: var(--sunrise);
    color: #ffffff;
}

.site-footer p {
    margin: 12px 0 0;
    color: var(--ink-600);
}

.site-footer h2 {
    margin-bottom: 14px;
    font-size: 17px;
}

.footer-links {
    display: grid;
    gap: 8px;
}

.footer-links a {
    color: var(--ink-600);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--coral-500);
}

.footer-bottom {
    padding: 18px 0 24px;
    border-top: 1px solid var(--peach-200);
    color: var(--ink-500);
    text-align: center;
    font-size: 14px;
}

[data-filter-card].is-hidden {
    display: none;
}

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

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

    .hero-thumb-row {
        display: none;
    }

    .detail-layout,
    .two-column {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-button {
        display: inline-block;
    }

    body.menu-open .mobile-nav {
        display: block;
    }

    .hero-carousel {
        min-height: 78vh;
    }

    .hero-content {
        padding: 44px 0 90px;
    }

    .hero-control {
        width: 42px;
        height: 42px;
        font-size: 28px;
    }

    .hero-prev {
        left: 12px;
    }

    .hero-next {
        right: 12px;
    }

    .search-band-inner,
    .footer-grid,
    .detail-side {
        grid-template-columns: 1fr;
    }

    .search-form,
    .section-heading {
        align-items: stretch;
        flex-direction: column;
    }

    .movie-grid,
    .movie-grid-small,
    .category-grid,
    .category-grid-large,
    .ranking-panel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .filter-bar,
    .filter-bar-wide {
        grid-template-columns: 1fr;
    }

    .rank-row a {
        grid-template-columns: 42px 72px minmax(0, 1fr);
    }

    .rank-meta {
        display: none;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .hero-content h1,
    .page-hero h1 {
        font-size: 34px;
    }

    .hero-content h2 {
        font-size: 28px;
    }

    .hero-content p,
    .page-hero p {
        font-size: 16px;
    }

    .movie-grid,
    .movie-grid-small,
    .category-grid,
    .category-grid-large,
    .ranking-panel {
        grid-template-columns: 1fr;
    }

    .category-covers img {
        height: 76px;
    }

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

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