:root {
    --rose: #e11d48;
    --rose-dark: #be123c;
    --pink: #db2777;
    --orange: #f97316;
    --amber: #f59e0b;
    --text: #1f2937;
    --muted: #6b7280;
    --line: rgba(225, 29, 72, 0.12);
    --soft: #fff7ed;
    --panel: rgba(255, 255, 255, 0.88);
    --shadow: 0 24px 70px rgba(190, 18, 60, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #fff1f2 0%, #ffffff 38%, #fff7ed 100%);
    min-height: 100vh;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(225, 29, 72, 0.12);
}

.nav-shell {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 22px;
    display: grid;
    grid-template-columns: auto 1fr minmax(240px, 320px);
    gap: 22px;
    align-items: center;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    color: var(--rose-dark);
    letter-spacing: 0.02em;
}

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: white;
    background: linear-gradient(135deg, var(--rose), var(--orange));
    box-shadow: 0 10px 28px rgba(225, 29, 72, 0.28);
}

.brand-text {
    white-space: nowrap;
    font-size: 18px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 15px;
    color: #4b5563;
    white-space: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
}

.main-nav::-webkit-scrollbar {
    display: none;
}

.main-nav a {
    padding: 8px 0;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: var(--rose);
}

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    background: #fff1f2;
    cursor: pointer;
}

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

.top-search {
    position: relative;
}

.site-search-input {
    width: 100%;
    height: 42px;
    padding: 0 16px;
    border: 1px solid rgba(225, 29, 72, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--text);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-search-input:focus {
    border-color: rgba(225, 29, 72, 0.52);
    box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.10);
}

.site-search-results {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    max-height: 420px;
    overflow: auto;
    border: 1px solid rgba(225, 29, 72, 0.15);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    padding: 8px;
}

.site-search-results.open {
    display: block;
}

.search-result-item {
    display: block;
    padding: 12px 14px;
    border-radius: 14px;
    transition: background 0.2s ease;
}

.search-result-item:hover {
    background: #fff1f2;
}

.search-result-item strong {
    display: block;
    color: var(--rose-dark);
    margin-bottom: 4px;
}

.search-result-item span {
    display: block;
    font-size: 13px;
    color: var(--muted);
}

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 680px;
    background: linear-gradient(120deg, #fff1f2 0%, #fce7f3 50%, #ffedd5 100%);
}

.hero-bg {
    position: absolute;
    inset: -20% -10% auto -10%;
    height: 640px;
    background:
        radial-gradient(circle at 16% 18%, rgba(244, 63, 94, 0.28), transparent 34%),
        radial-gradient(circle at 84% 22%, rgba(249, 115, 22, 0.22), transparent 32%),
        radial-gradient(circle at 50% 90%, rgba(219, 39, 119, 0.16), transparent 34%);
    filter: blur(8px);
}

.hero-shell {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 76px 22px 64px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 28px;
    align-items: stretch;
}

.hero-slider {
    position: relative;
    min-height: 520px;
    border-radius: 34px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.36);
    box-shadow: var(--shadow);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 32px;
    align-items: center;
    padding: 54px;
    opacity: 0;
    pointer-events: none;
    transform: translateX(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.74)),
        var(--hero-image) center / cover no-repeat;
    z-index: -2;
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.08), rgba(249, 115, 22, 0.16));
    z-index: -1;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(225, 29, 72, 0.10);
    color: var(--rose-dark);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 16px;
}

.hero-copy h1,
.detail-info h1,
.page-hero h1 {
    margin: 0;
    font-weight: 950;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: #111827;
}

.hero-copy h1 {
    max-width: 720px;
    font-size: clamp(42px, 6vw, 76px);
    background: linear-gradient(90deg, var(--rose-dark), var(--pink), var(--orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-copy p {
    max-width: 680px;
    margin: 22px 0;
    color: #4b5563;
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.8;
}

.hero-tags,
.detail-tags,
.movie-tags,
.inline-meta,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tags span,
.detail-tags span,
.movie-tags span,
.inline-meta span,
.detail-meta span {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(225, 29, 72, 0.14);
    color: #7f1d1d;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 700;
}

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

.primary-button,
.ghost-button,
.board-link,
.section-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    font-weight: 850;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
    color: white;
    background: linear-gradient(135deg, var(--rose), var(--orange));
    box-shadow: 0 16px 34px rgba(225, 29, 72, 0.28);
}

.ghost-button,
.section-link,
.board-link {
    color: var(--rose-dark);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(225, 29, 72, 0.18);
}

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

.hero-poster {
    position: relative;
    aspect-ratio: 2 / 3;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(17, 24, 39, 0.24);
    background: linear-gradient(135deg, #ffe4e6, #fed7aa);
}

.hero-poster img,
.detail-poster img,
.poster-frame img,
.ranking-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-poster span {
    position: absolute;
    left: 18px;
    bottom: 18px;
    border-radius: 999px;
    padding: 8px 12px;
    color: white;
    background: rgba(0, 0, 0, 0.46);
    backdrop-filter: blur(12px);
    font-weight: 800;
}

.poster-img.image-missing {
    opacity: 0;
}

.hero-controls {
    position: absolute;
    left: 44px;
    bottom: 34px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-prev,
.hero-next,
.hero-dot {
    border: 0;
    cursor: pointer;
}

.hero-prev,
.hero-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--rose-dark);
    background: rgba(255, 255, 255, 0.84);
    font-size: 24px;
    line-height: 1;
}

.hero-dots {
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(225, 29, 72, 0.26);
}

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

.hero-board,
.rank-card,
.story-card,
.info-card {
    border: 1px solid rgba(225, 29, 72, 0.12);
    border-radius: 28px;
    background: var(--panel);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.hero-board {
    padding: 26px;
    align-self: stretch;
    display: flex;
    flex-direction: column;
}

.hero-board strong,
.rank-heading h2,
.section-heading h2,
.story-card h2,
.info-card h2 {
    margin: 0;
    color: #111827;
}

.hero-small-links {
    display: grid;
    gap: 12px;
    margin: 22px 0;
}

.hero-small-links a {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 18px;
    background: rgba(255, 241, 242, 0.74);
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-small-links a:hover {
    background: #ffe4e6;
    transform: translateX(4px);
}

.hero-small-links span,
.rank-num {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    color: white;
    background: linear-gradient(135deg, var(--rose), var(--orange));
    font-size: 13px;
    font-weight: 900;
}

.content-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 58px 22px;
}

.alt-section {
    max-width: none;
    background: linear-gradient(90deg, rgba(255, 241, 242, 0.74), rgba(255, 247, 237, 0.82));
}

.alt-section > * {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

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

.section-heading h2 {
    font-size: clamp(28px, 3vw, 42px);
    letter-spacing: -0.03em;
}

.section-heading p {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

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

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

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

.movie-card {
    min-width: 0;
}

.movie-card-link {
    display: block;
    height: 100%;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(225, 29, 72, 0.10);
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(17, 24, 39, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card-link:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(190, 18, 60, 0.16);
}

.poster-frame,
.ranking-poster {
    position: relative;
    margin: 0;
    aspect-ratio: 2 / 3;
    background: linear-gradient(135deg, #ffe4e6, #fed7aa);
    overflow: hidden;
}

.poster-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 6px 9px;
    border-radius: 999px;
    color: white;
    background: rgba(0, 0, 0, 0.44);
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

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

.movie-card-body h3 {
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.35;
    color: #111827;
}

.movie-card-body p {
    min-height: 44px;
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.movie-tags span {
    background: #fff1f2;
}

.movie-meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 12px;
    color: #9f1239;
    font-size: 13px;
    font-weight: 800;
}

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

.category-card {
    min-height: 150px;
    padding: 22px;
    border-radius: 26px;
    border: 1px solid rgba(225, 29, 72, 0.12);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 16px 40px rgba(17, 24, 39, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-card span {
    display: block;
    color: var(--rose-dark);
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 10px;
}

.category-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

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

.rank-card {
    padding: 24px;
    position: sticky;
    top: 94px;
}

.rank-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.rank-heading a {
    color: var(--rose-dark);
    font-weight: 800;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255, 241, 242, 0.72);
}

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

.rank-type {
    grid-column: 2;
    color: var(--muted);
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sub-page {
    min-height: 60vh;
}

.page-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, #fff1f2, #fce7f3 48%, #ffedd5);
}

.compact-hero {
    padding: 86px 22px;
}

.page-hero > div {
    max-width: 1180px;
    margin: 0 auto;
}

.page-hero h1 {
    max-width: 860px;
    font-size: clamp(38px, 5vw, 68px);
    background: linear-gradient(90deg, var(--rose-dark), var(--orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.page-hero p {
    max-width: 760px;
    margin: 18px 0 0;
    color: #4b5563;
    font-size: 18px;
    line-height: 1.8;
}

.filter-bar,
.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.filter-chip,
.pagination a,
.pagination span {
    min-height: 38px;
    border: 1px solid rgba(225, 29, 72, 0.16);
    border-radius: 999px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.80);
    color: var(--rose-dark);
    font-weight: 800;
}

.filter-chip {
    cursor: pointer;
}

.filter-chip.active,
.pagination a.active {
    color: white;
    background: linear-gradient(135deg, var(--rose), var(--orange));
}

.movie-card.hidden-by-filter {
    display: none;
}

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

.ranking-item {
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 18px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(225, 29, 72, 0.10);
    box-shadow: 0 12px 34px rgba(17, 24, 39, 0.07);
}

.ranking-poster {
    border-radius: 18px;
}

.ranking-poster span {
    position: absolute;
    left: 8px;
    top: 8px;
    border-radius: 10px;
    padding: 6px 8px;
    color: white;
    background: linear-gradient(135deg, var(--rose), var(--orange));
    font-weight: 900;
    font-size: 12px;
}

.ranking-title {
    display: block;
    color: #111827;
    font-size: 19px;
    font-weight: 900;
    margin: 4px 0 8px;
}

.ranking-item p {
    margin: 0 0 12px;
    color: var(--muted);
    line-height: 1.7;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    padding: 74px 22px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 241, 242, 0.84)),
        var(--detail-image) center / cover no-repeat;
}

.detail-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 16%, rgba(225, 29, 72, 0.20), transparent 34%), radial-gradient(circle at 82% 20%, rgba(249, 115, 22, 0.18), transparent 28%);
}

.detail-shell {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 38px;
    align-items: center;
}

.detail-poster {
    margin: 0;
    aspect-ratio: 2 / 3;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(135deg, #ffe4e6, #fed7aa);
    box-shadow: 0 28px 70px rgba(17, 24, 39, 0.20);
}

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

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

.detail-info h1 {
    font-size: clamp(38px, 5vw, 70px);
}

.detail-info p {
    max-width: 820px;
    color: #4b5563;
    font-size: 18px;
    line-height: 1.8;
}

.player-section {
    padding-top: 48px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    background: #0f172a;
    box-shadow: 0 24px 72px rgba(15, 23, 42, 0.28);
    aspect-ratio: 16 / 9;
}

.movie-player {
    width: 100%;
    height: 100%;
    display: block;
    background: #0f172a;
    object-fit: contain;
}

.play-trigger {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 0;
    border-radius: 999px;
    padding: 16px 24px;
    color: white;
    background: linear-gradient(135deg, var(--rose), var(--orange));
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
    cursor: pointer;
    font-size: 17px;
    font-weight: 900;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.play-trigger:hover {
    transform: translate(-50%, -50%) scale(1.04);
}

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

.play-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
}

.detail-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 28px;
}

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

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

.story-card p {
    color: #374151;
    line-height: 2;
    font-size: 17px;
    margin: 0 0 24px;
}

.info-card dl {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 12px 14px;
    margin: 0;
}

.info-card dt {
    color: var(--muted);
    font-weight: 800;
}

.info-card dd {
    margin: 0;
    color: #111827;
    line-height: 1.6;
}

.site-footer {
    margin-top: 46px;
    border-top: 1px solid rgba(225, 29, 72, 0.12);
    background: rgba(255, 255, 255, 0.78);
}

.footer-shell {
    max-width: 1280px;
    margin: 0 auto;
    padding: 34px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

.footer-shell p {
    max-width: 560px;
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.footer-links {
    display: flex;
    gap: 18px;
    color: var(--muted);
    font-weight: 800;
}

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

@media (max-width: 1160px) {
    .nav-shell {
        grid-template-columns: auto auto;
    }

    .main-nav,
    .top-search {
        grid-column: 1 / -1;
    }

    .hero-shell,
    .two-columns,
    .detail-body {
        grid-template-columns: 1fr;
    }

    .hero-board,
    .rank-card {
        position: static;
    }

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

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

@media (max-width: 820px) {
    .nav-shell {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }

    .brand {
        margin-right: auto;
    }

    .menu-button {
        display: block;
    }

    .main-nav {
        display: none;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        padding: 12px;
        border-radius: 20px;
        background: #fff7ed;
        white-space: normal;
    }

    body.menu-open .main-nav {
        display: flex;
    }

    .top-search {
        width: 100%;
    }

    .hero-section {
        min-height: auto;
    }

    .hero-shell {
        padding-top: 30px;
    }

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

    .hero-slide {
        grid-template-columns: 1fr;
        padding: 28px;
    }

    .hero-poster {
        width: min(260px, 78vw);
        margin: 0 auto 58px;
    }

    .hero-controls {
        left: 28px;
        bottom: 24px;
    }

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

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

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

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

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

@media (max-width: 520px) {
    .content-section,
    .compact-hero,
    .detail-hero {
        padding-left: 16px;
        padding-right: 16px;
    }

    .movie-grid,
    .listing-grid,
    .tight-grid,
    .ranking-list-page,
    .category-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-copy h1,
    .detail-info h1,
    .page-hero h1 {
        letter-spacing: -0.03em;
    }

    .play-trigger {
        padding: 12px 16px;
        font-size: 15px;
    }
}
