:root {
    --page-bg: #fff7ed;
    --surface: #ffffff;
    --surface-soft: #fff1f2;
    --text: #111827;
    --muted: #6b7280;
    --rose: #e11d48;
    --rose-deep: #be123c;
    --orange: #f97316;
    --amber: #f59e0b;
    --line: rgba(15, 23, 42, 0.08);
    --shadow: 0 18px 60px rgba(190, 18, 60, 0.16);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
}

* {
    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:
        radial-gradient(circle at top left, rgba(244, 63, 94, 0.16), transparent 34rem),
        radial-gradient(circle at 85% 20%, rgba(249, 115, 22, 0.12), transparent 28rem),
        linear-gradient(180deg, #fff7ed 0%, #ffffff 42%, #fff7ed 100%);
}

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

img {
    max-width: 100%;
}

.site-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-main {
    flex: 1;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
}

.header-inner {
    width: min(1200px, calc(100% - 32px));
    min-height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--rose), var(--orange), var(--amber));
    box-shadow: 0 14px 30px rgba(225, 29, 72, 0.25);
}

.brand-title {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-title strong {
    font-size: 1.35rem;
    background: linear-gradient(90deg, var(--rose), var(--orange), var(--amber));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-title span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    padding: 10px 14px;
    border-radius: 999px;
    color: #374151;
    font-weight: 700;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--rose-deep);
    background: #fff1f2;
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    background: #fff1f2;
    color: var(--rose-deep);
    font-size: 1.3rem;
}

.mobile-nav {
    display: none;
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto 16px;
    padding: 12px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.mobile-nav.is-open {
    display: grid;
    gap: 8px;
}

.mobile-nav .nav-link {
    display: block;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 680px;
    color: #ffffff;
    background: #111827;
}

.hero-slide {
    display: none;
    position: relative;
    min-height: 680px;
    isolation: isolate;
}

.hero-slide.is-active {
    display: block;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    filter: saturate(1.08);
    z-index: -3;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.94) 0%, rgba(17, 24, 39, 0.70) 45%, rgba(17, 24, 39, 0.18) 100%),
        radial-gradient(circle at 20% 20%, rgba(225, 29, 72, 0.50), transparent 26rem),
        linear-gradient(180deg, rgba(17, 24, 39, 0.2), rgba(17, 24, 39, 0.92));
}

.hero-grid {
    width: min(1200px, calc(100% - 32px));
    min-height: 680px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 420px);
    align-items: center;
    gap: 54px;
    padding: 76px 0;
}

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

.hero-eyebrow,
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    color: #fff7ed;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.hero h1,
.hero h2 {
    margin: 18px 0 18px;
    font-size: clamp(2.4rem, 6vw, 5rem);
    line-height: 0.98;
    letter-spacing: -0.08em;
    font-weight: 950;
}

.hero h2 {
    font-size: clamp(2.2rem, 5vw, 4.4rem);
}

.hero-summary {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
    line-height: 1.9;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0;
}

.hero-meta span,
.meta-pill {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 12px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.86rem;
    font-weight: 700;
}

.hero-actions,
.section-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-top: 26px;
}

.button-primary,
.button-secondary,
.button-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 900;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-secondary {
    color: var(--rose-deep);
    background: #ffffff;
    border-color: rgba(225, 29, 72, 0.14);
}

.button-light {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
}

.button-primary:hover,
.button-secondary:hover,
.button-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(225, 29, 72, 0.26);
}

.hero-search {
    margin-top: 28px;
    display: flex;
    max-width: 580px;
    padding: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(18px);
}

.hero-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    color: #ffffff;
    background: transparent;
    padding: 0 16px;
    font-size: 1rem;
}

.hero-search input::placeholder {
    color: rgba(255, 255, 255, 0.66);
}

.hero-search button {
    border: 0;
}

.hero-poster-wrap {
    position: relative;
}

.hero-poster {
    display: block;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border-radius: 32px;
    background: #111827;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.46);
    transform: rotate(2deg);
}

.hero-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 360ms ease;
}

.hero-poster:hover img {
    transform: scale(1.06);
}

.hero-poster-badge {
    position: absolute;
    left: -18px;
    bottom: 36px;
    padding: 14px 16px;
    border-radius: 18px;
    color: #ffffff;
    background: rgba(225, 29, 72, 0.82);
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
    font-weight: 900;
}

.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 5;
}

.hero-dot {
    width: 11px;
    height: 11px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    transition: width 180ms ease, background 180ms ease;
}

.hero-dot.is-active {
    width: 34px;
    background: #ffffff;
}

.page-section {
    padding: 76px 0;
}

.page-section.compact {
    padding: 46px 0;
}

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

.section-title {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.1;
    letter-spacing: -0.05em;
    font-weight: 950;
}

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

.section-eyebrow {
    color: var(--rose-deep);
    background: #fff1f2;
    border-color: rgba(225, 29, 72, 0.12);
    margin-bottom: 10px;
}

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

.movie-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--line);
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(225, 29, 72, 0.20);
    box-shadow: var(--shadow);
}

.movie-cover {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, #111827, #7f1d1d);
}

.movie-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 280ms ease;
}

.movie-card:hover .movie-cover img {
    transform: scale(1.06);
}

.movie-cover::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 54%;
    background: linear-gradient(180deg, transparent, rgba(17, 24, 39, 0.82));
}

.movie-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 5px 9px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(225, 29, 72, 0.88);
    font-size: 0.75rem;
    font-weight: 900;
}

.movie-year {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 900;
}

.movie-body {
    padding: 16px;
}

.movie-title {
    margin: 0 0 8px;
    font-size: 1rem;
    line-height: 1.35;
    font-weight: 900;
}

.movie-title a:hover {
    color: var(--rose-deep);
}

.movie-line {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 14px;
}

.movie-meta span {
    padding: 4px 8px;
    border-radius: 999px;
    color: var(--rose-deep);
    background: #fff1f2;
    font-size: 0.75rem;
    font-weight: 800;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.category-card {
    position: relative;
    overflow: hidden;
    display: flex;
    min-height: 180px;
    padding: 24px;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 241, 242, 0.92)),
        radial-gradient(circle at top right, rgba(249, 115, 22, 0.16), transparent 14rem);
    border: 1px solid var(--line);
    box-shadow: 0 16px 46px rgba(15, 23, 42, 0.08);
    flex-direction: column;
    justify-content: space-between;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.category-card h2,
.category-card h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 950;
}

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

.category-card span {
    color: var(--rose-deep);
    font-weight: 900;
}

.rank-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 18px;
}

.rank-item {
    display: grid;
    grid-template-columns: 54px 86px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--line);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.rank-num {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--rose), var(--orange));
    font-weight: 950;
}

.rank-thumb {
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 3 / 4;
    background: #111827;
}

.rank-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rank-body h3 {
    margin: 0 0 8px;
    font-size: 1rem;
    font-weight: 950;
}

.rank-body h3 a:hover {
    color: var(--rose-deep);
}

.rank-body p {
    margin: 0;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.6;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 64px;
    color: #ffffff;
    background:
        radial-gradient(circle at 15% 15%, rgba(249, 115, 22, 0.45), transparent 20rem),
        linear-gradient(135deg, #111827 0%, #881337 60%, #ea580c 100%);
}

.page-hero h1 {
    margin: 0;
    font-size: clamp(2.2rem, 5vw, 4.6rem);
    line-height: 1.05;
    letter-spacing: -0.07em;
    font-weight: 950;
}

.page-hero p {
    max-width: 760px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
    line-height: 1.9;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
    font-weight: 800;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) repeat(2, minmax(140px, 180px));
    gap: 12px;
    margin-bottom: 26px;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--line);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
}

.filter-panel input,
.filter-panel select {
    width: 100%;
    height: 46px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 999px;
    outline: 0;
    padding: 0 16px;
    color: var(--text);
    background: #ffffff;
    font-weight: 700;
}

.filter-panel input:focus,
.filter-panel select:focus {
    border-color: rgba(225, 29, 72, 0.45);
    box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.10);
}

.empty-result {
    display: none;
    padding: 26px;
    border-radius: 22px;
    color: var(--muted);
    background: #ffffff;
    border: 1px solid var(--line);
    text-align: center;
    font-weight: 800;
}

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

.detail-hero {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: #111827;
}

.detail-backdrop {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(3px) saturate(1.1);
    transform: scale(1.05);
    opacity: 0.38;
}

.detail-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.96), rgba(17, 24, 39, 0.72)),
        radial-gradient(circle at 20% 15%, rgba(225, 29, 72, 0.28), transparent 24rem);
}

.detail-content {
    position: relative;
    z-index: 2;
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 54px 0 64px;
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
    gap: 42px;
    align-items: end;
}

.detail-cover {
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border-radius: 28px;
    background: #111827;
    box-shadow: 0 32px 70px rgba(0, 0, 0, 0.40);
}

.detail-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-title h1 {
    margin: 0;
    font-size: clamp(2rem, 5vw, 4.6rem);
    line-height: 1.06;
    letter-spacing: -0.07em;
    font-weight: 950;
}

.detail-title p {
    max-width: 760px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
    line-height: 1.85;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.detail-meta span {
    padding: 8px 12px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-weight: 800;
}

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

.content-card {
    padding: 26px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--line);
    box-shadow: 0 16px 46px rgba(15, 23, 42, 0.08);
}

.content-card h2 {
    margin: 0 0 14px;
    font-size: 1.55rem;
    letter-spacing: -0.04em;
    font-weight: 950;
}

.content-card p {
    margin: 0 0 20px;
    color: #374151;
    line-height: 1.95;
}

.content-card p:last-child {
    margin-bottom: 0;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #020617;
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.28);
}

.movie-video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #020617;
}

.player-cover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    color: #ffffff;
    background: rgba(2, 6, 23, 0.24);
    transition: opacity 180ms ease, transform 180ms ease;
}

.player-cover::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.22), rgba(2, 6, 23, 0.56));
}

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

.play-symbol {
    position: relative;
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, var(--rose), var(--orange));
    box-shadow: 0 18px 40px rgba(225, 29, 72, 0.36);
    font-size: 2rem;
    transform: translateZ(0);
}

.player-cover:hover .play-symbol {
    transform: scale(1.06);
}

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

.side-card {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid var(--line);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.side-thumb {
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 3 / 4;
    background: #111827;
}

.side-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.side-card h3 {
    margin: 0 0 6px;
    font-size: 0.92rem;
    font-weight: 950;
    line-height: 1.35;
}

.side-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.78rem;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.tag-cloud span,
.tag-cloud a {
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--rose-deep);
    background: #fff1f2;
    font-size: 0.82rem;
    font-weight: 800;
}

.site-footer {
    margin-top: 40px;
    padding: 46px 0;
    color: #4b5563;
    background: linear-gradient(180deg, #ffffff, #fff7ed);
    border-top: 1px solid var(--line);
}

.footer-grid {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 28px;
}

.footer-grid h2,
.footer-grid h3 {
    margin: 0 0 12px;
    color: #111827;
    font-size: 1.1rem;
    font-weight: 950;
}

.footer-grid p,
.footer-grid a {
    color: #6b7280;
    line-height: 1.8;
}

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

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

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

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

    .hero,
    .hero-slide,
    .hero-grid {
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        padding: 62px 0 86px;
    }

    .hero-poster-wrap {
        max-width: 360px;
        margin: 0 auto;
    }

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

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

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

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

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

@media (max-width: 560px) {
    .header-inner {
        min-height: 66px;
    }

    .brand-title span {
        display: none;
    }

    .hero-search {
        border-radius: 24px;
        flex-direction: column;
        gap: 8px;
    }

    .hero-search input {
        min-height: 44px;
    }

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

    .button-primary,
    .button-secondary,
    .button-light {
        width: 100%;
    }

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

    .movie-body {
        padding: 12px;
    }

    .rank-list {
        grid-template-columns: 1fr;
    }

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