:root {
    color-scheme: dark;
    --page-pad: clamp(14px, 2.5vw, 30px);
    --wrapper-radius: 40px;
    --bg-top: #2f4362;
    --bg-bottom: #0f1824;
    --shell: rgba(38, 56, 83, 0.38);
    --glass: rgba(255, 255, 255, 0.1);
    --glass-strong: rgba(255, 255, 255, 0.14);
    --glass-soft: rgba(255, 255, 255, 0.06);
    --line: rgba(255, 255, 255, 0.18);
    --line-soft: rgba(255, 255, 255, 0.1);
    --text: #f8fbff;
    --muted: rgba(232, 240, 252, 0.74);
    --muted-soft: rgba(214, 226, 242, 0.56);
    --shadow: 0 30px 80px rgba(15, 26, 44, 0.34);
}
* { box-sizing: border-box; }
body {
    margin: 0;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at 16% 16%, rgba(131, 175, 235, 0.26), transparent 24%),
        radial-gradient(circle at 78% 12%, rgba(110, 162, 233, 0.18), transparent 20%),
        radial-gradient(circle at 86% 82%, rgba(93, 126, 186, 0.22), transparent 24%),
        linear-gradient(180deg, var(--bg-top) 0%, #1a2940 40%, var(--bg-bottom) 100%);
    color: var(--text);
    padding: var(--page-pad);
    scrollbar-width: thin;
    scrollbar-color: rgba(167, 204, 255, 0.22) rgba(255, 255, 255, 0.02);
}
body::before,
body::after {
    content: "";
    position: fixed;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(10px);
}
body::before {
    width: 28vw;
    height: 28vw;
    min-width: 240px;
    min-height: 240px;
    top: 10%;
    left: -8%;
    background: radial-gradient(circle, rgba(119, 170, 238, 0.3), rgba(119, 170, 238, 0));
}
body::after {
    width: 34vw;
    height: 34vw;
    min-width: 260px;
    min-height: 260px;
    right: -10%;
    bottom: -6%;
    background: radial-gradient(circle, rgba(95, 129, 189, 0.28), rgba(95, 129, 189, 0));
}
.wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    min-height: calc(100vh - clamp(28px, 5vw, 60px));
    width: min(1440px, 100%);
    margin: 0 auto;
    gap: clamp(18px, 2.2vw, 28px);
    border-radius: var(--wrapper-radius);
    overflow: visible;
    clip-path: inset(0 round var(--wrapper-radius));
    border: 1px solid var(--line-soft);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.03)),
        var(--shell);
    box-shadow: var(--shadow);
    backdrop-filter: blur(36px) saturate(180%);
    -webkit-backdrop-filter: blur(36px) saturate(180%);
}
.wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 34%),
        linear-gradient(315deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0) 28%);
    pointer-events: none;
}
.sidebar {
    position: relative;
    z-index: 1;
    padding: 24px;
    background:
        linear-gradient(180deg, rgba(6, 13, 24, 0.68), rgba(13, 23, 37, 0.42)),
        radial-gradient(circle at top center, rgba(91, 137, 214, 0.16), transparent 44%);
    border-right: 1px solid var(--line-soft);
}
.sidebar-sticky {
    position: sticky;
    top: var(--page-pad);
    max-height: calc(100vh - (var(--page-pad) * 2));
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-right: 4px;
    scrollbar-width: thin;
    scrollbar-color: rgba(167, 204, 255, 0.22) rgba(255, 255, 255, 0.02);
}
.sidebar-sticky::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
.sidebar-sticky::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 999px;
}
.sidebar-sticky::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
    background:
        linear-gradient(180deg, rgba(167, 204, 255, 0.22), rgba(167, 204, 255, 0.22));
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.02);
}
.sidebar-sticky::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
    background:
        linear-gradient(180deg, rgba(167, 204, 255, 0.32), rgba(167, 204, 255, 0.32));
}
.sidebar-card,
.hero-card,
.movie-card,
.search-card,
.pagination-card {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04)),
        rgba(8, 16, 28, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.sidebar-card {
    padding: 18px;
    border-radius: 22px;
    margin-bottom: 16px;
}
.sidebar-logo {
    display: block;
    width: min(100%, 220px);
    margin: 0 auto 18px;
}
.sidebar-title {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1;
    text-align: center;
}
.sidebar-copy {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
    text-align: center;
    font-size: 10px;
}
.search-form {
    display: grid;
    gap: 12px;
}
.sidebar-category-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}
.search-form .button-row {
    justify-content: center;
}
.input,
.select {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
        rgba(8, 16, 28, 0.22);
    color: #fff;
    font: inherit;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    text-decoration: none;
    font-weight: 700;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.38),
        0 14px 28px rgba(71, 94, 136, 0.12);
    cursor: pointer;
}
.button-pill,
.category-chip,
.meta-chip,
.eyebrow {
    border-radius: 999px;
}
.button[hidden],
[hidden] {
    display: none !important;
}
.button[disabled] {
    opacity: 0.45;
    pointer-events: none;
}
.button-primary {
    border-color: rgba(188, 232, 196, 0.78);
    background:
        linear-gradient(180deg, rgba(216, 247, 224, 0.92), rgba(143, 204, 160, 0.58)),
        rgba(255, 255, 255, 0.24);
    color: #183624;
}
.button-rent {
    border-color: rgba(183, 214, 255, 0.78);
    background:
        linear-gradient(180deg, rgba(217, 232, 255, 0.92), rgba(149, 187, 241, 0.58)),
        rgba(255, 255, 255, 0.24);
    color: #122947;
}
.button-in-cart {
    font-weight: 800;
}
.button-primary.button-in-cart,
.button[data-cart-mode="buy"].button-in-cart {
    border-color: rgba(188, 232, 196, 0.8);
    background:
        linear-gradient(180deg, rgba(205, 244, 215, 0.36), rgba(120, 182, 140, 0.14)),
        rgba(33, 73, 48, 0.24);
    box-shadow:
        inset 0 1px 0 rgba(230, 255, 236, 0.35),
        0 0 0 1px rgba(188, 232, 196, 0.22),
        0 0 0 3px rgba(188, 232, 196, 0.14);
    color: #e9fff1;
}
.button-rent.button-in-cart,
.button[data-cart-mode="rent"].button-in-cart {
    border-color: rgba(183, 214, 255, 0.8);
    background:
        linear-gradient(180deg, rgba(209, 228, 255, 0.34), rgba(115, 157, 224, 0.14)),
        rgba(24, 49, 84, 0.28);
    box-shadow:
        inset 0 1px 0 rgba(234, 243, 255, 0.35),
        0 0 0 1px rgba(183, 214, 255, 0.22),
        0 0 0 3px rgba(183, 214, 255, 0.12);
    color: #edf5ff;
}
.button-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.sidebar-section-title {
    margin: 0 0 12px;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}
.cart-status-title {
    margin-bottom: 14px;
}
.content {
    position: relative;
    z-index: 1;
    padding: 20px 20px 20px 0;
    display: grid;
    gap: 18px;
}
.search-card-head {
    display: contents;
}
.search-card-main {
    display: none !important;
}
.catalog-jump {
    position: absolute;
    top: 50%;
    z-index: 12;
    width: 48px;
    min-width: 48px;
    padding: 8px 12px;
    transform: translateY(-50%);
    backdrop-filter: blur(18px) saturate(170%);
    -webkit-backdrop-filter: blur(18px) saturate(170%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.38),
        0 14px 28px rgba(15, 26, 44, 0.28);
}
.catalog-jump.is-placeholder {
    visibility: visible;
    opacity: 0.35;
    pointer-events: none;
}
.hero-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(220px, 290px) minmax(0, 1fr) minmax(220px, 290px);
    gap: 22px;
    padding: 24px;
    border-radius: 30px;
    overflow: visible;
    background:
        linear-gradient(180deg, rgba(14, 24, 39, 0.9), rgba(16, 28, 45, 0.56)),
        radial-gradient(circle at top center, rgba(118, 161, 231, 0.14), transparent 42%);
    align-items: start;
}
.hero-inline-slot {
    grid-column: 1 / -1;
}
.hero-card.is-inline {
    margin-top: 6px;
}
.hero-card > :not(.hero-intro) {
    transition: opacity 220ms ease;
}
.hero-card.is-intro-active > :not(.hero-intro) {
    opacity: 0;
}
.hero-intro {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background:
        linear-gradient(180deg, rgba(10, 16, 26, 0.96), rgba(11, 18, 29, 0.9)),
        radial-gradient(circle at top center, rgba(86, 119, 173, 0.14), transparent 42%);
    border-radius: 30px;
    pointer-events: none;
    opacity: 1;
    transition: opacity 280ms ease, visibility 280ms ease;
}
.hero-intro.is-hidden {
    opacity: 0;
    visibility: hidden;
}
.info-logo-stage {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.info-logo-wrap {
    position: relative;
    width: min(100%, 680px);
    margin: 0 auto;
    transform-origin: center center;
    animation: infoLogoStampKick 420ms cubic-bezier(0.2, 0.9, 0.28, 1.2) 1705ms both;
}
.info-logo {
    display: block;
    width: min(100%, 680px);
    height: auto;
    margin: 0 auto;
    transform-origin: center center;
    animation: infoLogoEntrance 1700ms cubic-bezier(0.16, 0.84, 0.22, 1) both;
}
.info-logo-base {
    animation:
        infoLogoEntrance 1700ms cubic-bezier(0.16, 0.84, 0.22, 1) both,
        logoBaseFadeOut 220ms ease 1760ms forwards;
}
.info-digital-logo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: auto;
    opacity: 0;
    pointer-events: none;
    animation: digitalLogoReveal 240ms ease 1760ms forwards;
}
.hero-poster-wrap {
    position: relative;
}
.hero-poster {
    width: 100%;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}
.hero-poster.is-flippable {
    cursor: pointer;
}
.hero-poster-hint {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -14px;
    margin: 0;
    color: rgba(244, 248, 255, 0.55);
    font-size: 9px;
    line-height: 1.1;
    text-align: center;
    pointer-events: none;
}
.hero-backdrop {
    display: block;
}
.hero-main {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 0;
    padding-bottom: 10px;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 22px;
    padding: 0 10px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(236, 248, 255, 0.96), rgba(190, 229, 255, 0.92));
    border: 1px solid rgba(235, 246, 255, 0.98);
    color: #16324f;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
#newsHeroBadge {
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
    justify-content: center;
    align-self: center;
    width: min(100%, 420px);
    min-height: 42px;
    padding: 6px 14px;
    margin-top: -46px;
    margin-bottom: 10px;
    text-transform: none;
    letter-spacing: 0;
    text-align: center;
    position: relative;
    z-index: 2;
}
#newsHeroBadge .hero-badge-filter {
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    color: #111;
}
#newsHeroBadge .hero-badge-summary {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
    color: #111;
}
.hero-title {
    margin: 14px 0 12px;
    font-size: clamp(30px, 4vw, 28px);
    line-height: 0.95;
}
.hero-copy {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}
.hero-meta,
.movie-meta,
.pagination-row,
.pagination-summary {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.hero-meta {
    margin-bottom: 14px;
}
.hero-stars {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    margin: 10px 0 14px;
}
.hero-actions {
    justify-content: center;
    margin-top: 4px;
}
.hero-actions .button {
    min-width: 120px;
    min-height: 38px;
}
.hero-stars .button {
    min-height: 28px;
    padding: 4px 6px;
    font-size: 11px;
    line-height: 1.1;
}
.meta-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(244, 248, 255, 0.82);
    font-size: 13px;
}
.search-card,
.pagination-card {
    position: relative;
    padding: 16px 18px;
    border-radius: 24px;
}
.search-card-head {
    display: contents;
}
.search-card-head > div:first-child {
    min-width: 0;
}
.search-card-main {
    display: none !important;
}
.search-card-title {
    margin: 0;
    font-size: 20px;
    line-height: 1;
}
.search-card-filter-detail {
    color: var(--muted);
    font-size: 16px;
    font-weight: 500;
}
.search-card-copy {
    margin: 0;
    color: var(--muted);
    white-space: nowrap;
}
.category-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.category-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 11px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.06);
    font-size: 12px;
}
.category-chip.active,
.pagination-page.active {
    background:
        linear-gradient(180deg, rgba(148, 191, 255, 0.22), rgba(255, 255, 255, 0.06)),
        rgba(24, 42, 71, 0.44);
    border-color: rgba(140, 188, 255, 0.52);
}
.movies-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}
.movie-card {
    display: flex;
    flex-direction: column;
    padding: 10px;
    border-radius: 20px;
    height: 100%;
}
.movie-poster {
    display: block;
    width: min(100%, 160px);
    max-width: 160px;
    height: auto;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
    margin: 0 auto;
    cursor: pointer;
}
.movie-badge {
    display: none;
    align-items: center;
    justify-content: center;
    min-height: 22px;
    padding: 0 10px;
    margin-top: 10px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(236, 248, 255, 0.96), rgba(190, 229, 255, 0.92));
    border: 1px solid rgba(235, 246, 255, 0.98);
    color: #16324f;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.movie-title {
    margin: 10px 0 6px;
    font-size: 17px;
    line-height: 1.15;
}
.movie-description {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.movie-meta {
    margin: 10px 0;
}
.movie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: auto;
    padding-top: 12px;
}
.movie-actions .button {
    width: 100%;
    min-height: 38px;
    font-size: 13px;
}
.empty-state,
.loading-state,
.error-state {
    padding: 28px;
    border-radius: 28px;
    text-align: center;
    color: var(--muted);
}
.pagination-card {
    display: grid;
    gap: 14px;
}
.pagination-row {
    align-items: center;
    justify-content: center;
}
.pagination-summary {
    justify-content: center;
    color: var(--muted);
    font-size: 14px;
}
.pagination-page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    cursor: pointer;
}
.cart-list {
    display: grid;
    gap: 10px;
}
.cart-item {
    position: relative;
    padding: 0 34px 0 0;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    overflow: hidden;
}
.cart-item.is-buy {
    border-color: rgba(188, 232, 196, 0.5);
    background:
        linear-gradient(180deg, rgba(205, 244, 215, 0.14), rgba(120, 182, 140, 0.06)),
        rgba(33, 73, 48, 0.18);
    box-shadow:
        inset 0 1px 0 rgba(230, 255, 236, 0.2),
        0 0 0 1px rgba(188, 232, 196, 0.12),
        0 0 20px rgba(120, 182, 140, 0.12);
}
.cart-item.is-rent {
    border-color: rgba(183, 214, 255, 0.5);
    background:
        linear-gradient(180deg, rgba(209, 228, 255, 0.14), rgba(115, 157, 224, 0.06)),
        rgba(24, 49, 84, 0.18);
    box-shadow:
        inset 0 1px 0 rgba(234, 243, 255, 0.2),
        0 0 0 1px rgba(183, 214, 255, 0.12),
        0 0 20px rgba(115, 157, 224, 0.12);
}
.cart-item-main {
    display: contents;
    min-width: 0;
    cursor: pointer;
}
.cart-item-thumb {
    width: 36px;
    height: 50px;
    max-width: none;
    border-radius: 0;
    object-fit: cover;
    display: block;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}
.cart-item-remove {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 20px;
    min-width: 20px;
    min-height: 20px;
    padding: 0;
    border-radius: 999px;
    font-size: 11px;
    line-height: 1;
}
.cart-item-title {
    margin: 0;
    font-size: 12px;
    line-height: 1.2;
}
.slider-wrap {
    display: grid;
    gap: 8px;
}
.slider-label {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    text-align: center;
}
.slider {
    width: 100%;
}
@keyframes infoLogoEntrance {
    0% {
        opacity: 0;
        transform: translateY(0) scale(1.75);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}
@keyframes infoLogoStampKick {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }
    40% {
        transform: translateY(10px) scale(0.96);
    }
    75% {
        transform: translateY(-4px) scale(1.02);
    }
}
@keyframes logoBaseFadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes digitalLogoReveal {
    0% {
        opacity: 0;
        filter: blur(1px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
    }
}
@media (max-width: 1320px) {
    .hero-card {
        grid-template-columns: minmax(220px, 290px) minmax(0, 1fr);
    }
    .hero-backdrop {
        display: none;
    }
    .hero-main {
        padding-bottom: 10px;
    }
    .hero-stars {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}
@media (max-width: 1180px) {
    .wrapper {
        grid-template-columns: 1fr;
        clip-path: none;
    }
    .sidebar {
        border-right: 0;
        border-bottom: 1px solid var(--line-soft);
    }
    .sidebar-sticky {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: start;
        gap: 16px;
        position: static;
        top: auto;
        max-height: none;
        overflow: visible;
        padding-right: 0;
    }
    .sidebar-card {
        margin-bottom: 0;
    }
    .sidebar-footer-action {
        grid-column: 1 / -1;
    }
    .content {
        padding: 0 18px 18px;
    }
}
@media (max-width: 920px) {
    .sidebar-sticky {
        grid-template-columns: 1fr;
    }
    .sidebar-footer-action {
        grid-column: auto;
    }
    .hero-card {
        grid-template-columns: 1fr;
    }
    .hero-main {
        padding-bottom: 10px;
    }
    .movies-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .hero-stars {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (max-width: 640px) {
    :root {
        --page-pad: 10px;
        --wrapper-radius: 28px;
    }
    body {
        padding: var(--page-pad);
    }
    .wrapper {
        border-radius: var(--wrapper-radius);
    }
    .sidebar,
    .content {
        padding: 18px;
    }
    .hero-card,
    .search-card,
    .pagination-card {
        border-radius: 24px;
    }
    .movies-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .button-row,
    .movie-actions {
        flex-direction: column;
    }
    .movie-description {
        -webkit-line-clamp: 2;
    }
    .movie-actions {
        gap: 8px;
    }
    .movie-actions .button {
        min-height: 36px;
        padding: 6px 14px;
        border-radius: 10px;
        font-size: 12px;
        flex: 1 1 auto;
    }
    .hero-stars {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
