:root {
    --rose-50: #fff1f2;
    --rose-100: #ffe4e6;
    --rose-500: #f43f5e;
    --rose-600: #e11d48;
    --pink-500: #ec4899;
    --orange-50: #fff7ed;
    --orange-100: #ffedd5;
    --orange-500: #f97316;
    --gold-500: #f59e0b;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --shadow-soft: 0 18px 50px rgba(244, 63, 94, 0.16);
    --shadow-card: 0 12px 35px rgba(15, 23, 42, 0.12);
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--gray-800);
    background: linear-gradient(180deg, var(--rose-50) 0%, #ffffff 42%, var(--orange-50) 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.65;
}

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: 100;
    background: linear-gradient(90deg, rgba(255, 241, 242, 0.94), rgba(253, 242, 248, 0.94), rgba(255, 247, 237, 0.94));
    border-bottom: 1px solid rgba(244, 63, 94, 0.12);
    box-shadow: 0 8px 28px rgba(244, 63, 94, 0.12);
    backdrop-filter: blur(18px);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    height: 66px;
    margin: 0 auto;
    padding: 0 24px;
    gap: 24px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: var(--white);
    background: linear-gradient(135deg, var(--rose-500), var(--pink-500), var(--orange-500));
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(244, 63, 94, 0.28);
    font-size: 14px;
}

.brand-text,
.footer-brand {
    font-size: 24px;
    background: linear-gradient(90deg, var(--rose-600), var(--pink-500), var(--orange-500));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    color: var(--gray-700);
    font-weight: 600;
}

.nav-links a {
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
    color: var(--rose-500);
    transform: translateY(-1px);
}

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

.nav-search input,
.mobile-panel input {
    width: 190px;
    border: 1px solid rgba(244, 63, 94, 0.24);
    border-radius: 999px;
    outline: none;
    padding: 9px 14px;
    background: rgba(255, 255, 255, 0.82);
    transition: width 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.nav-search input:focus,
.mobile-panel input:focus {
    width: 230px;
    border-color: var(--rose-500);
    box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.12);
}

.nav-search button,
.mobile-panel button {
    border: 0;
    color: var(--white);
    background: linear-gradient(135deg, var(--rose-500), var(--pink-500));
    border-radius: 999px;
    padding: 9px 16px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(244, 63, 94, 0.2);
}

.mobile-toggle {
    display: none;
    border: 0;
    background: rgba(244, 63, 94, 0.1);
    color: var(--rose-600);
    border-radius: 12px;
    padding: 8px 12px;
    cursor: pointer;
}

.mobile-panel {
    display: none;
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 24px 22px;
    border-top: 1px solid rgba(244, 63, 94, 0.14);
}

.mobile-panel.is-open {
    display: grid;
    gap: 12px;
}

.mobile-panel a {
    color: var(--gray-700);
    font-weight: 700;
}

.mobile-panel form {
    display: flex;
    gap: 8px;
}

.hero-shell {
    position: relative;
    overflow: hidden;
    padding: 60px 24px 74px;
    background: linear-gradient(120deg, #ffe4e6 0%, #fdf2f8 44%, #ffedd5 100%);
}

.hero-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 999px;
    filter: blur(55px);
    opacity: 0.32;
    pointer-events: none;
    animation: pulseGlow 5s ease-in-out infinite;
}

.hero-glow.one {
    top: -120px;
    left: -90px;
    background: #fb7185;
}

.hero-glow.two {
    right: -110px;
    bottom: -150px;
    background: #fdba74;
    animation-delay: 1.4s;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

.hero-heading,
.hero-slider,
.section-block,
.footer-inner,
.footer-copy,
.breadcrumb,
.detail-head {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
}

.hero-heading {
    text-align: center;
    margin-bottom: 38px;
}

.hero-heading h1 {
    margin: 0 0 18px;
    font-size: clamp(38px, 6vw, 70px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.05em;
    background: linear-gradient(90deg, var(--rose-600), var(--pink-500), var(--orange-500));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-heading p {
    max-width: 820px;
    margin: 0 auto;
    color: var(--gray-600);
    font-size: clamp(17px, 2.2vw, 24px);
}

.hero-slider {
    border-radius: 30px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.72);
}

.hero-slide {
    display: none;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: center;
    gap: 34px;
    min-height: 510px;
    padding: 34px;
}

.hero-slide.is-active {
    display: grid;
}

.hero-visual {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, var(--rose-100), var(--orange-100));
    box-shadow: 0 24px 60px rgba(17, 24, 39, 0.2);
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.hero-slide:hover .hero-visual img {
    transform: scale(1.05);
}

.hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(17, 24, 39, 0.35), rgba(255, 255, 255, 0.02));
}

.hero-copy {
    padding-right: 16px;
}

.hero-kicker,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--rose-600);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-copy h2 {
    margin: 0 0 18px;
    color: var(--gray-900);
    font-size: clamp(30px, 4.4vw, 54px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.hero-copy p {
    margin: 0 0 22px;
    color: var(--gray-600);
    font-size: 18px;
}

.hero-tags,
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 24px;
}

.hero-tags span,
.tag-cloud span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(244, 63, 94, 0.1);
    color: var(--rose-600);
    padding: 7px 12px;
    font-size: 13px;
    font-weight: 700;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 18px;
    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: var(--white);
    background: linear-gradient(135deg, var(--rose-500), var(--pink-500), var(--orange-500));
    box-shadow: 0 12px 28px rgba(244, 63, 94, 0.24);
}

.btn.ghost {
    color: var(--rose-600);
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(244, 63, 94, 0.16);
}

.btn.text {
    color: var(--gray-700);
    padding-left: 4px;
    padding-right: 4px;
}

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

.hero-dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 999px;
    background: rgba(244, 63, 94, 0.25);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
    width: 34px;
    background: linear-gradient(90deg, var(--rose-500), var(--orange-500));
}

.section-block {
    padding: 54px 24px;
}

.inner-block {
    padding-top: 0;
    padding-bottom: 0;
}

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

.section-title h2 {
    margin: 0;
    color: var(--gray-800);
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.15;
}

.section-title a {
    color: var(--rose-600);
    font-weight: 800;
    white-space: nowrap;
}

.section-kicker.orange {
    color: var(--orange-500);
}

.section-kicker.pink {
    color: var(--pink-500);
}

.section-kicker.gold {
    color: var(--gold-500);
}

.section-band {
    background: linear-gradient(90deg, rgba(255, 241, 242, 0.8), rgba(255, 247, 237, 0.82));
    padding: 54px 0;
}

.section-band.soft {
    background: linear-gradient(90deg, rgba(255, 237, 213, 0.78), rgba(253, 242, 248, 0.85));
}

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

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

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

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

.movie-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(244, 63, 94, 0.09);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-card);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-7px);
    border-color: rgba(244, 63, 94, 0.24);
    box-shadow: 0 20px 48px rgba(244, 63, 94, 0.18);
}

.poster-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, var(--rose-100), var(--orange-100));
}

.portrait-card .poster-wrap {
    aspect-ratio: 3 / 4;
}

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

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(17, 24, 39, 0.48), rgba(17, 24, 39, 0.02) 55%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

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

.badge {
    position: absolute;
    top: 14px;
    right: 14px;
    color: var(--white);
    background: linear-gradient(135deg, var(--rose-500), var(--pink-500));
    border-radius: 999px;
    padding: 6px 11px;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 6px 18px rgba(244, 63, 94, 0.24);
}

.card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 18px;
}

.card-body h3 {
    margin: 0 0 8px;
    color: var(--gray-800);
    font-size: 18px;
    line-height: 1.35;
    transition: color 0.2s ease;
}

.movie-card:hover .card-body h3 {
    color: var(--rose-600);
}

.card-body p {
    display: -webkit-box;
    min-height: 3.1em;
    margin: 0 0 14px;
    overflow: hidden;
    color: var(--gray-600);
    font-size: 14px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.compact-card .card-body p {
    display: none;
}

.meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    color: var(--gray-500);
    font-size: 12px;
}

.meta-line span {
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

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

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

.category-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    overflow: hidden;
    position: relative;
    min-height: 190px;
    padding: 24px;
    border: 1px solid rgba(244, 63, 94, 0.12);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--white), var(--rose-50));
    box-shadow: var(--shadow-card);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(244, 63, 94, 0.18);
}

.category-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    color: var(--white);
    background: linear-gradient(135deg, var(--rose-500), var(--orange-500));
    border-radius: 999px;
    box-shadow: 0 10px 22px rgba(244, 63, 94, 0.22);
}

.category-copy h3 {
    margin: 0 0 8px;
    color: var(--gray-800);
    font-size: 22px;
}

.category-copy p {
    margin: 0;
    color: var(--gray-600);
    font-size: 14px;
}

.category-strip {
    grid-column: 1 / -1;
    display: flex;
    gap: 8px;
    margin-top: 2px;
    min-height: 62px;
}

.category-strip img {
    width: 31%;
    height: 62px;
    object-fit: cover;
    border-radius: 12px;
    background: var(--rose-100);
}

.ranking-list {
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-card);
}

.rank-row {
    display: grid;
    grid-template-columns: 54px 112px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray-100);
    transition: background 0.2s ease;
}

.rank-row:last-child {
    border-bottom: 0;
}

.rank-row:hover {
    background: var(--rose-50);
}

.rank-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: var(--white);
    background: linear-gradient(135deg, var(--gold-500), var(--orange-500));
    border-radius: 999px;
    font-weight: 900;
}

.rank-row img {
    width: 112px;
    height: 68px;
    object-fit: cover;
    border-radius: 12px;
    background: var(--rose-100);
}

.rank-main {
    min-width: 0;
}

.rank-main strong,
.rank-main em {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.rank-main strong {
    color: var(--gray-800);
    font-size: 17px;
}

.rank-main em {
    color: var(--gray-500);
    font-size: 13px;
    font-style: normal;
}

.rank-meta {
    color: var(--gray-600);
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.page-hero {
    margin: 0 auto;
    padding: 56px 24px;
    background: linear-gradient(120deg, var(--rose-100), #fdf2f8, var(--orange-100));
}

.compact-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.compact-hero h1,
.compact-hero p {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.compact-hero h1 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--gray-900);
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.08;
}

.compact-hero p {
    margin-top: 0;
    margin-bottom: 0;
    color: var(--gray-600);
    font-size: 18px;
}

.channel-hero {
    max-width: none;
    padding-left: max(24px, calc((100vw - 1280px) / 2 + 24px));
    padding-right: max(24px, calc((100vw - 1280px) / 2 + 24px));
}

.filter-toolbar {
    display: grid;
    grid-template-columns: minmax(250px, 2fr) repeat(3, minmax(160px, 1fr));
    gap: 16px;
    margin-bottom: 28px;
    padding: 20px;
    border: 1px solid rgba(244, 63, 94, 0.12);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-card);
}

.filter-toolbar label {
    display: grid;
    gap: 8px;
    color: var(--gray-600);
    font-size: 13px;
    font-weight: 800;
}

.filter-toolbar input,
.filter-toolbar select {
    width: 100%;
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    outline: none;
    padding: 11px 12px;
    background: var(--white);
    color: var(--gray-800);
}

.filter-toolbar input:focus,
.filter-toolbar select:focus {
    border-color: var(--rose-500);
    box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.1);
}

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

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    padding: 26px 24px 0;
    color: var(--gray-500);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--rose-600);
    font-weight: 700;
}

.detail-head {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 42px;
    padding: 34px 24px 44px;
}

.detail-poster {
    overflow: hidden;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--rose-100), var(--orange-100));
    box-shadow: 0 24px 60px rgba(17, 24, 39, 0.18);
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.detail-copy {
    align-self: center;
}

.detail-copy h1 {
    margin: 0 0 18px;
    color: var(--gray-900);
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.lead-text {
    margin: 0 0 22px;
    color: var(--gray-600);
    font-size: 19px;
}

.info-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: 720px;
    margin: 0 0 26px;
}

.info-list div {
    padding: 14px 16px;
    border: 1px solid rgba(244, 63, 94, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
}

.info-list dt {
    color: var(--gray-500);
    font-size: 12px;
    font-weight: 800;
}

.info-list dd {
    margin: 4px 0 0;
    color: var(--gray-800);
    font-weight: 800;
}

.player-section {
    padding-top: 20px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 28px;
    background: var(--gray-900);
    box-shadow: 0 28px 70px rgba(17, 24, 39, 0.24);
}

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

.player-cover {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    overflow: hidden;
    cursor: pointer;
    background: #111827;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

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

.player-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.12), rgba(17, 24, 39, 0.62));
}

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

.play-orb {
    position: relative;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    border: 0;
    border-radius: 999px;
    color: var(--rose-600);
    background: rgba(255, 255, 255, 0.92);
    font-size: 34px;
    cursor: pointer;
    box-shadow: 0 20px 48px rgba(17, 24, 39, 0.32);
    transition: transform 0.2s ease;
}

.play-orb:hover {
    transform: scale(1.08);
}

.article-section {
    color: var(--gray-700);
    font-size: 18px;
}

.article-section h2 {
    margin: 0 0 12px;
    color: var(--gray-900);
    font-size: 30px;
}

.article-section p {
    margin: 0 0 30px;
    padding: 26px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-card);
}

.site-footer {
    margin-top: 46px;
    border-top: 1px solid rgba(244, 63, 94, 0.12);
    background: linear-gradient(180deg, var(--gray-50), var(--gray-100));
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) auto;
    gap: 28px;
    padding: 42px 24px 20px;
}

.footer-inner p {
    max-width: 620px;
    margin: 12px 0 0;
    color: var(--gray-600);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    align-content: start;
    gap: 14px 24px;
    color: var(--gray-600);
    font-weight: 700;
}

.footer-links a:hover {
    color: var(--rose-600);
}

.footer-copy {
    padding: 0 24px 30px;
    color: var(--gray-500);
    font-size: 14px;
}

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

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

    .hero-slide,
    .detail-head {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        padding-right: 0;
    }

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

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

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

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

@media (max-width: 720px) {
    .nav-inner {
        padding: 0 16px;
    }

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

    .hero-shell {
        padding: 42px 16px 58px;
    }

    .hero-slide {
        min-height: auto;
        padding: 18px;
    }

    .hero-dots {
        bottom: 10px;
    }

    .section-block {
        padding: 38px 16px;
    }

    .section-title,
    .compact-hero,
    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
        display: flex;
    }

    .feature-grid,
    .feature-grid.four-cols,
    .poster-grid,
    .category-grid,
    .large-category-grid,
    .filter-toolbar,
    .info-list {
        grid-template-columns: 1fr;
    }

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

    .rank-row {
        grid-template-columns: 38px 82px minmax(0, 1fr);
        gap: 12px;
        padding: 14px;
    }

    .rank-row img {
        width: 82px;
        height: 56px;
    }

    .rank-meta {
        grid-column: 3;
        font-size: 12px;
    }

    .detail-head {
        padding: 26px 16px 34px;
    }

    .detail-poster {
        max-width: 330px;
    }

    .breadcrumb {
        padding-left: 16px;
        padding-right: 16px;
    }

    .play-orb {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}
