:root {
    --orange: #f97316;
    --pink: #ec4899;
    --yellow: #eab308;
    --purple: #8b5cf6;
    --blue: #3b82f6;
    --green: #22c55e;
    --cyan: #06b6d4;
    --red: #ef4444;
    --rose: #f43f5e;
    --slate: #475569;
    --text: #1f2937;
    --muted: #6b7280;
    --card: #ffffff;
    --line: rgba(15, 23, 42, 0.08);
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.13);
    --soft-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    background: linear-gradient(135deg, #fff7ed 0%, #fdf2f8 48%, #fefce8 100%);
}

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

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

main {
    min-height: 60vh;
}

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

.header-inner {
    max-width: 1220px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.brand-mark {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    box-shadow: 0 12px 25px rgba(236, 72, 153, 0.28);
    transition: transform 0.25s ease;
}

.brand:hover .brand-mark {
    transform: scale(1.08) rotate(-5deg);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-text strong {
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(90deg, var(--orange), var(--pink), var(--yellow));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
}

.brand-text small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 10px 15px;
    border-radius: 14px;
    color: #4b5563;
    font-weight: 700;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--orange);
    background: #ffedd5;
    transform: translateY(-1px);
}

.mobile-trigger {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: #fff7ed;
    cursor: pointer;
    padding: 10px;
}

.mobile-trigger span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--orange);
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    padding: 0 20px 16px;
    background: rgba(255, 255, 255, 0.96);
}

.mobile-nav a {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    color: #4b5563;
    font-weight: 700;
}

body.nav-open .mobile-nav {
    display: block;
}

.hero-section {
    position: relative;
    min-height: 70vh;
    overflow: hidden;
    color: #fff;
}

.hero-bg,
.detail-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img,
.detail-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
}

.hero-mask,
.detail-bg span {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 20%, rgba(249, 115, 22, 0.24), transparent 35%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.55) 52%, rgba(0, 0, 0, 0.12));
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1220px;
    min-height: 70vh;
    margin: 0 auto;
    padding: 70px 20px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    align-items: center;
    gap: 42px;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: #fb923c;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-copy h1 {
    margin: 0 0 12px;
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.hero-copy h2 {
    margin: 0 0 18px;
    color: #ffedd5;
    font-size: clamp(26px, 3vw, 44px);
}

.hero-copy p {
    max-width: 620px;
    margin: 0 0 24px;
    color: #e5e7eb;
    font-size: 18px;
    line-height: 1.75;
}

.hero-meta,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.hero-meta span,
.detail-meta span {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    color: #f9fafb;
    background: rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(10px);
    font-size: 13px;
    font-weight: 700;
}

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

.primary-btn,
.ghost-btn,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
    color: #fff;
    background: linear-gradient(90deg, var(--orange), var(--pink));
    box-shadow: 0 14px 30px rgba(249, 115, 22, 0.28);
}

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

.ghost-btn {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.ghost-btn.dark {
    color: var(--text);
    border-color: rgba(15, 23, 42, 0.1);
    background: rgba(255, 255, 255, 0.72);
}

.text-link {
    min-height: 38px;
    padding: 9px 16px;
    color: var(--orange);
    background: #fff7ed;
}

.hero-panel {
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(18px);
}

.hero-panel h2 {
    margin: 0 0 16px;
    font-size: 22px;
}

.hero-focus-card {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 14px;
    align-items: center;
    padding: 10px;
    border-radius: 18px;
    color: #fff;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-focus-card:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateX(4px);
}

.hero-focus-card img {
    width: 92px;
    height: 62px;
    border-radius: 14px;
    object-fit: cover;
}

.hero-focus-card strong,
.hero-focus-card em {
    display: block;
}

.hero-focus-card strong {
    margin-bottom: 6px;
    font-size: 15px;
}

.hero-focus-card em {
    color: #e5e7eb;
    font-size: 12px;
    font-style: normal;
}

.quick-search {
    max-width: 1220px;
    margin: -34px auto 0;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.search-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.search-form input,
.search-toolbar input,
.search-toolbar select,
.inline-search input {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 0 16px;
    outline: 0;
    color: var(--text);
    background: #fff;
    font-size: 15px;
}

.search-form input:focus,
.search-toolbar input:focus,
.search-toolbar select:focus,
.inline-search input:focus {
    border-color: rgba(249, 115, 22, 0.55);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.search-form button {
    border: 0;
    border-radius: 16px;
    padding: 0 28px;
    color: #fff;
    cursor: pointer;
    font-weight: 900;
    background: linear-gradient(90deg, var(--orange), var(--pink));
}

.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.quick-links a {
    padding: 8px 13px;
    border-radius: 999px;
    color: #9a3412;
    background: #ffedd5;
    font-weight: 800;
    font-size: 13px;
}

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

.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 28px;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 900;
    line-height: 1.1;
    background: linear-gradient(90deg, var(--orange), var(--pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.section-heading.light h2,
.section-heading.light a {
    color: #fff;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

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

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

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

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

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

.poster-wrap {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #111827;
}

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

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

.poster-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.24);
    opacity: 0;
    transition: opacity 0.25s ease;
}

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

.play-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: rgba(249, 115, 22, 0.92);
    transform: translate(-50%, -50%) scale(0.86);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.duration-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    padding: 5px 9px;
    border-radius: 999px;
    color: #fff;
    background: rgba(249, 115, 22, 0.92);
    font-size: 12px;
    font-weight: 900;
}

.card-body {
    padding: 18px;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

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

.card-body h3 a:hover {
    color: var(--orange);
}

.card-body p {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.tag-row span {
    padding: 5px 9px;
    border-radius: 999px;
    color: #9a3412;
    background: #ffedd5;
    font-size: 12px;
    font-weight: 800;
}

.big-tags span {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

.category-band {
    padding: 58px 20px;
    background: linear-gradient(90deg, var(--orange), var(--pink), var(--yellow));
}

.category-band .section-heading,
.category-band .category-grid {
    max-width: 1220px;
    margin-left: auto;
    margin-right: auto;
}

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

.category-chip {
    display: block;
    min-height: 142px;
    padding: 22px;
    border-radius: 24px;
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 15px 32px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(14px);
    transition: transform 0.2s ease, background 0.2s ease;
}

.category-chip:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.22);
}

.category-chip strong,
.category-chip span {
    display: block;
}

.category-chip strong {
    margin-bottom: 10px;
    font-size: 21px;
}

.category-chip span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.65;
}

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

.ranking-card,
.story-card,
.side-card,
.wide-ranking {
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--soft-shadow);
}

.ranking-card {
    position: sticky;
    top: 92px;
    padding: 22px;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 44px 70px 1fr;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 18px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.rank-item:hover {
    background: #fff7ed;
    transform: translateX(4px);
}

.rank-number {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--orange), var(--pink));
}

.rank-item img {
    width: 70px;
    height: 70px;
    border-radius: 14px;
    object-fit: cover;
}

.rank-copy {
    min-width: 0;
}

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

.rank-copy strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-copy em {
    margin-top: 5px;
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
}

.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
}

.page-hero {
    max-width: 1220px;
    margin: 34px auto 0;
    min-height: 330px;
    padding: 46px;
    border-radius: 32px;
    display: grid;
    grid-template-columns: 1fr 320px;
    align-items: center;
    gap: 32px;
    background: linear-gradient(135deg, #fff, #fff7ed 55%, #fdf2f8);
    box-shadow: var(--shadow);
}

.simple-hero {
    display: block;
}

.page-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.08;
}

.page-hero p {
    max-width: 740px;
    margin: 0 0 24px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

.page-hero img {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 14px;
    color: #fb923c;
    font-size: 13px;
    font-weight: 900;
}

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

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

.category-overview-card {
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 20px;
    padding: 18px;
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--soft-shadow);
}

.category-cover img {
    width: 100%;
    height: 160px;
    border-radius: 22px;
    object-fit: cover;
}

.category-overview-card h2 {
    margin: 0 0 10px;
    font-size: 26px;
}

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

.category-preview-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.category-preview-links a {
    padding: 6px 10px;
    border-radius: 999px;
    color: #9a3412;
    background: #ffedd5;
    font-size: 12px;
    font-weight: 800;
}

.inline-search {
    min-width: 280px;
}

.inline-search span,
.search-toolbar span {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
}

.search-toolbar {
    display: grid;
    grid-template-columns: 1fr 220px 160px;
    gap: 16px;
    margin-bottom: 28px;
    padding: 18px;
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--soft-shadow);
}

.ranking-layout {
    display: grid;
    grid-template-columns: 430px minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.wide-ranking {
    position: sticky;
    top: 92px;
    padding: 22px;
}

.large-rank-list .rank-item {
    grid-template-columns: 48px 84px 1fr;
}

.large-rank-list .rank-item img {
    width: 84px;
    height: 84px;
}

.detail-hero {
    min-height: 520px;
    color: #fff;
}

.detail-inner {
    position: relative;
    z-index: 1;
    max-width: 1220px;
    margin: 0 auto;
    padding: 54px 20px 64px;
}

.detail-grid {
    display: grid;
    grid-template-columns: 310px 1fr;
    gap: 34px;
    align-items: center;
}

.detail-cover {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 28px;
    object-fit: cover;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
}

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

.detail-lead {
    max-width: 760px;
    margin: 0 0 22px;
    color: #e5e7eb;
    font-size: 18px;
    line-height: 1.8;
}

.watch-section {
    max-width: 1220px;
    margin: -58px auto 0;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #050505;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.32);
    aspect-ratio: 16 / 9;
}

.movie-player {
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
}

.player-start {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 0;
    color: #fff;
    cursor: pointer;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.28), rgba(0, 0, 0, 0.36) 42%, rgba(0, 0, 0, 0.62));
}

.player-start span {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    box-shadow: 0 15px 34px rgba(236, 72, 153, 0.32);
    font-size: 28px;
}

.player-start strong {
    font-size: 18px;
}

.player-shell.is-playing .player-start {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

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

.story-card h2,
.side-card h2 {
    margin: 0 0 16px;
    font-size: 24px;
}

.story-card p {
    margin: 0 0 24px;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.95;
}

.side-card dl {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 12px;
    margin: 0;
}

.side-card dt {
    color: var(--muted);
    font-weight: 900;
}

.side-card dd {
    margin: 0;
    color: var(--text);
}

.compact-card .card-body h3 {
    font-size: 16px;
}

.compact-card .card-body p {
    font-size: 13px;
}

.site-footer {
    margin-top: 50px;
    color: #fff;
    background: linear-gradient(90deg, #ea580c, #db2777, #ca8a04);
}

.footer-grid {
    max-width: 1220px;
    margin: 0 auto;
    padding: 42px 20px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 30px;
}

.site-footer h2,
.site-footer h3 {
    margin: 0 0 16px;
}

.site-footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.82);
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1220px;
    margin: 0 auto;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.78);
    text-align: center;
    font-size: 13px;
}

.hidden-card {
    display: none !important;
}

@media (max-width: 1100px) {
    .hero-inner,
    .two-column-section,
    .ranking-layout,
    .detail-content {
        grid-template-columns: 1fr;
    }

    .hero-panel,
    .ranking-card,
    .wide-ranking {
        position: static;
    }

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

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

    .mobile-trigger {
        display: block;
    }

    .hero-inner {
        min-height: auto;
        padding: 54px 20px 90px;
    }

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

    .hero-panel {
        display: none;
    }

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

    .page-hero,
    .detail-grid,
    .category-overview-card,
    .search-toolbar {
        grid-template-columns: 1fr;
    }

    .page-hero {
        margin: 20px;
        padding: 30px;
    }

    .detail-grid {
        align-items: start;
    }

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

@media (max-width: 560px) {
    .brand-text strong {
        font-size: 20px;
    }

    .brand-text small {
        display: none;
    }

    .hero-actions,
    .section-heading,
    .quick-links {
        align-items: stretch;
        flex-direction: column;
    }

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

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

    .rank-item {
        grid-template-columns: 40px 62px 1fr;
    }

    .rank-item img {
        width: 62px;
        height: 62px;
    }

    .content-section,
    .category-band {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .watch-section {
        margin-top: -34px;
    }

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