@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@400;500;600;700&display=swap");

:root {
    color-scheme: dark;
    --bg: #0a0e13;
    --bg-soft: #101720;
    --bg-card: rgba(79, 72, 59, 0.32);
    --bg-card-strong: rgba(15, 23, 32, 0.86);
    --line: rgba(95, 85, 70, 0.5);
    --line-hot: rgba(217, 119, 6, 0.36);
    --text: #edeae3;
    --muted: #a9a195;
    --faint: #726650;
    --gold: #d97706;
    --gold-light: #fbbf24;
    --gold-deep: #b45309;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background:
        radial-gradient(circle at 8% 5%, rgba(217, 119, 6, 0.18), transparent 34rem),
        radial-gradient(circle at 92% 12%, rgba(114, 102, 80, 0.18), transparent 28rem),
        linear-gradient(180deg, #0a0e13 0%, #0f151d 46%, #0a0e13 100%);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -2;
    content: "";
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 88%);
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    border: 0;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    font-family: "Noto Serif SC", Georgia, serif;
    letter-spacing: -0.02em;
}

p {
    margin: 0;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    border-bottom: 1px solid rgba(95, 85, 70, 0.42);
    background: rgba(10, 14, 19, 0.82);
    backdrop-filter: blur(18px);
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.logo-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 12px;
    color: white;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
    box-shadow: 0 16px 40px rgba(217, 119, 6, 0.25);
}

.logo-title {
    display: block;
    font-family: "Noto Serif SC", Georgia, serif;
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1;
}

.logo-subtitle {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 0.75rem;
}

.text-gradient {
    color: transparent;
    background: linear-gradient(90deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
}

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

.nav-links a {
    position: relative;
    transition: color 0.2s ease;
}

.nav-links a::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    content: "";
    transform: scaleX(0);
    transform-origin: center;
    background: linear-gradient(90deg, var(--gold-light), var(--gold));
    transition: transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
    color: var(--gold-light);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
    transform: scaleX(1);
}

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

.search-form {
    position: relative;
}

.search-form input,
.filter-panel input,
.filter-panel select {
    width: 100%;
    border: 1px solid rgba(95, 85, 70, 0.56);
    border-radius: 12px;
    outline: none;
    color: var(--text);
    background: rgba(15, 21, 29, 0.72);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.search-form input {
    width: min(270px, 26vw);
    padding: 11px 44px 11px 15px;
}

.search-form input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
    border-color: rgba(251, 191, 36, 0.72);
    box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.12);
    background: rgba(10, 14, 19, 0.92);
}

.search-form button {
    position: absolute;
    top: 50%;
    right: 6px;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 10px;
    color: white;
    background: rgba(217, 119, 6, 0.86);
    transform: translateY(-50%);
}

.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    color: var(--text);
    background: rgba(79, 72, 59, 0.48);
}

.mobile-panel {
    display: none;
    border-top: 1px solid rgba(95, 85, 70, 0.42);
    padding: 14px 0 18px;
}

.mobile-panel a {
    display: block;
    padding: 12px 0;
    color: #d7d0c5;
    font-weight: 600;
}

.hero-slider {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    border-bottom: 1px solid rgba(95, 85, 70, 0.36);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.75s ease;
}

.hero-slide:focus {
    outline: none;
}

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

.hero-slide::before {
    position: absolute;
    inset: 0;
    content: "";
    background-image:
        linear-gradient(90deg, rgba(10, 14, 19, 0.96) 0%, rgba(10, 14, 19, 0.72) 44%, rgba(10, 14, 19, 0.25) 100%),
        linear-gradient(0deg, rgba(10, 14, 19, 0.95) 0%, rgba(10, 14, 19, 0.1) 48%, rgba(10, 14, 19, 0.72) 100%),
        var(--hero-image);
    background-position: center;
    background-size: cover;
    transform: scale(1.02);
}

.hero-slide::after {
    position: absolute;
    inset: 10% 4% 14% auto;
    width: min(430px, 42vw);
    content: "";
    border-radius: 34px;
    background-image: var(--hero-image);
    background-position: center;
    background-size: cover;
    box-shadow: var(--shadow);
    opacity: 0.92;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 690px;
    padding: 120px 0 112px;
}

.hero-kicker,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    border: 1px solid rgba(217, 119, 6, 0.38);
    border-radius: 999px;
    padding: 7px 13px;
    color: var(--gold-light);
    background: rgba(217, 119, 6, 0.14);
    font-size: 0.84rem;
    font-weight: 700;
}

.hero-title {
    max-width: 760px;
    color: white;
    font-size: clamp(2.75rem, 7vw, 5.9rem);
    line-height: 0.98;
    text-wrap: balance;
    text-shadow: 0 18px 46px rgba(0, 0, 0, 0.46);
}

.hero-text {
    max-width: 620px;
    margin-top: 22px;
    color: #d8d2c9;
    font-size: clamp(1rem, 1.45vw, 1.18rem);
    line-height: 1.9;
}

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

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

.pill,
.tag-row span,
.detail-tags span {
    border: 1px solid rgba(217, 119, 6, 0.34);
    border-radius: 999px;
    padding: 6px 10px;
    color: #f6c768;
    background: rgba(217, 119, 6, 0.12);
    font-size: 0.78rem;
    font-weight: 700;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}

.btn-primary,
.btn-ghost,
.btn-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 12px;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-primary {
    padding: 13px 22px;
    color: white;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
    box-shadow: 0 18px 40px rgba(217, 119, 6, 0.24);
}

.btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 12px 20px;
    color: #f1e8d8;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(8px);
}

.btn-small {
    padding: 8px 12px;
    color: var(--gold-light);
    background: rgba(217, 119, 6, 0.14);
}

.btn-primary:hover,
.btn-ghost:hover,
.btn-small:hover {
    transform: translateY(-2px) scale(1.02);
}

.hero-control {
    position: absolute;
    top: 50%;
    z-index: 4;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 999px;
    color: white;
    background: rgba(10, 14, 19, 0.62);
    backdrop-filter: blur(12px);
    transform: translateY(-50%);
}

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

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

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

.hero-dots button {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.is-active {
    width: 34px;
    background: var(--gold-light);
}

.section {
    padding: 72px 0;
}

.section-soft {
    background: linear-gradient(180deg, rgba(16, 23, 32, 0.26), rgba(10, 14, 19, 0));
}

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

.section-title {
    color: #f7f2e8;
    font-size: clamp(1.8rem, 3vw, 2.75rem);
}

.section-desc {
    max-width: 720px;
    margin-top: 10px;
    color: var(--muted);
    line-height: 1.8;
}

.card-zen {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(79, 72, 59, 0.38), rgba(79, 72, 59, 0.14));
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    backdrop-filter: blur(8px);
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.card-zen:hover {
    border-color: var(--line-hot);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

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

.movie-cover {
    position: relative;
    display: block;
    min-height: 290px;
    overflow: hidden;
    background-image:
        linear-gradient(180deg, rgba(10, 14, 19, 0.08), rgba(10, 14, 19, 0.76)),
        var(--cover-image),
        radial-gradient(circle at 50% 20%, rgba(217, 119, 6, 0.26), rgba(16, 23, 32, 0.92));
    background-position: center;
    background-size: cover;
}

.movie-cover::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(0deg, rgba(10, 14, 19, 0.88), transparent 56%);
}

.movie-card:hover .movie-cover {
    filter: saturate(1.08) brightness(1.06);
}

.score-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    border-radius: 999px;
    padding: 6px 10px;
    color: #111827;
    background: linear-gradient(135deg, var(--gold-light), #fde68a);
    font-size: 0.82rem;
    font-weight: 900;
}

.cover-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    z-index: 2;
    border-radius: 999px;
    padding: 6px 10px;
    color: white;
    background: rgba(10, 14, 19, 0.72);
    font-size: 0.78rem;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

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

.meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--faint);
    font-size: 0.82rem;
    font-weight: 700;
}

.movie-card h2,
.movie-card h3 {
    color: white;
    font-size: 1.12rem;
    line-height: 1.35;
}

.movie-card h2 a,
.movie-card h3 a {
    transition: color 0.2s ease;
}

.movie-card:hover h2 a,
.movie-card:hover h3 a {
    color: var(--gold-light);
}

.movie-card p {
    display: -webkit-box;
    min-height: 3.2rem;
    margin: 10px 0 14px;
    overflow: hidden;
    color: #bfb7aa;
    font-size: 0.92rem;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.tag-row span {
    padding: 5px 8px;
    font-size: 0.72rem;
}

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

.category-card {
    display: flex;
    min-height: 210px;
    flex-direction: column;
    justify-content: space-between;
    padding: 22px;
}

.category-card h2,
.category-card h3 {
    color: white;
    font-size: 1.45rem;
}

.category-card p {
    margin: 12px 0 18px;
    color: var(--muted);
    line-height: 1.75;
}

.category-samples {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.category-samples a {
    border-radius: 999px;
    padding: 6px 9px;
    color: #e8dcc8;
    background: rgba(255, 255, 255, 0.06);
    font-size: 0.78rem;
}

.ranking-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 24px;
}

.featured-panel {
    min-height: 520px;
    padding: 30px;
    background-image:
        linear-gradient(180deg, rgba(10, 14, 19, 0.06), rgba(10, 14, 19, 0.88)),
        var(--cover-image),
        radial-gradient(circle at 40% 18%, rgba(217, 119, 6, 0.26), rgba(10, 14, 19, 0.96));
    background-position: center;
    background-size: cover;
}

.featured-panel .section-kicker {
    margin-top: 240px;
}

.featured-panel h3 {
    color: white;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
}

.featured-panel p {
    max-width: 620px;
    margin: 18px 0 24px;
    color: #e1d8c9;
    line-height: 1.85;
}

.ranking-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ranking-list a {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 58px;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(95, 85, 70, 0.45);
    border-radius: 16px;
    padding: 13px 14px;
    background: rgba(16, 23, 32, 0.6);
    transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.ranking-list a:hover {
    border-color: var(--line-hot);
    background: rgba(79, 72, 59, 0.35);
    transform: translateX(4px);
}

.rank-num {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 12px;
    color: #111827;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    font-weight: 900;
}

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

.rank-meta {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.82rem;
}

.rank-score {
    color: var(--gold-light);
    font-weight: 900;
    text-align: right;
}

.page-hero {
    padding: 78px 0 54px;
    border-bottom: 1px solid rgba(95, 85, 70, 0.36);
    background:
        radial-gradient(circle at 18% 18%, rgba(217, 119, 6, 0.2), transparent 24rem),
        linear-gradient(180deg, rgba(16, 23, 32, 0.86), rgba(10, 14, 19, 0));
}

.page-hero h1 {
    color: white;
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    line-height: 1.08;
}

.page-hero p {
    max-width: 820px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.9;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 180px 180px;
    gap: 12px;
    margin-bottom: 30px;
    border: 1px solid rgba(95, 85, 70, 0.42);
    border-radius: 18px;
    padding: 14px;
    background: rgba(15, 21, 29, 0.58);
}

.filter-panel input,
.filter-panel select {
    min-height: 46px;
    padding: 0 13px;
}

.detail-shell {
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.detail-cover {
    min-height: 560px;
    border-radius: var(--radius-lg);
    background-image:
        linear-gradient(180deg, rgba(10, 14, 19, 0.05), rgba(10, 14, 19, 0.8)),
        var(--cover-image),
        radial-gradient(circle at 50% 22%, rgba(217, 119, 6, 0.28), rgba(10, 14, 19, 0.95));
    background-position: center;
    background-size: cover;
    box-shadow: var(--shadow);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
    color: var(--muted);
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #e5d3ae;
}

.detail-title {
    color: white;
    font-size: clamp(2rem, 5vw, 4.5rem);
    line-height: 1.06;
}

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

.detail-meta span {
    border-radius: 999px;
    padding: 8px 12px;
    color: #e8dcc8;
    background: rgba(255, 255, 255, 0.07);
    font-weight: 700;
}

.detail-lead {
    color: #d7d0c5;
    font-size: 1.08rem;
    line-height: 1.95;
}

.player-card {
    position: relative;
    margin-top: 34px;
    overflow: hidden;
    border: 1px solid rgba(217, 119, 6, 0.35);
    border-radius: var(--radius-lg);
    background: black;
    box-shadow: var(--shadow);
}

.player-card video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: black;
}

.play-cover {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: grid;
    place-items: center;
    color: white;
    background:
        linear-gradient(180deg, rgba(10, 14, 19, 0.25), rgba(10, 14, 19, 0.84)),
        var(--cover-image);
    background-position: center;
    background-size: cover;
}

.play-cover.is-hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.play-button-core {
    display: grid;
    width: 98px;
    height: 98px;
    place-items: center;
    border-radius: 999px;
    color: #111827;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 18px 60px rgba(217, 119, 6, 0.38);
    font-size: 2.2rem;
    transform: translateZ(0);
}

.content-block {
    display: grid;
    gap: 18px;
    border: 1px solid rgba(95, 85, 70, 0.42);
    border-radius: var(--radius-lg);
    padding: 26px;
    background: rgba(16, 23, 32, 0.58);
}

.content-block + .content-block {
    margin-top: 20px;
}

.content-block h2 {
    color: white;
    font-size: 1.65rem;
}

.content-block p {
    color: #cdc5b8;
    line-height: 2;
}

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

.side-card {
    position: sticky;
    top: 98px;
    padding: 22px;
}

.side-card h2 {
    margin-bottom: 14px;
    color: white;
    font-size: 1.35rem;
}

.info-list {
    display: grid;
    gap: 12px;
    margin: 0;
}

.info-list div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid rgba(95, 85, 70, 0.28);
    padding-bottom: 10px;
    color: var(--muted);
}

.info-list dt {
    color: #d9cbb8;
    font-weight: 800;
}

.info-list dd {
    margin: 0;
    text-align: right;
}

.empty-state {
    border: 1px solid rgba(95, 85, 70, 0.42);
    border-radius: 18px;
    padding: 28px;
    color: var(--muted);
    background: rgba(16, 23, 32, 0.58);
}

.divider-zen {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(114, 102, 80, 0.9), transparent);
}

.site-footer {
    margin-top: 70px;
    border-top: 1px solid rgba(95, 85, 70, 0.42);
    padding: 42px 0;
    color: var(--muted);
    background: rgba(5, 8, 12, 0.62);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
    gap: 26px;
    align-items: end;
}

.footer-title {
    margin-bottom: 10px;
    font-family: "Noto Serif SC", Georgia, serif;
    font-size: 1.5rem;
    font-weight: 800;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px;
}

.footer-links a {
    color: #d7d0c5;
}

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

    .hero-slide::after {
        opacity: 0.42;
    }

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

    .side-card {
        position: static;
    }
}

@media (max-width: 860px) {
    .nav-links,
    .header-actions .search-form {
        display: none;
    }

    .mobile-toggle {
        display: grid;
        place-items: center;
    }

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

    .mobile-panel .search-form {
        margin-top: 8px;
    }

    .mobile-panel .search-form input {
        width: 100%;
    }

    .hero-slider {
        min-height: 590px;
    }

    .hero-slide::after {
        display: none;
    }

    .hero-content {
        padding: 94px 0 100px;
    }

    .hero-control {
        display: none;
    }

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

    .filter-panel,
    .detail-shell,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        justify-content: flex-start;
    }

    .detail-cover {
        min-height: 460px;
    }
}

@media (max-width: 560px) {
    .container-zen {
        width: min(100% - 22px, 1280px);
    }

    .logo-subtitle {
        display: none;
    }

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

    .hero-title {
        font-size: 2.55rem;
    }

    .section {
        padding: 52px 0;
    }

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

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

    .movie-cover {
        min-height: 260px;
    }

    .ranking-list a {
        grid-template-columns: 42px minmax(0, 1fr) 48px;
    }

    .detail-cover {
        min-height: 390px;
    }

    .play-button-core {
        width: 78px;
        height: 78px;
        font-size: 1.8rem;
    }
}
