:root {
    --bg: #020617;
    --bg-soft: #0f172a;
    --panel: rgba(15, 23, 42, 0.72);
    --panel-strong: rgba(15, 23, 42, 0.92);
    --line: rgba(96, 165, 250, 0.24);
    --text: #f8fafc;
    --muted: #94a3b8;
    --muted-strong: #cbd5e1;
    --blue: #3b82f6;
    --blue-soft: #60a5fa;
    --purple: #8b5cf6;
    --pink: #ec4899;
    --yellow: #facc15;
    --radius: 1.25rem;
    --shadow: 0 24px 80px rgba(15, 23, 42, 0.55);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.2), transparent 35rem),
        radial-gradient(circle at 80% 10%, rgba(139, 92, 246, 0.18), transparent 32rem),
        var(--bg);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled,
.site-header:hover {
    background: rgba(2, 6, 23, 0.94);
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
    box-shadow: 0 12px 40px rgba(2, 6, 23, 0.32);
    backdrop-filter: blur(18px);
}

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

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.site-logo-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: white;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    box-shadow: 0 0 28px rgba(59, 130, 246, 0.55);
}

.site-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.site-logo-text strong {
    font-size: 24px;
    letter-spacing: 0.04em;
}

.site-logo-text em {
    margin-top: 4px;
    color: #bfdbfe;
    font-size: 12px;
    font-style: normal;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    overflow: hidden;
}

.nav-link,
.mobile-nav-link {
    color: rgba(255, 255, 255, 0.86);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link {
    padding: 10px 13px;
    border-radius: 999px;
    font-size: 14px;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link-strong {
    color: white;
    background: rgba(255, 255, 255, 0.11);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 14px;
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: white;
    border-radius: 99px;
}

.mobile-nav {
    display: none;
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto 14px;
    padding: 12px;
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 18px;
    backdrop-filter: blur(16px);
}

.mobile-nav.is-open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.mobile-nav-link {
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
}

.hero-carousel {
    position: relative;
    height: 700px;
    overflow: hidden;
    background: #020617;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.65s ease, visibility 0.65s ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    filter: saturate(1.1) contrast(1.06);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.94) 0%, rgba(2, 6, 23, 0.72) 46%, rgba(2, 6, 23, 0.25) 100%),
        linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.12) 42%, rgba(2, 6, 23, 0.65) 100%),
        radial-gradient(circle at 18% 38%, rgba(59, 130, 246, 0.38), transparent 26rem),
        radial-gradient(circle at 72% 18%, rgba(236, 72, 153, 0.18), transparent 28rem);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    height: 100%;
    margin: 0 auto;
    padding-top: 86px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 14px;
    color: #fde68a;
    background: rgba(250, 204, 21, 0.1);
    border: 1px solid rgba(250, 204, 21, 0.28);
    border-radius: 999px;
    font-weight: 700;
}

.hero-content h1 {
    max-width: 820px;
    margin: 0 0 18px;
    font-size: clamp(42px, 7vw, 78px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.hero-content h1 span {
    display: block;
    margin-top: 10px;
    color: #93c5fd;
    font-size: 0.52em;
    letter-spacing: 0;
}

.hero-content p {
    max-width: 720px;
    margin: 0 0 24px;
    color: #dbeafe;
    font-size: 18px;
    line-height: 1.8;
}

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

.hero-tags span,
.tag-row span,
.detail-tags span {
    display: inline-flex;
    padding: 6px 10px;
    color: #bfdbfe;
    background: rgba(59, 130, 246, 0.18);
    border: 1px solid rgba(96, 165, 250, 0.22);
    border-radius: 999px;
    font-size: 13px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: white;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    box-shadow: 0 18px 42px rgba(59, 130, 246, 0.28);
}

.btn-ghost,
.btn-soft {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
}

.btn-soft {
    color: #dbeafe;
    background: rgba(59, 130, 246, 0.14);
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.36);
    cursor: pointer;
}

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

.search-band {
    margin-top: -1px;
    padding: 26px 0;
    background: linear-gradient(90deg, rgba(30, 64, 175, 0.72), rgba(88, 28, 135, 0.68));
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.search-band-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    align-items: center;
}

.search-band h2 {
    margin: 0 0 8px;
    font-size: clamp(24px, 3vw, 34px);
}

.search-band p {
    margin: 0;
    color: #dbeafe;
}

.home-search,
.filter-bar {
    display: flex;
    gap: 12px;
}

.home-search input,
.filter-bar input,
.filter-bar select {
    width: 100%;
    height: 48px;
    color: white;
    background: rgba(2, 6, 23, 0.62);
    border: 1px solid rgba(191, 219, 254, 0.26);
    border-radius: 999px;
    outline: none;
}

.home-search input,
.filter-bar input {
    padding: 0 18px;
}

.filter-bar select {
    max-width: 180px;
    padding: 0 16px;
}

.home-search button {
    flex: 0 0 auto;
    height: 48px;
    padding: 0 24px;
    color: white;
    background: #2563eb;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
}

.content-section,
.category-strip {
    padding: 72px 0;
}

.dark-section,
.section-alt-0 {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.86), rgba(2, 6, 23, 0.94));
}

.section-alt-1 {
    background: linear-gradient(180deg, rgba(23, 37, 84, 0.5), rgba(15, 23, 42, 0.88));
}

.section-heading {
    margin-bottom: 28px;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 42px);
}

.section-heading p {
    max-width: 760px;
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.8;
}

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

.section-more,
.panel-link {
    color: #93c5fd;
    font-weight: 800;
}

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

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

.movie-card,
.movie-row,
.movie-mini,
.ranking-item,
.category-card-full {
    background: var(--panel);
    border: 1px solid rgba(96, 165, 250, 0.18);
    box-shadow: 0 14px 44px rgba(2, 6, 23, 0.24);
    backdrop-filter: blur(16px);
}

.movie-card {
    overflow: hidden;
    border-radius: var(--radius);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(96, 165, 250, 0.48);
    box-shadow: var(--shadow);
}

.movie-poster-link {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    background: rgba(15, 23, 42, 0.72);
}

.movie-card-large .movie-poster-link {
    aspect-ratio: 16 / 10;
}

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

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

.movie-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 10px;
    color: white;
    background: rgba(2, 6, 23, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

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

.movie-title,
.movie-row-title,
.movie-mini-title,
.ranking-body a,
.category-card-full h2 a {
    display: inline-block;
    color: white;
    font-weight: 900;
    line-height: 1.35;
}

.movie-title:hover,
.movie-row-title:hover,
.movie-mini-title:hover,
.ranking-body a:hover,
.category-card-full h2 a:hover {
    color: #93c5fd;
}

.movie-line,
.movie-row-body p,
.movie-mini p,
.ranking-body p,
.category-card-full p {
    color: var(--muted);
    line-height: 1.65;
}

.movie-line {
    min-height: 50px;
    margin: 8px 0 12px;
    font-size: 14px;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #cbd5e1;
    font-size: 13px;
}

.movie-meta span {
    display: inline-flex;
    align-items: center;
}

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

.category-tile {
    position: relative;
    min-height: 150px;
    overflow: hidden;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    isolation: isolate;
}

.category-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.2));
}

.category-tile img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-tile span {
    font-size: 22px;
    font-weight: 900;
}

.category-tile em {
    margin-top: 6px;
    color: #bfdbfe;
    font-style: normal;
}

.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(300px, 0.82fr);
    gap: 34px;
}

.movie-row-list,
.mini-list,
.ranking-list {
    display: grid;
    gap: 16px;
}

.movie-row {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 18px;
    padding: 14px;
    border-radius: var(--radius);
}

.movie-row-cover,
.movie-mini-cover,
.ranking-cover,
.category-card-image {
    overflow: hidden;
    background: rgba(15, 23, 42, 0.72);
    border-radius: 16px;
}

.movie-row-cover {
    aspect-ratio: 4 / 5;
}

.movie-row-cover img,
.movie-mini-cover img,
.ranking-cover img,
.category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.movie-row-body p {
    margin: 8px 0 12px;
}

.recommend-panel {
    position: sticky;
    top: 96px;
    align-self: start;
    padding: 22px;
    background: rgba(15, 23, 42, 0.58);
    border: 1px solid rgba(139, 92, 246, 0.24);
    border-radius: 26px;
}

.recommend-panel h2,
.detail-side h2 {
    margin: 0 0 18px;
}

.movie-mini {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    padding: 10px;
    border-radius: 16px;
}

.movie-mini-cover {
    aspect-ratio: 2 / 3;
}

.movie-mini p {
    margin: 6px 0 0;
    font-size: 13px;
}

.panel-link {
    display: inline-flex;
    margin-top: 18px;
}

.inner-page {
    min-height: 60vh;
    padding-top: 78px;
}

.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    padding: 86px 0 58px;
    background:
        radial-gradient(circle at 18% 18%, rgba(59, 130, 246, 0.25), transparent 28rem),
        radial-gradient(circle at 86% 6%, rgba(236, 72, 153, 0.16), transparent 30rem),
        linear-gradient(180deg, rgba(15, 23, 42, 0.9), rgba(2, 6, 23, 1));
}

.small-hero {
    padding-bottom: 48px;
}

.page-hero h1 {
    max-width: 880px;
    margin: 0 0 14px;
    font-size: clamp(38px, 6vw, 66px);
}

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

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: #93c5fd;
    font-size: 14px;
}

.breadcrumb a::after {
    content: "/";
    margin-left: 10px;
    color: rgba(203, 213, 225, 0.5);
}

.filter-section {
    padding: 22px 0;
    background: rgba(15, 23, 42, 0.86);
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.filter-bar-wide input {
    flex: 1 1 auto;
}

.empty-result {
    display: none;
    margin: 28px 0 0;
    color: var(--muted);
    text-align: center;
}

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

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

.category-card-full {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 18px;
    padding: 16px;
    border-radius: 24px;
}

.category-card-image {
    aspect-ratio: 4 / 5;
}

.category-card-full h2 {
    margin: 0 0 8px;
}

.category-card-full p {
    margin: 0 0 10px;
}

.category-samples {
    font-size: 14px;
}

.category-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 14px;
    color: #bfdbfe;
    font-weight: 800;
}

.ranking-item {
    display: grid;
    grid-template-columns: 60px 96px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 14px;
    border-radius: 22px;
}

.ranking-number {
    color: #fef3c7;
    font-size: 30px;
    font-weight: 950;
    text-align: center;
}

.ranking-cover {
    aspect-ratio: 2 / 3;
}

.ranking-body p {
    margin: 7px 0 10px;
}

.detail-hero {
    padding: 92px 0 72px;
}

.detail-hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    filter: blur(14px);
    transform: scale(1.06);
}

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

.detail-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.72), #020617 70%);
}

.detail-layout {
    position: relative;
    z-index: 2;
}

.player-shell {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: black;
    border: 1px solid rgba(96, 165, 250, 0.26);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.movie-player {
    width: 100%;
    height: 100%;
    background: black;
    object-fit: contain;
}

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    background:
        linear-gradient(180deg, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.72)),
        rgba(2, 6, 23, 0.18);
    border: 0;
    cursor: pointer;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.play-icon {
    display: grid;
    width: 86px;
    height: 86px;
    place-items: center;
    padding-left: 6px;
    color: white;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    border-radius: 999px;
    box-shadow: 0 22px 44px rgba(37, 99, 235, 0.32);
    font-size: 34px;
}

.player-overlay strong {
    margin-top: 8px;
    font-size: clamp(22px, 4vw, 42px);
}

.player-overlay em {
    color: #cbd5e1;
    font-style: normal;
}

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

.detail-main,
.detail-side {
    padding: 24px;
    background: rgba(15, 23, 42, 0.68);
    border: 1px solid rgba(96, 165, 250, 0.18);
    border-radius: 26px;
    backdrop-filter: blur(14px);
}

.detail-main h1 {
    margin: 0 0 14px;
    font-size: clamp(30px, 5vw, 54px);
    line-height: 1.1;
}

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

.detail-meta span {
    padding: 7px 12px;
    color: #dbeafe;
    background: rgba(59, 130, 246, 0.16);
    border: 1px solid rgba(96, 165, 250, 0.22);
    border-radius: 999px;
    font-size: 14px;
}

.detail-one-line {
    margin: 0 0 24px;
    padding-left: 18px;
    color: #bfdbfe;
    border-left: 4px solid var(--blue);
    font-size: 19px;
    line-height: 1.8;
}

.detail-block {
    margin-top: 26px;
}

.detail-block h2 {
    margin: 0 0 12px;
    font-size: 24px;
}

.detail-block p {
    margin: 0;
    color: #d1d5db;
    line-height: 1.95;
    text-align: justify;
}

.detail-tags {
    margin-top: 26px;
}

.detail-side {
    position: sticky;
    top: 96px;
    align-self: start;
}

.site-footer {
    padding: 46px 0;
    background: #020617;
    border-top: 1px solid rgba(96, 165, 250, 0.16);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 32px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 24px;
    font-weight: 950;
}

.site-footer p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.site-footer h2 {
    margin: 0 0 14px;
    font-size: 18px;
}

.footer-links {
    display: grid;
    gap: 9px;
    color: var(--muted-strong);
}

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

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

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

    .menu-toggle {
        display: block;
    }

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

    .movie-grid-featured,
    .split-grid,
    .detail-grid,
    .footer-grid,
    .search-band-inner {
        grid-template-columns: 1fr;
    }

    .detail-side,
    .recommend-panel {
        position: static;
    }
}

@media (max-width: 760px) {
    .site-header-inner {
        height: 68px;
    }

    .site-logo-text strong {
        font-size: 20px;
    }

    .hero-carousel {
        height: 640px;
    }

    .hero-content {
        padding-top: 72px;
    }

    .hero-content p {
        font-size: 16px;
    }

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

    .movie-grid-featured {
        grid-template-columns: 1fr;
    }

    .movie-row,
    .category-card-full,
    .ranking-item {
        grid-template-columns: 1fr;
    }

    .movie-row-cover,
    .ranking-cover,
    .category-card-image {
        aspect-ratio: 16 / 9;
    }

    .home-search,
    .filter-bar {
        flex-direction: column;
    }

    .filter-bar select {
        max-width: none;
    }

    .content-section,
    .category-strip {
        padding: 48px 0;
    }

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

    .detail-main,
    .detail-side {
        padding: 18px;
    }

    .play-icon {
        width: 68px;
        height: 68px;
        font-size: 26px;
    }

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

@media (max-width: 520px) {
    .movie-grid,
    .category-tile-grid,
    .category-full-grid {
        grid-template-columns: 1fr;
    }

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

    .btn {
        flex: 1 1 100%;
    }

    .mobile-nav.is-open {
        grid-template-columns: 1fr;
    }
}
