:root {
    --blue-950: #0f1f4f;
    --blue-900: #15326f;
    --blue-800: #1e4f9b;
    --blue-700: #1d62c9;
    --blue-600: #2563eb;
    --blue-100: #dbeafe;
    --blue-50: #eff6ff;
    --slate-950: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --white: #ffffff;
    --shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
    --soft-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(14px);
}

.top-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    min-height: 68px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--blue-600);
    font-size: 22px;
    font-weight: 800;
    white-space: nowrap;
}

.brand-icon {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-600), #60a5fa);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.28);
    font-size: 15px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    font-weight: 650;
    color: var(--slate-700);
}

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

.nav-links a:hover {
    color: var(--blue-600);
}

.nav-search {
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--slate-200);
    border-radius: 999px;
    background: var(--white);
}

.nav-search input,
.mobile-search input {
    width: 230px;
    border: 0;
    outline: 0;
    padding: 10px 14px;
    background: transparent;
}

.nav-search button,
.mobile-search button,
.search-box-panel button {
    border: 0;
    padding: 10px 18px;
    color: var(--white);
    background: var(--blue-600);
    cursor: pointer;
    transition: background 0.2s ease;
}

.nav-search button:hover,
.mobile-search button:hover,
.search-box-panel button:hover {
    background: var(--blue-700);
}

.menu-button {
    display: none;
    border: 0;
    background: transparent;
    color: var(--slate-700);
    font-size: 28px;
    cursor: pointer;
}

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

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

.mobile-search {
    display: flex;
    overflow: hidden;
    border: 1px solid var(--slate-200);
    border-radius: 14px;
}

.mobile-search input {
    flex: 1;
    width: 100%;
}

.mobile-links {
    display: grid;
    gap: 10px;
    margin-top: 14px;
    font-weight: 650;
}

.hero-carousel {
    position: relative;
    height: 520px;
    overflow: hidden;
    background: linear-gradient(120deg, var(--blue-950), var(--blue-700));
}

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

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

.hero-slide > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.33;
    transform: scale(1.03);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 22%, rgba(96, 165, 250, 0.45), transparent 35%),
        linear-gradient(90deg, rgba(15, 31, 79, 0.92), rgba(29, 98, 201, 0.58) 48%, rgba(15, 23, 42, 0.42));
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 720px;
    color: var(--white);
}

.hero-badge,
.eyebrow {
    display: inline-flex;
    align-items: center;
    width: max-content;
    border-radius: 999px;
    background: var(--blue-600);
    color: var(--white);
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 750;
    letter-spacing: 0.02em;
}

.eyebrow {
    background: var(--blue-100);
    color: var(--blue-700);
}

.hero-content h1 {
    margin: 18px 0 14px;
    font-size: clamp(36px, 6vw, 58px);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -0.04em;
}

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

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

.hero-tags span,
.tag-list span,
.genre-row span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.16);
    color: var(--white);
    font-size: 13px;
}

.tag-list span,
.genre-row span {
    background: var(--blue-50);
    color: var(--blue-700);
}

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

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

.primary-button {
    color: var(--blue-700);
    background: var(--white);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.18);
}

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

.primary-button.light {
    color: var(--blue-700);
    background: var(--white);
}

.ghost-button {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.48);
    background: rgba(255, 255, 255, 0.10);
}

.hero-control {
    position: absolute;
    top: 50%;
    z-index: 20;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--white);
    background: rgba(255, 255, 255, 0.20);
    font-size: 38px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background 0.2s ease;
}

.hero-control:hover {
    background: rgba(255, 255, 255, 0.32);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

.hero-dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
}

.hero-dot.is-active {
    width: 30px;
    border-radius: 999px;
    background: var(--white);
}

.quick-panel {
    display: grid;
    grid-template-columns: 1fr minmax(320px, 430px);
    gap: 28px;
    align-items: center;
    margin-top: -54px;
    border-radius: 26px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    position: relative;
    z-index: 30;
}

.quick-panel h2,
.section-heading h2,
.page-hero h1,
.story-card h2,
.info-card h2,
.cta-band h2 {
    margin: 8px 0 8px;
    color: var(--slate-950);
    line-height: 1.25;
}

.quick-panel h2 {
    font-size: clamp(24px, 4vw, 36px);
}

.quick-panel p,
.section-heading p,
.page-hero p,
.cta-band p,
.story-card p,
.movie-card-body p {
    margin: 0;
    color: var(--slate-600);
}

.hero-search,
.search-box-panel {
    display: flex;
    overflow: hidden;
    border: 1px solid var(--slate-200);
    border-radius: 999px;
    background: var(--white);
}

.hero-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 15px 18px;
}

.hero-search button {
    border: 0;
    padding: 0 24px;
    color: var(--white);
    background: var(--blue-600);
    font-weight: 800;
    cursor: pointer;
}

.section-block {
    margin-top: 58px;
}

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

.section-heading h2 {
    font-size: clamp(24px, 3vw, 34px);
}

.section-heading > a {
    color: var(--blue-600);
    font-weight: 750;
}

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

.category-tile,
.category-section-card,
.story-card,
.info-card,
.ranking-panel,
.search-box-panel,
.ranking-table {
    border: 1px solid var(--slate-200);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--soft-shadow);
}

.category-tile {
    padding: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-tile strong {
    display: block;
    margin-bottom: 8px;
    color: var(--slate-950);
    font-size: 20px;
}

.category-tile span,
.category-samples a {
    display: block;
    color: var(--slate-600);
    font-size: 14px;
}

.category-samples {
    display: grid;
    gap: 5px;
    margin-top: 16px;
}

.category-samples a:hover {
    color: var(--blue-600);
}

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

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

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

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

.poster {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--slate-200);
}

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

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

.duration,
.poster-play {
    position: absolute;
    color: var(--white);
    background: rgba(15, 23, 42, 0.76);
}

.duration {
    right: 10px;
    bottom: 10px;
    border-radius: 8px;
    padding: 4px 8px;
    font-size: 12px;
}

.poster-play {
    top: 50%;
    left: 50%;
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--blue-600);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.88);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

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

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

.movie-title {
    display: -webkit-box;
    min-height: 48px;
    overflow: hidden;
    color: var(--slate-950);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.42;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

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

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0;
    color: var(--slate-500);
    font-size: 13px;
}

.movie-card-body p {
    display: -webkit-box;
    min-height: 44px;
    overflow: hidden;
    font-size: 14px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.movie-card .tag-list {
    margin-top: 12px;
}

.movie-card-compact .movie-card-body p {
    display: none;
}

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

.ranking-panel {
    padding: 20px;
}

.compact-heading {
    margin-bottom: 16px;
}

.compact-heading h2 {
    font-size: 24px;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 30px 74px 1fr;
    gap: 12px;
    align-items: center;
    border-radius: 14px;
    padding: 8px;
    transition: background 0.2s ease;
}

.rank-item:hover {
    background: var(--blue-50);
}

.rank-number {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 50%;
    background: var(--blue-600);
    color: var(--white);
    font-weight: 800;
    font-size: 13px;
}

.rank-item img {
    width: 74px;
    height: 46px;
    object-fit: cover;
    border-radius: 10px;
}

.rank-info strong,
.rank-info em {
    display: block;
}

.rank-info strong {
    overflow: hidden;
    color: var(--slate-950);
    white-space: nowrap;
    text-overflow: ellipsis;
}

.rank-info em {
    color: var(--slate-500);
    font-size: 12px;
    font-style: normal;
}

.cta-band {
    margin-top: 64px;
    margin-bottom: 72px;
    border-radius: 28px;
    padding: 42px 24px;
    text-align: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
    box-shadow: var(--shadow);
}

.cta-band h2 {
    color: var(--white);
    font-size: clamp(26px, 4vw, 38px);
}

.cta-band p {
    margin-bottom: 24px;
    color: #dbeafe;
}

.page-hero {
    padding: 82px 0;
    color: var(--white);
    background:
        radial-gradient(circle at 70% 20%, rgba(96, 165, 250, 0.42), transparent 34%),
        linear-gradient(120deg, var(--blue-950), var(--blue-700));
}

.page-hero h1 {
    margin-top: 14px;
    color: var(--white);
    font-size: clamp(34px, 5vw, 56px);
}

.page-hero p {
    max-width: 720px;
    color: #dbeafe;
    font-size: 18px;
}

.category-overview {
    display: grid;
    gap: 28px;
    margin-top: 46px;
    margin-bottom: 70px;
}

.category-section-card {
    padding: 24px;
}

.two-column-page {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    align-items: start;
}

.sticky-side {
    position: sticky;
    top: 92px;
}

.detail-hero {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    color: var(--white);
    background: var(--blue-950);
}

.detail-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.26;
    filter: blur(1px);
}

.detail-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 75% 15%, rgba(96, 165, 250, 0.45), transparent 34%),
        linear-gradient(90deg, rgba(15, 31, 79, 0.96), rgba(15, 23, 42, 0.68));
}

.detail-hero-content {
    position: relative;
    z-index: 5;
    padding: 44px 0 60px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 36px;
    color: #dbeafe;
    font-size: 14px;
}

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

.detail-layout {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 34px;
    align-items: center;
}

.detail-poster {
    width: 100%;
    aspect-ratio: 3 / 4;
    border: 4px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.detail-info h1 {
    margin: 18px 0 14px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.12;
}

.detail-info p {
    max-width: 760px;
    margin: 0;
    color: #dbeafe;
    font-size: 18px;
}

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

.detail-meta span {
    border-radius: 999px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
    font-size: 13px;
}

.detail-tags span {
    background: rgba(255, 255, 255, 0.16);
    color: var(--white);
}

.player-section {
    margin-top: -42px;
    position: relative;
    z-index: 10;
}

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

.movie-player {
    width: 100%;
    height: 100%;
    background: #020617;
    cursor: pointer;
}

.player-cover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.46;
}

.player-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.20), rgba(15, 23, 42, 0.72));
}

.large-play {
    position: relative;
    z-index: 2;
    display: grid;
    width: 86px;
    height: 86px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--blue-600);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.25);
    font-size: 32px;
    cursor: pointer;
}

.player-message {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 4;
    color: var(--white);
    font-size: 14px;
}

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

.story-card,
.info-card {
    padding: 26px;
}

.story-card h2,
.info-card h2 {
    font-size: 26px;
}

.story-card p {
    margin: 0 0 22px;
    color: var(--slate-700);
    font-size: 16px;
}

.genre-row {
    margin-top: 10px;
}

.info-card dl {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 12px 14px;
    margin: 0;
}

.info-card dt {
    color: var(--slate-500);
}

.info-card dd {
    margin: 0;
    color: var(--slate-800);
    font-weight: 650;
}

.info-card a {
    color: var(--blue-600);
}

.search-box-panel {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) 180px 160px 110px;
    gap: 12px;
    padding: 16px;
    border-radius: 22px;
    margin-bottom: 28px;
}

.search-box-panel input,
.search-box-panel select {
    min-height: 46px;
    border: 1px solid var(--slate-200);
    border-radius: 14px;
    outline: 0;
    padding: 0 14px;
    background: var(--white);
}

.search-box-panel input:focus,
.search-box-panel select:focus {
    border-color: var(--blue-600);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.search-box-panel button {
    border-radius: 14px;
    font-weight: 800;
}

.ranking-table {
    overflow: hidden;
}

.ranking-row {
    display: grid;
    grid-template-columns: 72px 86px minmax(0, 1fr) 100px 120px;
    gap: 14px;
    align-items: center;
    padding: 12px 18px;
    border-bottom: 1px solid var(--slate-200);
    transition: background 0.2s ease;
}

.ranking-row:hover {
    background: var(--blue-50);
}

.ranking-row img {
    width: 86px;
    height: 54px;
    border-radius: 10px;
    object-fit: cover;
}

.ranking-head {
    color: var(--slate-500);
    font-weight: 800;
    background: var(--slate-100);
}

.ranking-head:hover {
    background: var(--slate-100);
}

.ranking-index {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--blue-600);
    font-weight: 900;
}

.ranking-title strong,
.ranking-title em {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ranking-title strong {
    color: var(--slate-950);
}

.ranking-title em {
    color: var(--slate-500);
    font-size: 13px;
    font-style: normal;
}

.site-footer {
    margin-top: 70px;
    padding: 38px 0;
    color: #dbeafe;
    background: var(--slate-950);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
}

.site-footer strong {
    display: block;
    margin-bottom: 8px;
    color: var(--white);
    font-size: 22px;
}

.site-footer p {
    margin: 0;
}

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

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

.back-to-top {
    position: fixed;
    right: 26px;
    bottom: 26px;
    z-index: 100;
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    color: var(--white);
    background: var(--blue-600);
    box-shadow: var(--shadow);
    cursor: pointer;
}

.back-to-top.is-visible {
    display: grid;
    place-items: center;
}

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

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

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

    .sticky-side {
        position: static;
    }
}

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

    .menu-button {
        display: block;
    }

    .hero-carousel {
        height: 560px;
    }

    .hero-content {
        width: min(100% - 64px, 680px);
        left: 32px;
        right: auto;
    }

    .quick-panel {
        grid-template-columns: 1fr;
        margin-top: 0;
        border-radius: 0;
        width: 100%;
    }

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

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

    .detail-poster {
        max-width: 280px;
    }

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

    .ranking-row {
        grid-template-columns: 48px 70px minmax(0, 1fr);
    }

    .ranking-row span:nth-child(4),
    .ranking-row span:nth-child(5),
    .ranking-head span:nth-child(4),
    .ranking-head span:nth-child(5) {
        display: none;
    }

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

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

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

    .brand {
        font-size: 18px;
    }

    .hero-carousel {
        height: 600px;
    }

    .hero-control {
        display: none;
    }

    .hero-content {
        left: 18px;
        width: calc(100% - 36px);
    }

    .hero-actions,
    .page-actions {
        width: 100%;
    }

    .primary-button,
    .ghost-button {
        flex: 1;
    }

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

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

    .detail-info h1 {
        font-size: 34px;
    }

    .player-shell {
        border-radius: 18px;
    }
}
