:root {
    --primary-50: #f0f9ff;
    --primary-100: #e0f2fe;
    --primary-400: #38bdf8;
    --primary-600: #0284c7;
    --primary-700: #0369a1;
    --secondary-50: #f8fafc;
    --secondary-100: #f1f5f9;
    --secondary-200: #e2e8f0;
    --secondary-300: #cbd5e1;
    --secondary-400: #94a3b8;
    --secondary-500: #64748b;
    --secondary-600: #475569;
    --secondary-700: #334155;
    --secondary-800: #1e293b;
    --secondary-900: #0f172a;
    --white: #ffffff;
    --shadow-soft: 0 2px 15px -3px rgba(0, 0, 0, 0.07), 0 10px 20px -2px rgba(0, 0, 0, 0.04);
    --shadow-soft-lg: 0 15px 35px -12px rgba(15, 23, 42, 0.35);
}

* {
    box-sizing: border-box;
}

html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    background: var(--secondary-50);
    color: var(--secondary-900);
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--secondary-50);
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
    backdrop-filter: saturate(180%) blur(12px);
}

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

.site-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    color: var(--secondary-900);
    white-space: nowrap;
}

.logo-mark {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-400));
    color: #fff;
    font-size: 14px;
    box-shadow: 0 10px 24px rgba(2, 132, 199, 0.28);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
}

.nav-link,
.mobile-link {
    font-weight: 600;
    color: var(--secondary-700);
    transition: color 0.2s ease;
}

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

.search-form {
    position: relative;
    width: 230px;
}

.search-form input,
.mobile-search input,
.search-page-form input,
.filter-panel input,
.filter-panel select,
.filter-row select {
    width: 100%;
    border: 1px solid var(--secondary-300);
    border-radius: 12px;
    background: #fff;
    padding: 10px 44px 10px 14px;
    color: var(--secondary-900);
    outline: none;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.search-form input:focus,
.mobile-search input:focus,
.search-page-form input:focus,
.filter-panel input:focus,
.filter-panel select:focus,
.filter-row select:focus {
    border-color: var(--primary-600);
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.16);
}

.search-form button {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 9px;
    background: var(--primary-50);
    color: var(--primary-700);
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: var(--secondary-800);
    font-size: 28px;
}

.mobile-panel {
    display: none;
    border-top: 1px solid var(--secondary-200);
    padding: 16px;
    animation: slideDown 0.28s ease-out;
}

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

.mobile-nav {
    display: grid;
    gap: 12px;
    margin-bottom: 14px;
}

.mobile-search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.mobile-search button {
    border: 0;
    border-radius: 12px;
    padding: 0 18px;
    background: var(--primary-600);
    color: #fff;
    font-weight: 700;
}

.hero-carousel {
    position: relative;
    height: 520px;
    overflow: hidden;
    background: var(--secondary-900);
}

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

.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(to top, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.10));
    z-index: 1;
}

.hero-content {
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    padding: 0 16px 72px;
    color: #fff;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
}

.hero-content h1,
.hero-content h2 {
    margin: 0 0 16px;
    max-width: 900px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.hero-content p {
    max-width: 760px;
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-tags,
.tag-list,
.movie-card-meta,
.ranking-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.hero-tags span {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.20);
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 18px;
    border-radius: 12px;
    border: 1px solid transparent;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
    background: var(--primary-600);
    color: #fff;
    box-shadow: 0 12px 24px rgba(2, 132, 199, 0.26);
}

.btn-primary:hover {
    background: var(--primary-700);
}

.btn-ghost {
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
    background: rgba(255, 255, 255, 0.10);
}

.btn-light {
    background: var(--primary-50);
    color: var(--primary-700);
}

.btn.full {
    width: 100%;
}

.hero-nav {
    position: absolute;
    top: 50%;
    z-index: 4;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.50);
    color: #fff;
    font-size: 36px;
    line-height: 0;
    transition: background 0.2s ease;
}

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

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

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

.hero-dot {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.52);
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
    width: 32px;
    background: #fff;
}

.page-stack {
    display: grid;
    gap: 58px;
    padding: 54px 0 0;
}

.content-section,
.detail-panel,
.ranking-panel,
.search-page-panel,
.filter-panel,
.category-large-card,
.sticky-panel {
    border-radius: 18px;
}

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

.section-title-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title-wrap h2,
.panel-title {
    margin: 0;
    color: var(--secondary-900);
    font-size: 26px;
    line-height: 1.2;
    font-weight: 900;
}

.section-icon {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: var(--primary-50);
    color: var(--primary-600);
    font-weight: 900;
}

.section-more {
    color: var(--primary-600);
    font-weight: 800;
}

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

.movie-grid {
    display: grid;
    gap: 18px;
}

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

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

.movie-card {
    overflow: hidden;
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.movie-card-image {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--secondary-200);
}

.movie-card-image.wide-image {
    aspect-ratio: 16 / 10;
}

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

.movie-card:hover img,
.ranking-item:hover img,
.compact-card:hover img,
.category-large-card:hover img {
    transform: scale(1.06);
}

.movie-card img,
.ranking-item img,
.compact-card img,
.category-large-card img {
    transition: transform 0.45s ease;
}

.movie-badge {
    position: absolute;
    right: 10px;
    top: 10px;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.62);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

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

.movie-card-title {
    display: -webkit-box;
    min-height: 46px;
    overflow: hidden;
    color: var(--secondary-900);
    font-weight: 800;
    line-height: 1.45;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.2s ease;
}

.movie-card-title:hover {
    color: var(--primary-600);
}

.movie-card-desc {
    display: -webkit-box;
    min-height: 44px;
    margin: 8px 0 12px;
    overflow: hidden;
    color: var(--secondary-600);
    font-size: 14px;
    line-height: 1.58;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-card-meta {
    justify-content: space-between;
    color: var(--secondary-500);
    font-size: 13px;
}

.movie-card-wide {
    display: grid;
    grid-template-columns: 42% 1fr;
}

.movie-card-wide .movie-card-image {
    height: 100%;
}

.movie-card-wide .movie-card-title {
    font-size: 19px;
}

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

.category-card {
    display: grid;
    gap: 14px;
    padding: 20px;
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.category-card-link {
    display: grid;
    gap: 8px;
}

.category-card-link span {
    color: var(--primary-600);
    font-weight: 900;
    font-size: 18px;
}

.category-card-link strong {
    color: var(--secondary-700);
    font-size: 14px;
    line-height: 1.65;
}

.category-samples {
    display: grid;
    gap: 8px;
}

.category-samples a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--secondary-500);
    font-size: 13px;
}

.category-samples a:hover {
    color: var(--primary-600);
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
}

.ranking-panel,
.sticky-panel {
    align-self: start;
    background: #fff;
    padding: 22px;
    box-shadow: var(--shadow-soft);
}

.rank-list,
.compact-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.rank-row,
.compact-card {
    display: grid;
    grid-template-columns: auto 62px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 14px;
    background: var(--secondary-50);
    transition: background 0.2s ease;
}

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

.rank-row:hover,
.compact-card:hover {
    background: var(--primary-50);
}

.rank-num {
    font-weight: 900;
    color: var(--primary-600);
}

.rank-row img,
.compact-card img {
    width: 62px;
    height: 52px;
    border-radius: 10px;
    object-fit: cover;
    overflow: hidden;
}

.compact-card img {
    width: 58px;
    height: 58px;
}

.rank-main,
.compact-card span {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.rank-main strong,
.compact-card strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--secondary-900);
}

.rank-main em,
.compact-card em {
    overflow: hidden;
    color: var(--secondary-500);
    font-size: 12px;
    font-style: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.page-main {
    padding: 34px 0 0;
}

.page-hero {
    margin-bottom: 30px;
    padding: 34px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--secondary-900), #123c59 48%, var(--primary-700));
    color: #fff;
    box-shadow: var(--shadow-soft-lg);
}

.page-hero span {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    font-weight: 800;
}

.page-hero h1 {
    margin: 0 0 10px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
}

.page-hero p {
    max-width: 780px;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
    line-height: 1.75;
}

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

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

.filter-panel,
.search-page-panel {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) 190px 190px;
    gap: 14px;
    margin-bottom: 24px;
    padding: 18px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.filter-panel select,
.filter-row select {
    padding-right: 12px;
}

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

.category-large-card {
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.category-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 150px;
    overflow: hidden;
}

.category-large-body {
    padding: 22px;
}

.category-large-body h2 {
    margin: 0 0 8px;
    color: var(--secondary-900);
    font-size: 24px;
}

.category-large-body p {
    margin: 0 0 18px;
    color: var(--secondary-600);
    line-height: 1.72;
}

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

.ranking-item {
    display: grid;
    grid-template-columns: 70px 130px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 16px;
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.ranking-number {
    color: var(--primary-600);
    font-size: 24px;
    font-weight: 900;
}

.ranking-cover {
    height: 98px;
    overflow: hidden;
    border-radius: 14px;
}

.ranking-body h2 {
    margin: 0 0 8px;
    font-size: 22px;
    line-height: 1.25;
}

.ranking-body h2 a:hover {
    color: var(--primary-600);
}

.ranking-body p {
    display: -webkit-box;
    margin: 0 0 10px;
    overflow: hidden;
    color: var(--secondary-600);
    line-height: 1.65;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ranking-meta {
    color: var(--secondary-500);
    font-size: 13px;
}

.ranking-meta a {
    color: var(--primary-600);
    font-weight: 800;
}

.tag-list span {
    display: inline-flex;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--primary-50);
    color: var(--primary-700);
    font-size: 12px;
    font-weight: 800;
}

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

.detail-content {
    display: grid;
    gap: 22px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: #000;
    box-shadow: var(--shadow-soft-lg);
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.54));
    color: #fff;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.play-icon {
    display: grid;
    place-items: center;
    width: 84px;
    height: 84px;
    border-radius: 999px;
    background: rgba(2, 132, 199, 0.90);
    box-shadow: 0 20px 40px rgba(2, 132, 199, 0.35);
    font-size: 34px;
    transform: translateX(2px);
}

.detail-panel {
    padding: 26px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.detail-panel h1 {
    margin: 0 0 14px;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.18;
}

.detail-panel h2 {
    margin: 26px 0 12px;
    color: var(--secondary-900);
    font-size: 22px;
}

.detail-panel p {
    margin: 0;
    color: var(--secondary-700);
    line-height: 1.9;
}

.lead-text {
    color: var(--primary-600) !important;
    font-size: 18px;
    font-weight: 700;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 22px 0;
}

.info-grid div {
    display: grid;
    gap: 6px;
    padding: 14px;
    border-radius: 14px;
    background: var(--secondary-50);
}

.info-grid span {
    color: var(--secondary-500);
    font-size: 12px;
}

.info-grid strong {
    color: var(--secondary-900);
    font-size: 15px;
}

.detail-tags {
    margin: 0 0 6px;
}

.detail-sidebar {
    display: block;
}

.sticky-panel {
    position: sticky;
    top: 88px;
    display: grid;
    gap: 18px;
}

.sticky-panel .poster {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
}

.sticky-panel h2 {
    margin: 4px 0 0;
    font-size: 22px;
}

.side-nav-links {
    display: grid;
    gap: 10px;
}

.side-nav-links a {
    padding: 10px 12px;
    border-radius: 12px;
    background: var(--secondary-50);
    color: var(--secondary-700);
    font-size: 14px;
    font-weight: 700;
}

.side-nav-links a:hover {
    color: var(--primary-600);
    background: var(--primary-50);
}

.related-mobile {
    display: none;
}

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

.search-page-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
}

.filter-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 220px));
    gap: 12px;
}

.search-result-head h2 {
    margin: 0 0 20px;
    color: var(--secondary-900);
    font-size: 24px;
}

.is-hidden {
    display: none !important;
}

.site-footer {
    margin-top: 70px;
    background: var(--secondary-900);
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 36px;
    padding: 44px 0;
}

.site-footer p {
    max-width: 420px;
    margin: 16px 0 0;
    color: var(--secondary-400);
    line-height: 1.75;
}

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

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

.footer-links a {
    color: var(--secondary-400);
    font-size: 14px;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 16px;
    color: var(--secondary-400);
    text-align: center;
    font-size: 14px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    .menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

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

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

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

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

    .split-section,
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .detail-sidebar {
        display: none;
    }

    .related-mobile {
        display: block;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 24px, 1280px);
    }

    .header-inner {
        gap: 10px;
    }

    .site-logo {
        font-size: 18px;
    }

    .search-form {
        display: none;
    }

    .hero-carousel {
        height: 560px;
    }

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

    .hero-content p {
        font-size: 16px;
        -webkit-line-clamp: 4;
    }

    .hero-nav {
        width: 38px;
        height: 38px;
        font-size: 30px;
    }

    .hero-prev {
        left: 10px;
    }

    .hero-next {
        right: 10px;
    }

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

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

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

    .movie-card-desc {
        display: none;
    }

    .movie-card-title {
        min-height: 43px;
        font-size: 14px;
    }

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

    .category-thumbs {
        height: 112px;
    }

    .category-large-body {
        padding: 16px;
    }

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

    .ranking-item {
        grid-template-columns: 52px 86px minmax(0, 1fr);
        gap: 12px;
        padding: 12px;
    }

    .ranking-number {
        font-size: 18px;
    }

    .ranking-cover {
        height: 76px;
    }

    .ranking-body h2 {
        font-size: 17px;
    }

    .ranking-body p,
    .ranking-meta,
    .ranking-body .tag-list {
        display: none;
    }

    .page-hero {
        padding: 26px;
    }

    .detail-panel {
        padding: 20px;
    }

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

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

    .search-page-form,
    .filter-row,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .wide-grid,
    .movie-grid-four,
    .movie-grid-six,
    .category-grid,
    .category-large-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1,
    .hero-content h2 {
        font-size: 32px;
    }
}
