:root {
    --dawn-50: #fff9f0;
    --dawn-100: #ffefd8;
    --dawn-400: #ffc56b;
    --dawn-500: #ffb347;
    --dawn-600: #ff9f24;
    --dawn-700: #f58700;
    --dawn-900: #995400;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --card-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --card-shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
    --radius-lg: 14px;
    --radius-xl: 22px;
    --page-width: 1280px;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--gray-900);
    background: linear-gradient(180deg, var(--gray-50), #ffffff 420px);
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(229, 231, 235, 0.88);
    box-shadow: 0 1px 10px rgba(17, 24, 39, 0.05);
    backdrop-filter: blur(10px);
}

.nav-inner {
    max-width: var(--page-width);
    height: 64px;
    margin: 0 auto;
    padding: 0 18px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--dawn-600);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.brand-text {
    font-size: 20px;
    white-space: nowrap;
}

.brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--dawn-500), var(--dawn-700));
    box-shadow: 0 8px 20px rgba(255, 159, 36, 0.3);
    font-size: 15px;
}

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

.nav-link {
    color: var(--gray-700);
    font-weight: 650;
    font-size: 15px;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--dawn-600);
}

.nav-search,
.mobile-search {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-search input,
.mobile-search input,
.filter-bar input,
.filter-bar select {
    border: 1px solid var(--gray-300);
    border-radius: 999px;
    outline: none;
    background: #ffffff;
    color: var(--gray-800);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-search input {
    width: 230px;
    padding: 10px 14px;
}

.nav-search input:focus,
.mobile-search input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
    border-color: var(--dawn-500);
    box-shadow: 0 0 0 4px rgba(255, 179, 71, 0.18);
}

.nav-search button,
.mobile-search button,
.primary-btn {
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: var(--dawn-600);
    cursor: pointer;
    font-weight: 700;
    transition: background 0.2s ease, transform 0.2s ease;
}

.nav-search button,
.mobile-search button {
    padding: 10px 16px;
}

.nav-search button:hover,
.mobile-search button:hover,
.primary-btn:hover {
    background: var(--dawn-700);
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: var(--gray-700);
    font-size: 26px;
    cursor: pointer;
}

.mobile-panel {
    display: none;
    padding: 16px 18px 20px;
    border-top: 1px solid var(--gray-200);
    background: #ffffff;
}

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

.mobile-search input {
    flex: 1;
    min-width: 0;
    padding: 10px 14px;
}

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

.mobile-link {
    padding: 10px 12px;
    border-radius: 12px;
    background: var(--gray-50);
    color: var(--gray-700);
    font-weight: 650;
}

.mobile-link.is-active,
.mobile-link:hover {
    color: var(--dawn-700);
    background: var(--dawn-50);
}

.hero-slider {
    position: relative;
    height: 60vh;
    min-height: 460px;
    max-height: 760px;
    overflow: hidden;
    background: var(--gray-900);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.hero-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.38) 46%, rgba(0, 0, 0, 0.05));
}

.hero-content {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: min(100%, var(--page-width));
    padding: 0 18px 74px;
    transform: translateX(-50%);
    color: #ffffff;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 179, 71, 0.92);
    font-size: 13px;
    font-weight: 750;
    letter-spacing: 0.08em;
}

.hero-content h1 {
    max-width: 820px;
    margin: 0 0 16px;
    font-size: clamp(34px, 5.2vw, 72px);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.hero-content p {
    max-width: 780px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.65;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.hero-tags,
.detail-meta,
.movie-meta,
.hero-actions,
.section-heading,
.footer-bottom {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-tags span {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
    font-weight: 700;
}

.hero-actions {
    margin-top: 26px;
}

.primary-btn,
.ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 26px;
}

.ghost-btn {
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    font-weight: 700;
    transition: background 0.2s ease, transform 0.2s ease;
}

.ghost-btn:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-1px);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.46);
    cursor: pointer;
    font-size: 34px;
    line-height: 1;
    transform: translateY(-50%);
    transition: background 0.2s ease;
}

.hero-arrow:hover {
    background: rgba(0, 0, 0, 0.72);
}

.hero-prev {
    left: 22px;
}

.hero-next {
    right: 22px;
}

.hero-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
}

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

.hero-dot.is-active {
    width: 34px;
    background: var(--dawn-500);
}

.page-shell,
.detail-shell,
.footer-inner {
    width: min(100% - 36px, var(--page-width));
    margin: 0 auto;
}

.page-flow {
    padding: 52px 0 72px;
}

.top-page {
    padding-top: 34px;
}

.content-section {
    margin-bottom: 66px;
}

.section-heading {
    justify-content: space-between;
    margin-bottom: 26px;
}

.section-heading h2,
.page-hero h1,
.detail-side h1,
.detail-text h2 {
    margin: 0;
    color: var(--gray-900);
    letter-spacing: -0.03em;
}

.section-heading h2 {
    font-size: clamp(25px, 3vw, 36px);
}

.section-heading a {
    color: var(--dawn-600);
    font-weight: 750;
}

.section-heading a:hover {
    color: var(--dawn-700);
}

.movie-grid,
.compact-grid,
.category-grid,
.category-overview,
.ranking-grid {
    display: grid;
    gap: 22px;
}

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

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

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

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

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

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

.movie-card {
    display: block;
    color: inherit;
}

.poster {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    margin-bottom: 14px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--gray-100);
    box-shadow: var(--card-shadow);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

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

.poster-shade {
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.68), transparent 64%);
    transition: opacity 0.3s ease;
}

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

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

.movie-card:hover .poster-shade,
.movie-card:hover .watch-badge {
    opacity: 1;
}

.year-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 9px;
    border-radius: 8px;
    color: #ffffff;
    background: var(--dawn-600);
    font-size: 12px;
    font-weight: 800;
}

.watch-badge {
    position: absolute;
    left: 14px;
    bottom: 14px;
    opacity: 0;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    transition: opacity 0.25s ease;
}

.movie-card strong {
    display: -webkit-box;
    margin-bottom: 6px;
    overflow: hidden;
    color: var(--gray-900);
    font-weight: 760;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    transition: color 0.2s ease;
}

.movie-card:hover strong {
    color: var(--dawn-600);
}

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

.movie-meta em,
.movie-meta i {
    font-style: normal;
    font-size: 12px;
}

.movie-meta em {
    padding: 4px 8px;
    border-radius: 999px;
    color: var(--dawn-700);
    background: var(--dawn-50);
    font-weight: 800;
}

.movie-meta i {
    color: var(--gray-500);
}

.movie-card-compact .compact-poster {
    margin-bottom: 9px;
    border-radius: 12px;
    box-shadow: none;
}

.movie-card-compact strong {
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
}

.movie-card-compact em {
    display: block;
    color: var(--gray-500);
    font-size: 13px;
    font-style: normal;
}

.category-band {
    margin-bottom: 66px;
    padding: 36px;
    border-radius: var(--radius-xl);
    background: linear-gradient(90deg, var(--dawn-50), #fff7ed);
}

.category-tile,
.category-card {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 172px;
    border-radius: var(--radius-lg);
    background: var(--gray-900);
    box-shadow: var(--card-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.72;
    transition: transform 0.3s ease;
}

.category-tile:hover img {
    transform: scale(1.06);
}

.category-tile span {
    position: absolute;
    inset: auto 0 0;
    padding: 20px;
    color: #ffffff;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent);
}

.category-tile strong,
.category-card strong {
    display: block;
    margin-bottom: 6px;
    font-size: 19px;
}

.category-tile em,
.category-card em {
    display: -webkit-box;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-style: normal;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.category-card {
    min-height: auto;
    background: #ffffff;
}

.category-covers {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    height: 178px;
    gap: 3px;
    background: var(--gray-100);
}

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

.category-info {
    display: block;
    padding: 18px;
}

.category-card strong {
    color: var(--gray-900);
}

.category-card em {
    color: var(--gray-600);
}

.rail {
    display: grid;
    grid-auto-columns: minmax(230px, 1fr);
    grid-auto-flow: column;
    gap: 22px;
    overflow-x: auto;
    padding-bottom: 14px;
    scroll-snap-type: x mandatory;
}

.rail .movie-card {
    width: 230px;
    scroll-snap-align: start;
}

.ranking-section {
    padding: 38px;
    border-radius: var(--radius-xl);
    background: linear-gradient(90deg, var(--gray-50), #eff6ff);
}

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

.list-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 1px 4px rgba(17, 24, 39, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.list-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-hover);
}

.list-item b {
    width: 34px;
    color: var(--dawn-600);
    font-size: 20px;
}

.list-item img {
    width: 92px;
    height: 58px;
    flex: 0 0 auto;
    border-radius: 10px;
    object-fit: cover;
}

.list-item span {
    min-width: 0;
}

.list-item strong,
.list-item em,
.list-item small {
    display: block;
}

.list-item strong {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: var(--gray-900);
}

.list-item em {
    display: -webkit-box;
    overflow: hidden;
    color: var(--gray-600);
    font-size: 14px;
    font-style: normal;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.list-item small {
    margin-top: 4px;
    color: var(--gray-500);
}

.page-hero {
    position: relative;
    padding: 50px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: linear-gradient(120deg, var(--gray-900), #2f1d04 56%, var(--dawn-700));
    color: #ffffff;
}

.page-hero h1 {
    color: #ffffff;
    font-size: clamp(32px, 4vw, 54px);
}

.page-hero p {
    max-width: 820px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
    line-height: 1.8;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    color: var(--gray-500);
    font-size: 14px;
}

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

.breadcrumb strong {
    color: var(--gray-800);
    font-weight: 700;
}

.filter-bar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 26px;
    padding: 18px;
    border: 1px solid var(--gray-200);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 1px 8px rgba(17, 24, 39, 0.04);
}

.filter-bar label {
    flex: 1;
}

.filter-bar span {
    display: block;
    margin-bottom: 8px;
    color: var(--gray-700);
    font-weight: 800;
}

.filter-bar input,
.filter-bar select {
    width: 100%;
    padding: 12px 14px;
}

.filter-bar select {
    max-width: 190px;
    border-radius: 14px;
}

.watch-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.85fr);
    gap: 28px;
    align-items: stretch;
    margin-bottom: 46px;
}

.player-panel,
.detail-side,
.detail-text {
    border-radius: var(--radius-xl);
    background: #ffffff;
    box-shadow: var(--card-shadow);
}

.player-panel {
    padding: 18px;
}

.player-box {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 18px;
    background: #000000;
}

.movie-video {
    width: 100%;
    height: 100%;
    background: #000000;
}

.player-cover {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: #000000;
    cursor: pointer;
}

.player-cover.is-hidden {
    display: none;
}

.player-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.72;
}

.play-pulse {
    position: absolute;
    width: 82px;
    height: 82px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(255, 159, 36, 0.92);
    box-shadow: 0 0 0 14px rgba(255, 159, 36, 0.2);
    font-size: 32px;
    transform: translateZ(0);
}

.detail-side {
    display: grid;
    grid-template-columns: 145px minmax(0, 1fr);
    gap: 20px;
    padding: 22px;
}

.detail-side > img {
    width: 145px;
    height: 205px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: var(--card-shadow);
}

.detail-side h1 {
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.15;
}

.detail-side p {
    margin: 14px 0;
    color: var(--gray-600);
    line-height: 1.7;
}

.detail-meta span,
.tag-cloud span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 750;
}

.detail-meta span {
    color: var(--dawn-900);
    background: var(--dawn-50);
}

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

.tag-cloud span {
    color: var(--gray-600);
    background: var(--gray-100);
}

.detail-text {
    padding: 34px;
}

.detail-text h2 {
    margin: 0 0 16px;
    font-size: 26px;
}

.detail-text h2:not(:first-child) {
    margin-top: 30px;
}

.detail-text p {
    margin: 0;
    color: var(--gray-700);
    font-size: 17px;
    line-height: 1.9;
}

.site-footer {
    margin-top: 40px;
    background: var(--gray-900);
    color: var(--gray-300);
}

.footer-inner {
    padding: 46px 0 28px;
}

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

.footer-brand {
    margin-bottom: 16px;
    color: var(--dawn-400);
    font-size: 19px;
}

.site-footer h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 16px;
}

.site-footer p {
    margin: 0;
    color: var(--gray-400);
    line-height: 1.7;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 9px;
}

.footer-links a {
    color: var(--gray-400);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--dawn-400);
}

.footer-bottom {
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-400);
    font-size: 14px;
}

[data-movie-card].is-hidden {
    display: none;
}

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

    .nav-search {
        margin-left: auto;
    }

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

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

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

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

@media (max-width: 760px) {
    .nav-inner {
        gap: 12px;
    }

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

    .nav-search {
        display: none;
    }

    .mobile-toggle {
        display: block;
        margin-left: auto;
    }

    .hero-slider {
        height: 66vh;
        min-height: 470px;
    }

    .hero-content {
        padding-bottom: 74px;
    }

    .hero-arrow {
        display: none;
    }

    .page-flow {
        padding-top: 34px;
    }

    .content-section,
    .category-band {
        margin-bottom: 44px;
    }

    .category-band,
    .ranking-section,
    .page-hero,
    .detail-text {
        padding: 24px;
        border-radius: 18px;
    }

    .movie-grid,
    .catalog-grid,
    .compact-grid,
    .category-grid,
    .category-overview,
    .ranking-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .rail .movie-card {
        width: 190px;
    }

    .filter-bar {
        display: block;
    }

    .filter-bar select {
        max-width: none;
        margin-top: 12px;
    }

    .list-item {
        gap: 12px;
    }

    .list-item img {
        width: 76px;
        height: 52px;
    }

    .detail-side {
        grid-template-columns: 96px minmax(0, 1fr);
        padding: 16px;
    }

    .detail-side > img {
        width: 96px;
        height: 140px;
    }

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

@media (max-width: 460px) {
    .page-shell,
    .detail-shell,
    .footer-inner {
        width: min(100% - 24px, var(--page-width));
    }

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

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-tags {
        gap: 8px;
    }

    .primary-btn,
    .ghost-btn {
        width: 100%;
    }

    .movie-grid,
    .catalog-grid,
    .compact-grid,
    .category-grid,
    .category-overview,
    .ranking-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .movie-line {
        display: none;
    }

    .category-covers {
        height: 132px;
    }

    .player-panel {
        padding: 10px;
    }

    .detail-side {
        grid-template-columns: 1fr;
    }

    .detail-side > img {
        width: 132px;
        height: 186px;
    }
}
