:root {
    --amber-50: #fff7ed;
    --amber-100: #ffedd5;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-700: #b45309;
    --amber-800: #92400e;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(17, 24, 39, 0.12);
    --soft-shadow: 0 10px 28px rgba(17, 24, 39, 0.08);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--gray-900);
    background: var(--gray-50);
    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,
video {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
    backdrop-filter: blur(18px);
}

.top-strip {
    background: var(--amber-700);
    color: var(--white);
    text-align: center;
    padding: 8px 16px;
    font-size: 14px;
}

.nav-shell {
    max-width: 1280px;
    height: 78px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 26px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-600), #ea580c);
    font-size: 24px;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(217, 119, 6, 0.35);
}

.brand-copy {
    display: grid;
    gap: 1px;
}

.brand-copy strong {
    color: var(--amber-800);
    font-size: 23px;
    line-height: 1.1;
}

.brand-copy small {
    color: var(--gray-500);
    font-size: 12px;
}

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

.main-nav > a,
.nav-dropdown > a {
    color: var(--gray-700);
    font-weight: 700;
    transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active,
.nav-dropdown:hover > a {
    color: var(--amber-700);
}

.nav-dropdown {
    position: relative;
    padding: 26px 0;
}

.dropdown-panel {
    position: absolute;
    left: 0;
    top: 70px;
    min-width: 190px;
    padding: 10px;
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.2s ease;
}

.dropdown-panel a {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    color: var(--gray-700);
}

.dropdown-panel a:hover {
    color: var(--amber-700);
    background: var(--amber-50);
}

.nav-dropdown:hover .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-search {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 8px;
}

.header-search input,
.mobile-search input,
.footer-subscribe input,
.control-input,
.control-select {
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    background: var(--white);
    outline: none;
    transition: 0.2s ease;
}

.header-search input {
    width: 210px;
    padding: 10px 15px;
}

.header-search input:focus,
.mobile-search input:focus,
.footer-subscribe input:focus,
.control-input:focus,
.control-select:focus {
    border-color: var(--amber-500);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.16);
}

.header-search button,
.mobile-search button,
.footer-subscribe button,
.primary-btn,
.secondary-btn,
.filter-btn {
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    transition: 0.2s ease;
}

.header-search button,
.mobile-search button,
.footer-subscribe button,
.primary-btn,
.filter-btn {
    color: var(--white);
    background: var(--amber-600);
}

.header-search button {
    padding: 10px 18px;
}

.header-search button:hover,
.mobile-search button:hover,
.footer-subscribe button:hover,
.primary-btn:hover,
.filter-btn:hover {
    background: var(--amber-700);
    transform: translateY(-1px);
}

.secondary-btn {
    color: var(--gray-900);
    border: 1px solid var(--gray-200);
    background: var(--white);
}

.secondary-btn:hover {
    background: var(--gray-50);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    color: var(--amber-700);
    background: var(--amber-50);
    font-size: 24px;
}

.mobile-panel {
    display: none;
    padding: 16px 24px 24px;
    border-top: 1px solid var(--gray-200);
    background: var(--white);
}

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

.mobile-panel a {
    padding: 10px 0;
    color: var(--gray-700);
    font-weight: 700;
}

.mobile-search {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.mobile-search input {
    min-width: 0;
    flex: 1;
    padding: 11px 14px;
}

.mobile-search button {
    padding: 10px 18px;
}

.hero {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: linear-gradient(120deg, var(--amber-50), #fff1e6 48%, #fff7ed);
}

.hero::before {
    content: "";
    position: absolute;
    inset: auto -12% -34% 42%;
    height: 420px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.36), transparent 68%);
}

.hero-track {
    position: relative;
    max-width: 1280px;
    min-height: 620px;
    margin: 0 auto;
    padding: 72px 24px 86px;
}

.hero-slide {
    display: none;
    grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.78fr);
    align-items: center;
    gap: 52px;
}

.hero-slide.is-active {
    display: grid;
    animation: fadeUp 0.45s ease both;
}

.hero-copy {
    max-width: 700px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 8px 15px;
    border-radius: 999px;
    color: var(--amber-800);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 8px 24px rgba(217, 119, 6, 0.12);
    font-weight: 800;
}

.hero h1 {
    margin: 0 0 20px;
    color: var(--gray-900);
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.hero h1 span {
    color: var(--amber-700);
}

.hero p {
    max-width: 650px;
    margin: 0 0 30px;
    color: var(--gray-600);
    font-size: 20px;
}

.hero-actions,
.section-actions,
.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 24px;
    box-shadow: 0 12px 24px rgba(217, 119, 6, 0.18);
}

.hero-media {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transform: rotate(1.5deg);
    background: var(--gray-200);
}

.hero-media img {
    width: 100%;
    height: 470px;
    object-fit: cover;
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(17, 24, 39, 0.22));
}

.hero-meta-card {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 1;
    max-width: calc(100% - 36px);
    padding: 14px 18px;
    border-radius: 18px;
    color: var(--white);
    background: rgba(17, 24, 39, 0.68);
    backdrop-filter: blur(16px);
}

.carousel-dots {
    position: absolute;
    left: 24px;
    bottom: 34px;
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 42px;
    height: 6px;
    border: 0;
    border-radius: 999px;
    background: rgba(180, 83, 9, 0.22);
}

.carousel-dot.is-active {
    background: var(--amber-700);
}

.feature-strip {
    background: var(--white);
    padding: 54px 24px;
}

.feature-grid,
.category-grid,
.movie-grid,
.footer-grid,
.info-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    gap: 24px;
}

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

.feature-tile {
    text-align: center;
    padding: 25px 18px;
    border-radius: var(--radius);
    background: var(--gray-50);
    transition: 0.2s ease;
}

.feature-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--soft-shadow);
}

.feature-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 12px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: var(--amber-700);
    background: var(--amber-100);
    font-size: 24px;
}

.feature-tile h2,
.feature-tile h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.feature-tile p {
    margin: 0;
    color: var(--gray-600);
    font-size: 14px;
}

.section {
    padding: 72px 24px;
}

.section.white {
    background: var(--white);
}

.section.amber {
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-600), #ea580c);
}

.section.dark {
    color: var(--white);
    background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
}

.section-inner {
    max-width: 1280px;
    margin: 0 auto;
}

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

.section-heading.center {
    display: block;
    text-align: center;
}

.section-heading h1,
.section-heading h2 {
    margin: 0 0 8px;
    color: inherit;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.section-heading p,
.page-hero p,
.category-card p,
.detail-copy p,
.about-copy p {
    color: var(--gray-600);
}

.section.amber .section-heading p,
.section.dark .section-heading p,
.section.amber p,
.section.dark p {
    color: rgba(255, 255, 255, 0.82);
}

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

.category-card {
    position: relative;
    min-height: 245px;
    padding: 24px;
    overflow: hidden;
    border-radius: 24px;
    color: var(--white);
    background: linear-gradient(150deg, rgba(17, 24, 39, 0.72), rgba(180, 83, 9, 0.68));
    box-shadow: var(--soft-shadow);
    transition: 0.25s ease;
}

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

.category-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    transition: transform 0.35s ease;
}

.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.16), rgba(17, 24, 39, 0.76));
}

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

.category-card h2,
.category-card h3 {
    margin: 0 0 10px;
    font-size: 25px;
}

.category-card p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.82);
}

.category-card span {
    color: #fde68a;
    font-weight: 800;
}

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

.movie-card {
    overflow: hidden;
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--soft-shadow);
    transition: 0.25s ease;
}

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

.poster-link {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--gray-200);
}

.poster-link img {
    width: 100%;
    aspect-ratio: 2 / 2.72;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

.play-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: var(--white);
    background: rgba(17, 24, 39, 0.58);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.86);
    transition: 0.25s ease;
    backdrop-filter: blur(12px);
}

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

.corner-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    padding: 5px 10px;
    border-radius: 999px;
    color: var(--white);
    background: var(--amber-600);
    font-size: 12px;
    font-weight: 800;
}

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

.movie-card h3 {
    margin: 0 0 9px;
    font-size: 18px;
    line-height: 1.35;
}

.movie-card h3 a:hover,
.rank-content h3 a:hover,
.related-card h3 a:hover {
    color: var(--amber-700);
}

.movie-card p {
    min-height: 48px;
    margin: 0 0 12px;
    color: var(--gray-600);
    font-size: 14px;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.tag-row span {
    padding: 4px 8px;
    border-radius: 999px;
    color: var(--amber-800);
    background: var(--amber-50);
    font-size: 12px;
    font-weight: 700;
}

.meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: var(--gray-500);
    font-size: 13px;
}

.hot-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1.12fr);
    gap: 42px;
    align-items: center;
}

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

.mini-card {
    display: grid;
    gap: 12px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.14);
    transition: 0.2s ease;
}

.mini-card:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-3px);
}

.mini-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 14px;
}

.mini-card h3 {
    margin: 0;
    font-size: 16px;
}

.mini-card p {
    margin: 0;
    font-size: 13px;
}

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

.rank-item {
    position: relative;
    display: grid;
    grid-template-columns: 86px 48px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 14px;
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--soft-shadow);
    transition: 0.22s ease;
}

.rank-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.rank-poster img {
    width: 86px;
    height: 112px;
    object-fit: cover;
    border-radius: 14px;
}

.rank-number {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-600), #ea580c);
    font-size: 22px;
    font-weight: 900;
}

.rank-content h3 {
    margin: 0 0 6px;
    font-size: 20px;
}

.rank-content p {
    margin: 0 0 8px;
    color: var(--gray-600);
}

.score-pill {
    padding: 8px 13px;
    border-radius: 999px;
    color: var(--amber-800);
    background: var(--amber-50);
    font-weight: 900;
}

.page-hero {
    padding: 68px 24px;
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-700), #c2410c);
}

.page-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
}

.breadcrumb a:hover {
    color: var(--white);
}

.page-hero h1 {
    max-width: 860px;
    margin: 0 0 12px;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.page-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
}

.controls-card {
    max-width: 1280px;
    margin: 0 auto 28px;
    padding: 18px;
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--soft-shadow);
    display: grid;
    grid-template-columns: minmax(240px, 1fr) 180px 180px auto;
    gap: 14px;
    align-items: center;
}

.control-input,
.control-select {
    width: 100%;
    padding: 12px 16px;
}

.filter-btn {
    padding: 12px 18px;
}

.empty-state {
    display: none;
    max-width: 1280px;
    margin: 0 auto;
    padding: 44px;
    border-radius: 22px;
    text-align: center;
    background: var(--white);
    color: var(--gray-600);
    box-shadow: var(--soft-shadow);
}

.empty-state.is-visible {
    display: block;
}

.detail-layout {
    max-width: 1280px;
    margin: 0 auto;
    padding: 42px 24px 76px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 30px;
}

.player-shell,
.detail-panel,
.side-panel,
.about-panel {
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--soft-shadow);
    overflow: hidden;
}

.player-box {
    position: relative;
    background: #050505;
}

.player-box video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #050505;
}

.play-layer {
    position: absolute;
    inset: 0;
    border: 0;
    padding: 0;
    color: var(--white);
    background: rgba(17, 24, 39, 0.34);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.play-layer.is-hidden {
    display: none;
}

.play-layer img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.58;
}

.play-circle {
    position: relative;
    z-index: 1;
    width: 88px;
    height: 88px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(217, 119, 6, 0.88);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.26);
    font-size: 34px;
    transition: 0.2s ease;
}

.play-layer:hover .play-circle {
    transform: scale(1.06);
    background: var(--amber-700);
}

.detail-panel {
    padding: 26px;
    margin-top: 22px;
}

.detail-panel h2,
.side-panel h2,
.about-panel h2 {
    margin: 0 0 14px;
    font-size: 24px;
}

.detail-copy {
    display: grid;
    gap: 18px;
}

.detail-copy p {
    margin: 0;
    font-size: 16px;
}

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

.detail-meta span {
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--gray-100);
    color: var(--gray-700);
    font-weight: 700;
    font-size: 13px;
}

.side-panel {
    padding: 20px;
}

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

.related-card {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.related-card img {
    width: 76px;
    height: 96px;
    object-fit: cover;
    border-radius: 12px;
}

.related-card h3 {
    margin: 0 0 6px;
    font-size: 15px;
    line-height: 1.3;
}

.related-card p {
    margin: 0;
    color: var(--gray-500);
    font-size: 13px;
}

.about-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 72px 24px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 26px;
}

.about-panel {
    padding: 28px;
}

.about-copy {
    display: grid;
    gap: 16px;
}

.about-copy p {
    margin: 0;
}

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

.info-card {
    padding: 24px;
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--soft-shadow);
}

.info-card h2,
.info-card h3 {
    margin: 0 0 10px;
}

.info-card p {
    margin: 0;
    color: var(--gray-600);
}

.site-footer {
    color: rgba(255, 255, 255, 0.82);
    background: var(--gray-900);
}

.footer-grid {
    grid-template-columns: 1.35fr 1fr 1fr 1.1fr;
    padding: 56px 24px 36px;
}

.footer-brand {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--white);
    font-size: 24px;
    font-weight: 900;
}

.site-footer h2 {
    margin: 0 0 14px;
    color: var(--white);
    font-size: 18px;
}

.site-footer p {
    margin: 0;
}

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

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

.footer-subscribe {
    display: flex;
    gap: 8px;
}

.footer-subscribe input {
    min-width: 0;
    flex: 1;
    padding: 11px 14px;
    color: var(--gray-900);
}

.footer-subscribe button {
    padding: 10px 16px;
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 24px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    font-size: 14px;
}

.back-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 40;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: var(--amber-600);
    box-shadow: var(--soft-shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: 0.2s ease;
}

.back-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    .menu-toggle {
        display: grid;
        place-items: center;
        margin-left: auto;
    }

    .hero-slide,
    .hot-panel,
    .detail-layout,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .hero-media {
        transform: none;
    }

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

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

@media (max-width: 720px) {
    .nav-shell {
        height: 68px;
        padding: 0 16px;
    }

    .brand-copy strong {
        font-size: 19px;
    }

    .hero-track {
        min-height: auto;
        padding: 46px 18px 76px;
    }

    .hero-media img {
        height: 360px;
    }

    .feature-strip,
    .section {
        padding: 48px 18px;
    }

    .category-grid,
    .movie-grid,
    .feature-grid,
    .footer-grid,
    .info-grid,
    .mini-grid {
        grid-template-columns: 1fr;
    }

    .section-heading {
        display: grid;
    }

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

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

    .rank-poster img {
        width: 70px;
        height: 92px;
    }

    .score-pill {
        grid-column: 2 / -1;
        justify-self: start;
    }

    .detail-layout,
    .about-grid {
        padding: 28px 18px 56px;
    }

    .footer-subscribe {
        display: grid;
    }
}
