:root {
    --bg: #020617;
    --bg-soft: #0f172a;
    --panel: rgba(30, 41, 59, 0.58);
    --panel-strong: rgba(15, 23, 42, 0.92);
    --line: rgba(148, 163, 184, 0.18);
    --text: #f8fafc;
    --muted: #94a3b8;
    --muted-strong: #cbd5e1;
    --sky: #38bdf8;
    --sky-deep: #0284c7;
    --green: #4ade80;
    --radius: 22px;
    --shadow: 0 24px 70px rgba(2, 6, 23, 0.42);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), transparent 34rem),
        linear-gradient(135deg, #020617 0%, #0f172a 50%, #020617 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0));
    transition: background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.nav-scrolled,
body.menu-open .site-header {
    background: rgba(15, 23, 42, 0.94);
    box-shadow: 0 18px 38px rgba(2, 6, 23, 0.28);
    backdrop-filter: blur(18px);
}

.header-shell {
    height: 76px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: max-content;
}

.brand-mark {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--sky), var(--sky-deep));
    box-shadow: 0 10px 28px rgba(56, 189, 248, 0.35);
    font-weight: 800;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-text strong {
    font-size: 18px;
    letter-spacing: 0.02em;
}

.brand-text small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
}

.brand.compact .brand-mark {
    width: 34px;
    height: 34px;
}

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

.nav-link {
    color: #e2e8f0;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
    color: var(--sky);
}

.nav-search {
    width: 230px;
    position: relative;
}

.nav-search input,
.mobile-search input,
.field {
    width: 100%;
    color: var(--text);
    background: rgba(15, 23, 42, 0.68);
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 999px;
    outline: 0;
    padding: 11px 16px;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nav-search input::placeholder,
.mobile-search input::placeholder,
.field::placeholder {
    color: #64748b;
}

.nav-search input:focus,
.mobile-search input:focus,
.field:focus {
    border-color: rgba(56, 189, 248, 0.8);
    background: rgba(15, 23, 42, 0.95);
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.12);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: rgba(30, 41, 59, 0.75);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: var(--text);
}

.mobile-panel {
    display: none;
    padding: 0 16px 20px;
    border-top: 1px solid var(--line);
    background: rgba(15, 23, 42, 0.98);
}

.mobile-panel.open {
    display: block;
}

.mobile-link {
    display: block;
    padding: 13px 4px;
    color: #e2e8f0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    font-weight: 600;
}

.mobile-search {
    margin: 16px 0 8px;
}

.hero-section {
    padding: 96px 0 28px;
}

.hero-carousel {
    position: relative;
    min-height: clamp(480px, 62vw, 690px);
    overflow: hidden;
    border-radius: 30px;
    background: #020617;
    box-shadow: var(--shadow);
    isolation: isolate;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.55s ease;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform 7s ease;
}

.hero-slide.active img {
    transform: scale(1.11);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.94) 0%, rgba(2, 6, 23, 0.72) 44%, rgba(2, 6, 23, 0.14) 100%),
        linear-gradient(0deg, rgba(2, 6, 23, 0.8), transparent 46%);
}

.hero-content {
    position: absolute;
    z-index: 2;
    left: clamp(24px, 7vw, 78px);
    bottom: clamp(38px, 8vw, 86px);
    width: min(650px, calc(100% - 48px));
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--sky);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-content h1,
.hero-content h2,
.page-hero h1 {
    margin: 0;
    color: var(--text);
    font-size: clamp(34px, 6vw, 68px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.hero-movie-title {
    display: block;
    margin-top: 14px;
    color: #dbeafe;
    font-size: clamp(22px, 3vw, 34px);
    line-height: 1.2;
}

.hero-content p:not(.eyebrow) {
    max-width: 620px;
    margin: 18px 0 0;
    color: #cbd5e1;
    font-size: 17px;
}

.hero-tags,
.tag-cloud,
.chip-row,
.card-meta-row,
.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

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

.tag,
.pill,
.chip {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    color: #dbeafe;
    background: rgba(30, 41, 59, 0.7);
    padding: 6px 11px;
    font-size: 13px;
    line-height: 1;
}

.pill.sky,
.chip.active {
    color: #ffffff;
    border-color: rgba(56, 189, 248, 0.4);
    background: rgba(14, 165, 233, 0.82);
}

.pill.muted {
    color: #cbd5e1;
}

.hero-actions {
    margin-top: 28px;
}

.button,
.section-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 999px;
    padding: 0 18px;
    border: 1px solid transparent;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.section-link:hover {
    transform: translateY(-1px);
}

.button.primary {
    color: white;
    background: linear-gradient(135deg, var(--sky), var(--sky-deep));
    box-shadow: 0 16px 34px rgba(14, 165, 233, 0.28);
}

.button.ghost {
    color: #e2e8f0;
    background: rgba(15, 23, 42, 0.62);
    border-color: rgba(226, 232, 240, 0.18);
}

.button.soft,
.section-link {
    color: var(--sky);
    background: rgba(56, 189, 248, 0.1);
    border-color: rgba(56, 189, 248, 0.22);
}

.hero-arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(226, 232, 240, 0.2);
    border-radius: 50%;
    color: white;
    background: rgba(15, 23, 42, 0.55);
    cursor: pointer;
    font-size: 32px;
    line-height: 1;
    transform: translateY(-50%);
    backdrop-filter: blur(12px);
}

.hero-arrow:hover {
    background: rgba(14, 165, 233, 0.8);
}

.hero-arrow.prev {
    left: 18px;
}

.hero-arrow.next {
    right: 18px;
}

.hero-dots {
    position: absolute;
    z-index: 5;
    right: 32px;
    bottom: 28px;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(226, 232, 240, 0.42);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.active {
    width: 28px;
    background: var(--sky);
}

.content-section {
    padding: 58px 0;
}

.content-section.alt {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.45), rgba(2, 6, 23, 0));
}

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

.section-head h2,
.category-card h2,
.detail-info-card h1,
.recommend-panel h2,
.text-block h2,
.footer-links h2,
.horizontal-body h2 {
    margin: 0;
}

.section-head h2 {
    font-size: clamp(26px, 3.6vw, 38px);
    line-height: 1.15;
}

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

.movie-card {
    min-width: 0;
    border-radius: 18px;
    overflow: hidden;
    background: var(--panel);
    border: 1px solid rgba(148, 163, 184, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    background: rgba(30, 41, 59, 0.9);
    border-color: rgba(56, 189, 248, 0.24);
    box-shadow: 0 20px 45px rgba(2, 6, 23, 0.36);
}

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

.movie-card-poster,
.horizontal-cover {
    position: relative;
    overflow: hidden;
    background: #020617;
}

.movie-card-poster {
    aspect-ratio: 3 / 4;
}

.movie-card-poster img,
.horizontal-cover img,
.category-visual img,
.poster-panel img,
.mini-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.movie-card:hover .movie-card-poster img,
.movie-card:hover .horizontal-cover img,
.category-card:hover .category-visual img,
.mini-card:hover img {
    transform: scale(1.08);
}

.card-badge,
.card-year,
.rank-badge {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    border-radius: 9px;
    padding: 0 9px;
    color: white;
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(12px);
}

.card-badge {
    top: 10px;
    left: 10px;
    background: rgba(14, 165, 233, 0.88);
}

.card-year {
    top: 10px;
    right: 10px;
    background: rgba(2, 6, 23, 0.74);
}

.rank-badge {
    top: 12px;
    left: 12px;
    min-width: 34px;
    justify-content: center;
    background: rgba(14, 165, 233, 0.9);
}

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

.movie-card-body h2 {
    margin: 0 0 8px;
    color: white;
    font-size: 15px;
    line-height: 1.35;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.movie-card:hover h2,
.horizontal-link:hover h2,
.mini-card:hover strong,
.category-card h2 a:hover {
    color: var(--sky);
}

.movie-card-body p,
.horizontal-body p,
.category-card p,
.footer-brand p,
.page-hero p,
.lead,
.text-block p {
    color: var(--muted-strong);
}

.movie-card-body p {
    min-height: 42px;
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-card-foot,
.mini-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #64748b;
    font-size: 12px;
}

.rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(190px, 246px);
    gap: 20px;
    overflow-x: auto;
    padding: 4px 2px 16px;
    scroll-snap-type: x proximity;
}

.rail::-webkit-scrollbar {
    height: 8px;
}

.rail::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(100, 116, 139, 0.35);
}

.rail-item {
    scroll-snap-align: start;
}

.page-hero {
    padding: 120px 0 40px;
    background:
        radial-gradient(circle at 20% 10%, rgba(56, 189, 248, 0.18), transparent 32rem),
        linear-gradient(180deg, rgba(15, 23, 42, 0.36), rgba(2, 6, 23, 0));
}

.page-hero.slim h1 {
    font-size: clamp(34px, 5vw, 58px);
}

.page-hero p {
    max-width: 780px;
    margin: 14px 0 0;
    font-size: 17px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
    color: var(--muted);
    font-size: 14px;
}

.breadcrumbs a:hover {
    color: var(--sky);
}

.chip-row {
    margin-top: 22px;
}

.chip {
    padding: 8px 13px;
    transition: background 0.2s ease, color 0.2s ease;
}

.chip:hover {
    background: rgba(56, 189, 248, 0.14);
    color: white;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) repeat(3, minmax(150px, 190px));
    gap: 14px;
    margin-bottom: 26px;
    padding: 18px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.55);
}

.field {
    appearance: none;
    border-radius: 14px;
}

.empty-state {
    margin: 38px 0 0;
    color: var(--muted);
    text-align: center;
}

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

.category-card {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(148, 163, 184, 0.12);
    background: var(--panel);
    box-shadow: 0 16px 46px rgba(2, 6, 23, 0.22);
}

.category-visual {
    position: relative;
    display: block;
    height: 210px;
    overflow: hidden;
}

.category-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.82), transparent 64%);
}

.category-visual span {
    position: absolute;
    z-index: 2;
    left: 20px;
    bottom: 18px;
    color: white;
    font-size: 24px;
    font-weight: 900;
}

.category-card-body {
    padding: 20px;
}

.category-card h2 {
    font-size: 22px;
}

.category-card p {
    margin: 10px 0 18px;
}

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

.mini-card {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 12px;
    align-items: center;
    min-width: 0;
}

.mini-card img {
    height: 76px;
    border-radius: 12px;
}

.mini-card span {
    min-width: 0;
}

.mini-card strong {
    display: block;
    color: white;
    font-size: 14px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mini-card small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
}

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

.movie-card.horizontal {
    border-radius: 20px;
}

.horizontal-link {
    display: grid;
    grid-template-columns: 150px 1fr;
    min-height: 200px;
}

.horizontal-cover {
    min-height: 200px;
}

.horizontal-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 18px;
}

.horizontal-body h2 {
    margin-top: 12px;
    color: white;
    font-size: 18px;
    line-height: 1.35;
    transition: color 0.2s ease;
}

.horizontal-body p {
    margin: 10px 0 14px;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.detail-page {
    padding: 108px 0 60px;
}

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

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(300px, 0.92fr);
    gap: 26px;
    align-items: start;
}

.detail-main,
.detail-aside {
    min-width: 0;
}

.player-shell,
.detail-info-card,
.poster-panel,
.recommend-panel {
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.74);
    box-shadow: 0 18px 46px rgba(2, 6, 23, 0.28);
}

.player-shell {
    overflow: hidden;
}

.video-frame {
    position: relative;
    background: #000000;
    aspect-ratio: 16 / 9;
}

.movie-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: #000000;
    cursor: pointer;
}

.player-cover {
    position: absolute;
    z-index: 3;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    padding: 0;
    overflow: hidden;
    background: #000000;
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

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

.play-orb {
    position: absolute;
    width: 82px;
    height: 82px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(14, 165, 233, 0.86);
    box-shadow: 0 0 0 14px rgba(56, 189, 248, 0.12), 0 24px 50px rgba(2, 6, 23, 0.45);
    font-size: 34px;
    text-indent: 4px;
}

.detail-info-card {
    margin-top: 22px;
    padding: clamp(22px, 4vw, 34px);
}

.detail-info-card h1 {
    margin-top: 16px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.lead {
    margin: 16px 0 24px;
    font-size: 18px;
}

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

.detail-facts div {
    padding: 16px;
    border-radius: 16px;
    background: rgba(30, 41, 59, 0.62);
    border: 1px solid rgba(148, 163, 184, 0.12);
}

.detail-facts small {
    display: block;
    color: var(--muted);
    font-size: 12px;
}

.detail-facts strong {
    display: block;
    margin-top: 4px;
    color: white;
    font-size: 15px;
}

.tag-cloud {
    margin: 0 0 24px;
}

.text-block {
    padding-top: 22px;
    border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.text-block + .text-block {
    margin-top: 22px;
}

.text-block h2 {
    margin-bottom: 10px;
    font-size: 20px;
}

.text-block p {
    margin: 0;
}

.detail-aside {
    position: sticky;
    top: 98px;
    display: grid;
    gap: 18px;
}

.poster-panel {
    overflow: hidden;
}

.poster-panel img {
    aspect-ratio: 3 / 4;
}

.recommend-panel {
    padding: 20px;
}

.recommend-panel h2 {
    margin-bottom: 16px;
    font-size: 20px;
}

.more-section {
    padding-bottom: 0;
}

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

.site-footer {
    border-top: 1px solid rgba(148, 163, 184, 0.14);
    background: rgba(15, 23, 42, 0.84);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
    padding: 42px 0;
}

.footer-brand p {
    max-width: 560px;
    margin: 16px 0 0;
}

.footer-links {
    display: grid;
    gap: 9px;
    align-content: start;
}

.footer-links h2 {
    margin-bottom: 6px;
    font-size: 16px;
}

.footer-links a {
    color: var(--muted);
    font-size: 14px;
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 20px 0;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    color: #64748b;
    font-size: 13px;
}

@media (max-width: 1060px) {
    .movie-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .ranking-list {
        grid-template-columns: 1fr;
    }

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

    .detail-aside {
        position: static;
        grid-template-columns: 280px 1fr;
    }
}

@media (max-width: 860px) {
    .header-shell {
        height: 68px;
    }

    .desktop-nav,
    .nav-search {
        display: none;
    }

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

    .hero-section {
        padding-top: 82px;
    }

    .hero-carousel {
        min-height: 580px;
        border-radius: 22px;
    }

    .hero-shade {
        background: linear-gradient(0deg, rgba(2, 6, 23, 0.94), rgba(2, 6, 23, 0.42));
    }

    .hero-content {
        left: 22px;
        right: 22px;
        bottom: 34px;
        width: auto;
    }

    .hero-arrow {
        display: none;
    }

    .section-head {
        align-items: flex-start;
        flex-direction: column;
    }

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

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

    .category-overview {
        grid-template-columns: 1fr;
    }

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

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

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

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

    .brand-text small {
        display: none;
    }

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

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

    .hero-content p:not(.eyebrow) {
        font-size: 15px;
    }

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

    .button {
        width: 100%;
    }

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

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

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

    .horizontal-link {
        grid-template-columns: 116px 1fr;
        min-height: 158px;
    }

    .horizontal-cover {
        min-height: 158px;
    }

    .horizontal-body {
        padding: 14px;
    }

    .horizontal-body h2 {
        font-size: 15px;
    }

    .detail-page {
        padding-top: 92px;
    }

    .detail-info-card {
        padding: 20px;
    }

    .detail-facts,
    .detail-aside {
        grid-template-columns: 1fr;
    }

    .play-orb {
        width: 66px;
        height: 66px;
        font-size: 26px;
    }
}
