:root {
    --slate-950: #020617;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --blue-900: #1e3a8a;
    --blue-700: #1d4ed8;
    --blue-600: #2563eb;
    --blue-500: #3b82f6;
    --cyan-500: #06b6d4;
    --teal-500: #14b8a6;
    --emerald-500: #10b981;
    --orange-500: #f97316;
    --rose-500: #f43f5e;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-900: #0f172a;
    --white: #ffffff;
    --shadow-md: 0 12px 28px rgba(15, 23, 42, 0.12);
    --shadow-xl: 0 22px 60px rgba(15, 23, 42, 0.18);
    --radius-xl: 1rem;
    --radius-2xl: 1.25rem;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--gray-50);
    color: var(--gray-900);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, var(--slate-900), var(--blue-900), var(--slate-900));
    box-shadow: 0 14px 30px rgba(2, 6, 23, 0.22);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    min-height: 70px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    color: var(--white);
}

.brand-icon {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--blue-500), var(--cyan-500));
    box-shadow: 0 12px 24px rgba(59, 130, 246, 0.35);
    font-size: 15px;
}

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

.brand-text strong {
    font-size: 22px;
    letter-spacing: 0.02em;
}

.brand-text small {
    color: #93c5fd;
    font-size: 12px;
    margin-top: 3px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 9px 14px;
    color: #e2e8f0;
    transition: 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.header-search {
    display: flex;
    align-items: center;
    width: min(320px, 30vw);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.72);
    overflow: hidden;
}

.header-search input,
.mobile-search input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    color: var(--white);
    background: transparent;
    padding: 10px 12px 10px 16px;
}

.header-search input::placeholder,
.mobile-search input::placeholder {
    color: #94a3b8;
}

.header-search button,
.mobile-search button {
    border: 0;
    color: var(--white);
    background: var(--blue-600);
    padding: 10px 16px;
    cursor: pointer;
    transition: 0.2s ease;
}

.header-search button:hover,
.mobile-search button:hover {
    background: var(--cyan-500);
}

.mobile-toggle {
    display: none;
    margin-left: auto;
    border: 0;
    border-radius: 10px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    padding: 8px 12px;
    cursor: pointer;
}

.mobile-panel {
    display: none;
    border-top: 1px solid rgba(148, 163, 184, 0.25);
    padding: 16px;
    background: rgba(15, 23, 42, 0.96);
}

.mobile-panel.is-open {
    display: block;
}

.mobile-panel nav {
    display: grid;
    gap: 8px;
    margin-top: 14px;
}

.mobile-panel nav a {
    color: #e2e8f0;
    border-radius: 10px;
    padding: 10px 12px;
}

.mobile-panel nav a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-search {
    display: flex;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.55);
}

.hero {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(135deg, var(--slate-900), var(--blue-900) 52%, #164e63);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-slide.is-active {
    opacity: 1;
    z-index: 1;
}

.hero-slide__bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    opacity: 0.2;
    transform: scale(1.05);
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 75% 32%, rgba(6, 182, 212, 0.34), transparent 32%),
        linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(15, 23, 42, 0.62), rgba(15, 23, 42, 0.2));
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 90px 0 120px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(125, 211, 252, 0.35);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 14px;
    color: #bfdbfe;
    backdrop-filter: blur(16px);
}

.hero h1 {
    max-width: 760px;
    margin: 24px 0 18px;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.hero h1 span {
    display: block;
    color: transparent;
    background: linear-gradient(90deg, #60a5fa, #22d3ee);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero p {
    max-width: 700px;
    margin: 0;
    color: #dbeafe;
    font-size: clamp(17px, 2vw, 22px);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 999px;
    padding: 13px 22px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.22s ease;
}

.btn-primary {
    color: var(--white);
    background: var(--blue-500);
    box-shadow: 0 16px 30px rgba(59, 130, 246, 0.32);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    background: var(--blue-600);
}

.btn-glass {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.hero-meta span {
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.5);
    color: #e0f2fe;
    padding: 7px 12px;
    font-size: 14px;
}

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

.hero-dot {
    width: 34px;
    height: 4px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: 0.2s ease;
}

.hero-dot.is-active {
    width: 54px;
    background: var(--white);
}

.hero-fade {
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: 0;
    left: 0;
    height: 140px;
    background: linear-gradient(0deg, var(--gray-50), transparent);
}

.section {
    padding: 70px 0;
}

.section-soft {
    background: linear-gradient(90deg, #ecfdf5, #f0fdfa);
}

.section-blue {
    background: linear-gradient(180deg, #eff6ff, #ecfeff);
}

.section-dark {
    color: var(--white);
    background: linear-gradient(90deg, var(--slate-900), var(--blue-900), var(--slate-900));
}

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

.section-title {
    margin: 0;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.2;
}

.section-desc {
    max-width: 720px;
    margin: 10px 0 0;
    color: var(--gray-600);
}

.section-dark .section-desc {
    color: #cbd5e1;
}

.more-link {
    color: var(--blue-600);
    font-weight: 700;
    white-space: nowrap;
}

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

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

.movie-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
    transition: 0.26s ease;
}

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

.movie-card__poster {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, var(--slate-800), var(--blue-900));
}

.movie-card__poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

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

.movie-card__poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.12);
    opacity: 0;
    transition: 0.2s ease;
}

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

.movie-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 999px;
    color: var(--white);
    background: rgba(37, 99, 235, 0.86);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.88);
    transition: 0.22s ease;
}

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

.movie-card__type,
.rank-badge {
    position: absolute;
    z-index: 3;
    border-radius: 999px;
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    padding: 7px 9px;
}

.movie-card__type {
    top: 10px;
    right: 10px;
    background: var(--blue-500);
}

.rank-badge {
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, var(--orange-500), var(--rose-500));
}

.movie-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 16px;
}

.movie-card__title {
    display: -webkit-box;
    min-height: 48px;
    overflow: hidden;
    color: var(--gray-900);
    font-weight: 800;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.movie-card__title:hover {
    color: var(--blue-600);
}

.movie-card__desc {
    display: -webkit-box;
    min-height: 45px;
    overflow: hidden;
    margin: 10px 0 12px;
    color: var(--gray-600);
    font-size: 14px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.movie-card__meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    color: var(--gray-500);
    font-size: 13px;
}

.movie-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.movie-card__tags span {
    border-radius: 999px;
    background: #eff6ff;
    color: var(--blue-700);
    padding: 4px 8px;
    font-size: 12px;
}

.horizontal-strip {
    display: grid;
    grid-auto-columns: minmax(260px, 1fr);
    grid-auto-flow: column;
    gap: 18px;
    overflow-x: auto;
    padding: 6px 4px 18px;
    scroll-snap-type: x mandatory;
}

.horizontal-strip .movie-card {
    scroll-snap-align: start;
}

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

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 190px;
    border-radius: var(--radius-2xl);
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-600), var(--cyan-500));
    padding: 22px;
    box-shadow: var(--shadow-md);
}

.category-card::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    right: -50px;
    bottom: -50px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
}

.category-card:nth-child(2n) {
    background: linear-gradient(135deg, var(--emerald-500), var(--teal-500));
}

.category-card:nth-child(3n) {
    background: linear-gradient(135deg, var(--orange-500), var(--rose-500));
}

.category-card strong {
    position: relative;
    z-index: 1;
    display: block;
    font-size: 22px;
    margin-bottom: 8px;
}

.category-card span,
.category-card p {
    position: relative;
    z-index: 1;
}

.category-card p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
}

.filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    background: var(--white);
    padding: 16px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
    margin-bottom: 28px;
}

.filter-bar input,
.filter-bar select,
.search-panel input,
.search-panel select {
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    background: var(--white);
    color: var(--gray-900);
    outline: 0;
    padding: 11px 12px;
}

.filter-bar input:focus,
.filter-bar select:focus,
.search-panel input:focus,
.search-panel select:focus {
    border-color: var(--blue-500);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}

.filter-status {
    color: var(--gray-500);
    font-size: 14px;
}

.page-hero {
    color: var(--white);
    background: linear-gradient(90deg, var(--blue-600), var(--cyan-500), var(--teal-500));
    padding: 72px 0;
}

.page-hero h1 {
    margin: 0 0 12px;
    font-size: clamp(36px, 5vw, 56px);
    letter-spacing: -0.04em;
}

.page-hero p {
    max-width: 760px;
    margin: 0;
    color: #e0f2fe;
    font-size: 19px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--gray-500);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--blue-600);
}

.watch-wrap {
    background: linear-gradient(180deg, var(--slate-950), var(--slate-900));
    color: var(--white);
    padding: 34px 0 50px;
}

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

.video-shell {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #000;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
    aspect-ratio: 16 / 9;
}

.movie-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: grid;
    place-items: center;
    border: 0;
    color: var(--white);
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.72));
    cursor: pointer;
}

.play-overlay span {
    display: grid;
    width: 92px;
    height: 92px;
    place-items: center;
    border-radius: 999px;
    background: var(--blue-500);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.38);
    font-size: 32px;
    transition: 0.22s ease;
}

.play-overlay:hover span {
    transform: scale(1.08);
    background: var(--cyan-500);
}

.play-overlay.is-hidden {
    display: none;
}

.watch-side {
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.78);
    padding: 24px;
}

.watch-side img {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    object-fit: cover;
    margin-bottom: 18px;
}

.watch-side h1 {
    margin: 0 0 12px;
    font-size: 30px;
    line-height: 1.2;
}

.watch-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0;
}

.watch-meta span {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #dbeafe;
    padding: 7px 10px;
    font-size: 13px;
}

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

.content-card,
.side-card {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    padding: 24px;
}

.content-card + .content-card {
    margin-top: 22px;
}

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

.content-card p {
    margin: 0;
    color: var(--gray-700);
    font-size: 17px;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-list a,
.tag-list span {
    border-radius: 999px;
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 7px 12px;
    font-size: 14px;
    transition: 0.18s ease;
}

.tag-list a:hover {
    background: #dbeafe;
    color: var(--blue-700);
}

.side-card {
    position: sticky;
    top: 92px;
}

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

.mini-card {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    border-radius: 14px;
    padding: 8px;
    transition: 0.18s ease;
}

.mini-card:hover {
    background: var(--gray-100);
}

.mini-card__poster {
    display: block;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 16 / 10;
    background: var(--slate-800);
}

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

.mini-card__content {
    min-width: 0;
}

.mini-card__content strong {
    display: -webkit-box;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.38;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.mini-card__content em {
    display: block;
    margin-top: 5px;
    color: var(--gray-500);
    font-size: 12px;
    font-style: normal;
}

.mini-card__rank {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 999px;
    color: var(--white);
    background: var(--orange-500);
    font-size: 12px;
    font-weight: 800;
}

.search-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 160px 160px;
    gap: 12px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    background: var(--white);
    padding: 18px;
    margin-bottom: 28px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

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

.rank-row {
    display: grid;
    grid-template-columns: 70px 160px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    border: 1px solid var(--gray-200);
    border-radius: 18px;
    background: var(--white);
    padding: 12px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
    transition: 0.18s ease;
}

.rank-row:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.rank-row__num {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(135deg, var(--orange-500), var(--rose-500));
    font-weight: 900;
}

.rank-row__poster {
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 16 / 9;
    background: var(--slate-800);
}

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

.rank-row h2 {
    margin: 0 0 6px;
    font-size: 20px;
}

.rank-row p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: var(--gray-600);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.rank-row__meta {
    margin-top: 8px;
    color: var(--gray-500);
    font-size: 14px;
}

.site-footer {
    color: #cbd5e1;
    background: linear-gradient(180deg, var(--slate-900), var(--slate-950));
    padding: 48px 0;
}

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

.footer-grid p {
    max-width: 520px;
    color: #94a3b8;
}

.footer-grid h3 {
    margin: 0 0 12px;
    color: var(--white);
}

.footer-grid a {
    display: block;
    color: #cbd5e1;
    margin: 6px 0;
    transition: 0.18s ease;
}

.footer-grid a:hover {
    color: #60a5fa;
}

.footer-cats {
    columns: 2;
}

.empty-state {
    display: none;
    border: 1px dashed var(--gray-300);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
    color: var(--gray-500);
    background: var(--white);
}

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

@media (max-width: 1080px) {
    .movie-grid,
    .movie-grid--three {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

    .side-card {
        position: static;
    }
}

@media (max-width: 860px) {
    .desktop-nav,
    .header-search {
        display: none;
    }

    .mobile-toggle {
        display: inline-flex;
    }

    .header-inner {
        min-height: 64px;
    }

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

    .filter-bar,
    .section-head {
        align-items: stretch;
        flex-direction: column;
    }

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

    .rank-row {
        grid-template-columns: 52px 118px minmax(0, 1fr);
    }

    .rank-row .btn {
        grid-column: 2 / -1;
    }

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

@media (max-width: 560px) {
    .container,
    .hero-content {
        width: min(100% - 22px, 1180px);
    }

    .brand-text strong {
        font-size: 18px;
    }

    .brand-text small {
        display: none;
    }

    .hero {
        min-height: 560px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .movie-grid,
    .movie-grid--three,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .watch-side h1 {
        font-size: 24px;
    }

    .mini-card {
        grid-template-columns: 96px minmax(0, 1fr);
    }

    .mini-card__rank {
        display: none;
    }

    .rank-row {
        grid-template-columns: 44px minmax(0, 1fr);
    }

    .rank-row__poster {
        grid-column: 1 / -1;
        order: -1;
    }

    .rank-row .btn {
        grid-column: 1 / -1;
    }
}
