:root {
    --color-primary: #f97316;
    --color-primary-dark: #ea580c;
    --color-red: #ef4444;
    --color-green: #16a34a;
    --color-bg: #f8fafc;
    --color-card: #ffffff;
    --color-text: #111827;
    --color-muted: #6b7280;
    --color-line: #e5e7eb;
    --shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.10);
    --shadow-hover: 0 20px 45px rgba(15, 23, 42, 0.18);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--color-bg);
    color: var(--color-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(229, 231, 235, 0.9);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(18px);
}

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

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text);
    font-weight: 800;
}

.brand:hover,
.footer-brand:hover,
.nav-link:hover,
.mobile-link:hover {
    color: var(--color-primary);
}

.brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-red));
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(249, 115, 22, 0.28);
}

.brand-text {
    font-size: 1.35rem;
    letter-spacing: -0.03em;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-link,
.mobile-link {
    color: #374151;
    font-weight: 700;
    transition: color 0.2s ease, background 0.2s ease;
}

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

.header-search {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 290px;
}

.header-search input,
.hero-search input,
.filter-bar input,
.filter-bar select {
    width: 100%;
    border: 1px solid var(--color-line);
    outline: none;
    border-radius: 999px;
    background: #ffffff;
    padding: 12px 16px;
    color: var(--color-text);
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.hero-search input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.header-search button,
.hero-search button,
.hero-actions a,
.rank-more {
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-red));
    color: #ffffff;
    padding: 12px 18px;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 14px 28px rgba(249, 115, 22, 0.24);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-search button:hover,
.hero-search button:hover,
.hero-actions a:hover,
.rank-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(249, 115, 22, 0.34);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: #f3f4f6;
    cursor: pointer;
}

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

.mobile-nav {
    display: none;
    padding: 0 16px 16px;
}

.mobile-nav.is-open {
    display: grid;
    gap: 8px;
}

.mobile-link {
    padding: 12px 14px;
    background: #ffffff;
    border-radius: 12px;
}

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    padding: 74px 0;
    color: #ffffff;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.22), transparent 32%),
        linear-gradient(135deg, #f97316 0%, #f97316 42%, #ef4444 100%);
}

.hero-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(2px);
    opacity: 0.22;
    pointer-events: none;
}

.hero-orb-one {
    top: 80px;
    right: 9%;
    width: 210px;
    height: 210px;
    background: #ffffff;
}

.hero-orb-two {
    bottom: -60px;
    left: 8%;
    width: 280px;
    height: 280px;
    background: #111827;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 440px;
    align-items: center;
    gap: 54px;
}

.hero-copy h1,
.page-hero h1 {
    margin: 12px 0 20px;
    font-size: clamp(2.4rem, 6vw, 5rem);
    line-height: 1.06;
    letter-spacing: -0.06em;
}

.hero-copy p,
.page-hero p {
    max-width: 760px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.18rem;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow {
    background: rgba(255, 255, 255, 0.18);
    color: #fff7ed;
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.section-kicker {
    background: #ffedd5;
    color: #c2410c;
}

.hero-search {
    display: flex;
    gap: 10px;
    max-width: 620px;
    margin-bottom: 20px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    backdrop-filter: blur(12px);
}

.hero-search input {
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-actions,
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.hero-actions a:last-child {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.28);
}

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

.hero-badges span {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #fff7ed;
    font-weight: 800;
}

.hero-slider {
    position: relative;
    height: 570px;
    border-radius: 32px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 35px 65px rgba(127, 29, 29, 0.35);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.12) 58%, transparent);
}

.hero-slide-copy {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 1;
}

.hero-slide-copy span {
    color: #fed7aa;
    font-weight: 900;
}

.hero-slide-copy h2 {
    margin: 8px 0 10px;
    font-size: 2rem;
    line-height: 1.1;
}

.hero-slide-copy p {
    display: -webkit-box;
    margin: 0 0 18px;
    color: #f9fafb;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.hero-slide-copy a {
    display: inline-flex;
    border-radius: 999px;
    background: #ffffff;
    color: var(--color-primary-dark);
    padding: 10px 16px;
    font-weight: 900;
}

.hero-dots {
    position: absolute;
    right: 24px;
    top: 24px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

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

.hero-dots button.is-active {
    width: 28px;
    background: #ffffff;
}

.section {
    padding: 64px 0;
}

.section-soft {
    background: #ffffff;
}

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

.section-heading.compact {
    margin-bottom: 22px;
}

.section-heading h2,
.rank-card-head h2,
.content-card h2 {
    margin: 8px 0 0;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.section-heading > a {
    color: var(--color-primary-dark);
    font-weight: 900;
}

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

.featured-grid .movie-card:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.featured-grid .movie-card:first-child .poster-link {
    aspect-ratio: 16 / 10;
}

.movie-card {
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--color-card);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #111827;
}

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

.movie-card:hover .poster-link img,
.compact-card:hover img,
.category-overview-card:hover img {
    transform: scale(1.07);
}

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent 55%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.movie-card:hover .poster-shade {
    opacity: 1;
}

.poster-year,
.poster-play {
    position: absolute;
    z-index: 2;
    color: #ffffff;
}

.poster-year {
    top: 12px;
    right: 12px;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.92);
    font-size: 0.78rem;
    font-weight: 900;
}

.poster-play {
    left: 50%;
    top: 50%;
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-primary);
    transform: translate(-50%, -50%) scale(0.86);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .poster-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

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

.movie-card h3 {
    margin: 0 0 6px;
    font-size: 1.05rem;
    line-height: 1.35;
}

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

.movie-meta {
    margin: 0 0 8px;
    color: var(--color-muted);
    font-size: 0.9rem;
}

.movie-line {
    display: -webkit-box;
    min-height: 44px;
    margin: 0 0 12px;
    color: #4b5563;
    font-size: 0.92rem;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.mini-tags,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.mini-tags span,
.detail-tags span {
    border-radius: 999px;
    background: #ffedd5;
    color: #c2410c;
    padding: 4px 8px;
    font-size: 0.75rem;
    font-weight: 800;
}

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

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

.compact-card {
    display: grid;
    grid-template-columns: 86px 1fr;
    align-items: center;
    gap: 14px;
    min-height: 116px;
    padding: 12px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #ecfdf5, #ffffff);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.compact-card img {
    width: 86px;
    height: 92px;
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.compact-card span {
    display: block;
    margin-bottom: 5px;
    font-weight: 900;
}

.compact-card small {
    color: var(--color-muted);
}

.rank-card {
    padding: 24px;
    border-radius: var(--radius-lg);
    background: #111827;
    color: #ffffff;
    box-shadow: var(--shadow-hover);
}

.rank-card-head span {
    color: #fed7aa;
    font-weight: 900;
}

.rank-row {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) 42px;
    align-items: center;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.rank-index {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    background: rgba(249, 115, 22, 0.18);
    color: #fed7aa;
    font-weight: 900;
}

.rank-title {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 800;
}

.rank-score {
    color: #fb923c;
    font-weight: 900;
}

.rank-more {
    display: inline-flex;
    margin-top: 20px;
}

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

.category-tile,
.category-overview-card {
    display: block;
    border-radius: var(--radius-md);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile {
    padding: 22px;
    min-height: 150px;
}

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

.category-tile span,
.category-overview-card h2 {
    display: block;
    margin: 0 0 10px;
    color: var(--color-primary-dark);
    font-size: 1.18rem;
    font-weight: 900;
}

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

.page-hero {
    padding: 72px 0;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-red));
}

.page-hero .container {
    position: relative;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.86);
    font-weight: 700;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.filter-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px;
    gap: 12px;
    max-width: 720px;
    margin-top: 26px;
    padding: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.filter-bar.narrow {
    grid-template-columns: 1fr;
    max-width: 520px;
}

.category-overview-card {
    overflow: hidden;
}

.category-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 160px;
    overflow: hidden;
    background: #111827;
}

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

.category-overview-card > div:last-child {
    padding: 20px;
}

.category-overview-card span {
    display: inline-flex;
    margin-top: 16px;
    color: var(--color-primary-dark);
    font-weight: 900;
}

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

.rank-list-item {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr) 72px;
    gap: 18px;
    align-items: center;
    padding: 14px;
    border-radius: var(--radius-md);
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.rank-poster {
    position: relative;
    overflow: hidden;
    width: 96px;
    height: 126px;
    border-radius: 14px;
    background: #111827;
}

.rank-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rank-poster span {
    position: absolute;
    left: 8px;
    top: 8px;
    display: grid;
    place-items: center;
    min-width: 28px;
    height: 28px;
    border-radius: 10px;
    background: var(--color-primary);
    color: #ffffff;
    font-weight: 900;
}

.rank-info h2 {
    margin: 0 0 8px;
    font-size: 1.25rem;
}

.rank-info p:last-child {
    display: -webkit-box;
    margin: 0;
    color: #4b5563;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.rank-score-large {
    color: var(--color-primary-dark);
    font-size: 1.45rem;
    font-weight: 900;
    text-align: center;
}

.detail-page {
    background: #f3f4f6;
}

.detail-hero {
    padding: 38px 0 46px;
    color: #ffffff;
    background:
        radial-gradient(circle at 18% 15%, rgba(255, 255, 255, 0.2), transparent 28%),
        linear-gradient(135deg, #111827 0%, #7c2d12 54%, #ef4444 100%);
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    gap: 26px;
    align-items: stretch;
}

.player-card,
.detail-info-card,
.content-card {
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow-hover);
}

.player-card {
    overflow: hidden;
    background: #000000;
}

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

.video-frame video {
    width: 100%;
    height: 100%;
    display: block;
    background: #000000;
    object-fit: contain;
}

.play-layer {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.62));
    cursor: pointer;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 2;
}

.play-layer.is-hidden {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.play-layer span {
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--color-primary);
    font-size: 2.2rem;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
    transform: scale(1);
    transition: transform 0.2s ease;
}

.play-layer:hover span {
    transform: scale(1.08);
}

.detail-info-card {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 18px;
    padding: 18px;
    color: var(--color-text);
}

.detail-poster img {
    width: 140px;
    height: 190px;
    border-radius: 16px;
    object-fit: cover;
}

.detail-copy h1 {
    margin: 12px 0;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.1;
    letter-spacing: -0.05em;
}

.detail-one-line {
    margin: 0 0 16px;
    color: #4b5563;
    font-weight: 700;
}

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

.detail-meta div {
    padding: 12px;
    border-radius: 14px;
    background: #f9fafb;
}

.detail-meta dt {
    color: var(--color-muted);
    font-size: 0.78rem;
    font-weight: 900;
}

.detail-meta dd {
    margin: 4px 0 0;
    font-weight: 900;
}

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

.detail-main-content {
    display: grid;
    gap: 22px;
}

.content-card {
    padding: 26px;
    box-shadow: var(--shadow-soft);
}

.content-card h2 {
    margin: 0 0 14px;
}

.content-card p {
    margin: 0;
    color: #374151;
    font-size: 1.04rem;
}

.related-list {
    display: grid;
    gap: 14px;
}

.side-card .compact-card {
    grid-template-columns: 72px 1fr;
    min-height: 96px;
    padding: 10px;
    background: #f9fafb;
    box-shadow: none;
}

.side-card .compact-card img {
    width: 72px;
    height: 78px;
}

.site-footer {
    background: #111827;
    color: #d1d5db;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.4fr;
    gap: 30px;
    padding: 46px 0;
}

.footer-brand {
    color: #ffffff;
    font-size: 1.3rem;
}

.site-footer h3 {
    margin: 0 0 14px;
    color: #ffffff;
}

.site-footer p {
    max-width: 440px;
    color: #9ca3af;
}

.site-footer a:not(.footer-brand) {
    display: block;
    margin: 8px 0;
    color: #d1d5db;
}

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

.footer-bottom {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #9ca3af;
    font-size: 0.92rem;
}

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

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

    .menu-toggle {
        display: block;
    }

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

    .hero-slider {
        height: 480px;
    }

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

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

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

    .hero-section,
    .page-hero {
        padding: 48px 0;
    }

    .hero-copy h1,
    .page-hero h1 {
        font-size: 2.45rem;
    }

    .hero-search,
    .filter-bar {
        grid-template-columns: 1fr;
        border-radius: 24px;
    }

    .hero-search {
        flex-direction: column;
        border-radius: 24px;
    }

    .hero-search button,
    .header-search button {
        width: 100%;
    }

    .hero-slider {
        height: 430px;
        border-radius: 24px;
    }

    .section {
        padding: 44px 0;
    }

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

    .movie-grid,
    .compact-grid,
    .category-grid,
    .overview-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .featured-grid .movie-card:first-child {
        grid-column: auto;
        grid-row: auto;
    }

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

    .rank-poster {
        width: 78px;
        height: 104px;
    }

    .rank-score-large {
        grid-column: 2;
        text-align: left;
    }

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

    .detail-poster img {
        width: 100%;
        height: auto;
        max-height: 360px;
    }

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

    .play-layer span {
        width: 72px;
        height: 72px;
        font-size: 1.8rem;
    }
}
