* {
    box-sizing: border-box;
}

:root {
    --bg: #f6f8fc;
    --ink: #0f172a;
    --muted: #64748b;
    --soft: #e2e8f0;
    --panel: #ffffff;
    --panel-strong: #f8fafc;
    --dark: #020617;
    --dark-2: #0f172a;
    --blue: #2563eb;
    --blue-2: #38bdf8;
    --purple: #7c3aed;
    --pink: #db2777;
    --orange: #f97316;
    --radius: 20px;
    --shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
    --shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.12), transparent 32rem),
        radial-gradient(circle at top right, rgba(124, 58, 237, 0.12), transparent 28rem),
        var(--bg);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.6;
}

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

img {
    display: block;
    max-width: 100%;
    background:
        linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(124, 58, 237, 0.18)),
        #e2e8f0;
}

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(2, 6, 23, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

.header-inner {
    width: min(1180px, calc(100% - 32px));
    height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: max-content;
    color: #fff;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.brand-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, var(--blue-2), var(--purple));
    box-shadow: 0 10px 26px rgba(37, 99, 235, 0.35);
}

.brand-text {
    font-size: 1.45rem;
    background: linear-gradient(90deg, #60a5fa, #c084fc, #f0abfc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    height: 42px;
    padding: 0 14px;
    color: #cbd5e1;
    border-radius: 999px;
    transition: 0.22s ease;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
    background: rgba(148, 163, 184, 0.13);
}

.nav-dropdown {
    position: relative;
}

.dropdown-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 180px;
    display: grid;
    gap: 4px;
    padding: 10px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 18px;
    color: #e2e8f0;
    background: rgba(15, 23, 42, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: 0.2s ease;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.dropdown-panel a {
    padding: 8px 10px;
    border-radius: 12px;
    color: #cbd5e1;
}

.dropdown-panel a:hover {
    color: #fff;
    background: rgba(96, 165, 250, 0.16);
}

.header-search {
    width: 300px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.82);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.header-search input,
.mobile-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    color: #fff;
    background: transparent;
    padding: 0 10px;
}

.header-search input::placeholder,
.mobile-search input::placeholder {
    color: #94a3b8;
}

.header-search button,
.mobile-search button {
    border: 0;
    cursor: pointer;
    color: #fff;
    padding: 8px 15px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--blue), var(--purple));
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    background: rgba(148, 163, 184, 0.12);
    border-radius: 12px;
    cursor: pointer;
}

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

.mobile-panel {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 18px;
}

.mobile-panel.open {
    display: grid;
    gap: 10px;
}

.mobile-panel a {
    color: #e2e8f0;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(148, 163, 184, 0.1);
}

.mobile-search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.82);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

main {
    min-height: 70vh;
}

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

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

.hero-track {
    position: absolute;
    inset: 0;
}

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

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 30%, rgba(124, 58, 237, 0.4), transparent 30rem),
        linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.72) 46%, rgba(2, 6, 23, 0.2) 100%),
        linear-gradient(180deg, rgba(2, 6, 23, 0.2), rgba(2, 6, 23, 0.92));
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 88px 0 110px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    color: #dbeafe;
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(147, 197, 253, 0.24);
}

.hero-content h1 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(2.6rem, 7vw, 5.6rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.hero-content p {
    max-width: 660px;
    margin: 22px 0 0;
    color: #dbeafe;
    font-size: 1.15rem;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 26px 0 0;
}

.hero-tags span,
.tag-row span,
.detail-tag-row span {
    display: inline-flex;
    align-items: center;
    color: #475569;
    background: #f1f5f9;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 0.84rem;
}

.hero-tags span {
    color: #f8fafc;
    background: rgba(248, 250, 252, 0.14);
    border: 1px solid rgba(248, 250, 252, 0.14);
}

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

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

.primary-button {
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
}

.secondary-button {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.1);
}

.ghost-button {
    color: var(--blue);
    border: 1px solid rgba(37, 99, 235, 0.25);
    background: rgba(37, 99, 235, 0.08);
}

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

.hero-control {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: rgba(15, 23, 42, 0.45);
    cursor: pointer;
    font-size: 2rem;
    line-height: 1;
    backdrop-filter: blur(12px);
    transition: 0.2s ease;
}

.hero-control:hover {
    background: rgba(37, 99, 235, 0.65);
}

.hero-prev {
    left: 22px;
}

.hero-next {
    right: 22px;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 28px;
    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.45);
    cursor: pointer;
    transition: 0.2s ease;
}

.hero-dot.active {
    width: 36px;
    background: #fff;
}

.home-intro {
    margin-top: -54px;
    position: relative;
    z-index: 7;
}

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

.stat-card,
.category-card,
.content-panel {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(226, 232, 240, 0.88);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.stat-card {
    padding: 20px;
    backdrop-filter: blur(16px);
}

.stat-card strong {
    display: block;
    color: var(--ink);
    font-size: 1.8rem;
    line-height: 1;
}

.stat-card span {
    color: var(--muted);
    font-size: 0.92rem;
}

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

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

.section-heading h2 {
    margin: 0;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.section-heading p {
    margin: 8px 0 0;
    color: var(--muted);
}

.section-more {
    color: var(--blue);
    font-weight: 800;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(150px, 190px) minmax(150px, 190px) auto auto;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    padding: 14px;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(226, 232, 240, 0.9);
}

.filter-panel input,
.filter-panel select {
    width: 100%;
    height: 46px;
    border: 1px solid #dbe3ef;
    border-radius: 999px;
    outline: 0;
    color: var(--ink);
    background: #f8fafc;
    padding: 0 14px;
}

.filter-panel input:focus,
.filter-panel select:focus {
    border-color: rgba(37, 99, 235, 0.6);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.filter-result {
    color: var(--muted);
    font-size: 0.92rem;
    white-space: nowrap;
}

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

.movie-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.92);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    transition: 0.22s ease;
}

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

.movie-card.hidden-by-filter {
    display: none;
}

.poster-ratio {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(37, 99, 235, 0.24), rgba(124, 58, 237, 0.18)),
        #cbd5e1;
}

.featured-card .poster-ratio {
    aspect-ratio: 16 / 9;
}

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

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.04), rgba(2, 6, 23, 0.76));
    opacity: 0.88;
}

.poster-badge,
.poster-year {
    position: absolute;
    top: 10px;
    padding: 5px 9px;
    color: #fff;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.68);
    backdrop-filter: blur(10px);
    font-size: 0.76rem;
    font-weight: 800;
}

.poster-badge {
    left: 10px;
}

.poster-year {
    right: 10px;
}

.movie-info {
    padding: 14px;
}

.movie-title {
    display: -webkit-box;
    overflow: hidden;
    min-height: 2.9em;
    color: var(--ink);
    font-weight: 900;
    line-height: 1.45;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-title:hover {
    color: var(--blue);
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 8px 0;
    color: var(--muted);
    font-size: 0.78rem;
}

.movie-meta span:not(:last-child)::after {
    content: "·";
    margin-left: 6px;
    color: #cbd5e1;
}

.movie-info p {
    display: -webkit-box;
    overflow: hidden;
    min-height: 3em;
    margin: 0 0 10px;
    color: #475569;
    font-size: 0.88rem;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.tag-row,
.detail-tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

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

.rank-item {
    display: grid;
    grid-template-columns: auto 64px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.94);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    transition: 0.2s ease;
}

.rank-item:hover {
    transform: translateX(4px);
    border-color: rgba(37, 99, 235, 0.34);
}

.rank-no {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    font-weight: 900;
}

.rank-item img {
    width: 64px;
    height: 88px;
    object-fit: cover;
    border-radius: 12px;
}

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

.rank-copy strong {
    display: block;
    overflow: hidden;
    color: var(--ink);
    white-space: nowrap;
    text-overflow: ellipsis;
}

.rank-copy small {
    display: block;
    color: var(--muted);
}

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

.category-card {
    position: relative;
    overflow: hidden;
    padding: 24px;
    min-height: 190px;
    transition: 0.2s ease;
}

.category-card::after {
    content: "";
    position: absolute;
    right: -34px;
    bottom: -50px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(124, 58, 237, 0.22));
}

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

.category-card strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.28rem;
}

.category-card p {
    margin: 0;
    color: var(--muted);
}

.category-card span {
    display: inline-flex;
    margin-top: 22px;
    color: var(--blue);
    font-weight: 900;
}

.page-hero {
    color: #fff;
    background:
        radial-gradient(circle at 20% 10%, rgba(56, 189, 248, 0.28), transparent 32rem),
        radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.34), transparent 30rem),
        linear-gradient(135deg, #020617, #111827 58%, #1e1b4b);
}

.page-hero-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 74px 0;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: #bfdbfe;
    font-size: 0.92rem;
}

.breadcrumb a {
    color: #dbeafe;
}

.page-hero h1 {
    margin: 0;
    max-width: 900px;
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

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

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    padding-top: 44px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 24px;
    background: #020617;
    box-shadow: var(--shadow);
}

.player-shell video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.player-cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.36;
    filter: blur(1px) saturate(1.2);
    pointer-events: none;
}

.player-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 42%, rgba(37, 99, 235, 0.16), transparent 18rem),
        linear-gradient(180deg, rgba(2, 6, 23, 0.12), rgba(2, 6, 23, 0.76));
    pointer-events: none;
}

.player-button {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 4;
    display: grid;
    place-items: center;
    gap: 10px;
    min-width: 154px;
    min-height: 154px;
    padding: 20px;
    color: #fff;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    background: rgba(37, 99, 235, 0.82);
    box-shadow: 0 20px 55px rgba(37, 99, 235, 0.36);
    transform: translate(-50%, -50%);
    transition: 0.2s ease;
}

.player-button:hover {
    background: rgba(124, 58, 237, 0.88);
    transform: translate(-50%, -50%) scale(1.04);
}

.play-icon {
    font-size: 2.6rem;
    line-height: 1;
}

.player-status {
    position: absolute;
    left: 22px;
    bottom: 18px;
    z-index: 4;
    margin: 0;
    color: #dbeafe;
    font-weight: 700;
}

.player-shell.is-playing .player-cover,
.player-shell.is-playing .player-gradient,
.player-shell.is-playing .player-button,
.player-shell.is-playing .player-status {
    display: none;
}

.detail-panel {
    margin-top: 24px;
    padding: 28px;
}

.detail-panel h2,
.sidebar-panel h2 {
    margin: 0 0 16px;
    font-size: 1.45rem;
}

.detail-copy p {
    margin: 0 0 14px;
    color: #334155;
}

.detail-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 18px 0 22px;
}

.detail-meta-grid div {
    padding: 14px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.detail-meta-grid span {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
}

.detail-meta-grid strong {
    display: block;
    margin-top: 3px;
}

.sidebar {
    display: grid;
    align-content: start;
    gap: 18px;
}

.sidebar-panel {
    padding: 20px;
}

.sidebar .rank-item {
    grid-template-columns: 52px minmax(0, 1fr);
    box-shadow: none;
    border-radius: 14px;
}

.sidebar .rank-item img {
    width: 52px;
    height: 72px;
}

.sidebar .rank-no {
    display: none;
}

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

.site-footer {
    margin-top: 72px;
    color: #cbd5e1;
    background: #020617;
}

.footer-grid {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 46px 0;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 2fr;
    gap: 28px;
}

.footer-brand {
    margin-bottom: 12px;
    color: #fff;
    font-size: 1.35rem;
    font-weight: 900;
}

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

.site-footer h3 {
    margin: 0 0 12px;
    color: #fff;
}

.site-footer a {
    display: block;
    margin: 6px 0;
    color: #cbd5e1;
}

.footer-links {
    columns: 2;
}

.no-results {
    display: none;
    padding: 24px;
    text-align: center;
    color: var(--muted);
    background: #fff;
    border: 1px dashed #cbd5e1;
    border-radius: var(--radius);
}

.no-results.show {
    display: block;
}

@media (max-width: 1100px) {
    .header-search {
        width: 240px;
    }

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

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

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

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

    .mobile-menu-button {
        display: block;
        margin-left: auto;
    }

    .hero-carousel {
        min-height: 560px;
    }

    .hero-content h1 {
        font-size: clamp(2.4rem, 13vw, 4rem);
    }

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

    .rank-grid,
    .footer-grid,
    .sidebar {
        grid-template-columns: 1fr;
    }

    .filter-panel {
        grid-template-columns: 1fr;
    }

    .filter-result {
        white-space: normal;
    }
}

@media (max-width: 560px) {
    .header-inner,
    .page-wrap,
    .page-hero-inner,
    .hero-content,
    .footer-grid,
    .mobile-panel {
        width: min(100% - 22px, 1180px);
    }

    .brand-text {
        font-size: 1.1rem;
    }

    .hero-carousel {
        min-height: 540px;
    }

    .hero-control {
        display: none;
    }

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

    .hero-actions {
        display: grid;
    }

    .stats-grid,
    .movie-grid,
    .category-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .rank-item {
        grid-template-columns: auto 56px minmax(0, 1fr);
    }

    .rank-item img {
        width: 56px;
        height: 78px;
    }

    .detail-panel,
    .sidebar-panel {
        padding: 18px;
    }

    .detail-meta-grid {
        grid-template-columns: 1fr;
    }

    .player-button {
        min-width: 118px;
        min-height: 118px;
    }
}
