:root {
    --red: #dc2626;
    --rose: #e11d48;
    --pink: #fb7185;
    --dark: #1f2937;
    --muted: #6b7280;
    --soft: #fff1f2;
    --line: #f3e8ea;
    --card: #ffffff;
    --shadow: 0 20px 50px rgba(190, 18, 60, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--dark);
    background: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(244, 63, 94, 0.12);
    backdrop-filter: blur(18px);
}

.header-inner {
    width: min(1180px, calc(100% - 32px));
    height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 26px;
}

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

.brand-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--red), var(--rose));
    border-radius: 14px;
    box-shadow: 0 10px 22px rgba(220, 38, 38, 0.24);
}

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

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

.brand-text small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 500;
}

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

.nav-link {
    padding: 9px 14px;
    color: #4b5563;
    border-radius: 999px;
    font-weight: 600;
    transition: color 0.25s ease, background 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--red);
    background: #fff1f2;
}

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

.header-search input,
.mobile-search input,
.search-panel input,
.filter-panel input,
.filter-panel select {
    border: 1px solid #f2cbd2;
    outline: none;
    background: #ffffff;
    border-radius: 999px;
    color: var(--dark);
    transition: box-shadow 0.25s ease, border 0.25s ease;
}

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

.header-search button,
.mobile-search button,
.search-panel button {
    border: 0;
    color: #ffffff;
    background: linear-gradient(135deg, var(--red), var(--rose));
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 700;
}

.header-search input:focus,
.mobile-search input:focus,
.search-panel input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
    border-color: var(--rose);
    box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.12);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #fff1f2;
    color: var(--red);
    font-size: 22px;
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 14px;
    padding: 14px;
    border: 1px solid #ffe4e6;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.mobile-nav.open {
    display: block;
}

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

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

.hero-section {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    background: linear-gradient(135deg, #fff1f2 0%, #fff7ed 48%, #fdf2f8 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image: linear-gradient(rgba(225, 29, 72, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(225, 29, 72, 0.12) 1px, transparent 1px);
    background-size: 58px 58px;
}

.floating-dot {
    position: absolute;
    color: rgba(225, 29, 72, 0.18);
    font-size: 72px;
    line-height: 1;
    animation: float 5s ease-in-out infinite;
}

.dot-one {
    top: 110px;
    left: 8%;
}

.dot-two {
    right: 10%;
    bottom: 120px;
    animation-delay: 0.8s;
}

.dot-three {
    right: 22%;
    top: 150px;
    animation-delay: 1.4s;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-18px) rotate(6deg);
    }
}

.hero-shell {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    min-height: 680px;
    margin: 0 auto;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 420px);
    align-items: center;
    gap: 56px;
    padding: 64px 0 110px;
    opacity: 0;
    pointer-events: none;
    transform: translateX(26px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 16px;
    color: #9f1239;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(244, 63, 94, 0.16);
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(225, 29, 72, 0.08);
    font-weight: 700;
}

.hero-copy h1 {
    margin: 24px 0 18px;
    color: #1f2937;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.04;
    letter-spacing: -2px;
}

.hero-copy h1 span {
    display: block;
    margin-top: 12px;
    font-size: clamp(28px, 4vw, 48px);
    color: transparent;
    background: linear-gradient(135deg, var(--red), var(--rose));
    background-clip: text;
    -webkit-background-clip: text;
}

.hero-copy p {
    max-width: 680px;
    margin: 0 0 24px;
    color: #4b5563;
    font-size: 20px;
}

.hero-tags,
.card-tags,
.tag-cloud,
.chip-row,
.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-tags span,
.hero-tags a,
.card-tags span,
.tag-cloud a,
.category-chip,
.category-tags a {
    padding: 6px 12px;
    color: #9f1239;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(244, 63, 94, 0.15);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

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

.primary-btn,
.light-btn,
.text-link,
.section-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.primary-btn {
    color: #ffffff;
    background: linear-gradient(135deg, var(--red), var(--rose));
    box-shadow: 0 16px 34px rgba(220, 38, 38, 0.22);
}

.light-btn {
    color: var(--dark);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(244, 63, 94, 0.12);
}

.primary-btn:hover,
.light-btn:hover,
.section-more:hover,
.text-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(225, 29, 72, 0.14);
}

.hero-poster {
    position: relative;
    display: block;
    padding: 16px;
    border-radius: 38px;
    background: rgba(255, 255, 255, 0.62);
    box-shadow: 0 40px 80px rgba(190, 18, 60, 0.2);
    transform: rotate(2deg);
}

.hero-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 28px;
}

.hero-play,
.play-symbol,
.detail-poster span {
    position: absolute;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--red), var(--rose));
    box-shadow: 0 16px 36px rgba(190, 18, 60, 0.32);
}

.hero-play {
    left: 50%;
    bottom: 36px;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    transform: translateX(-50%);
    font-size: 24px;
}

.hero-control {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 42px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.hero-prev,
.hero-next,
.hero-dot {
    border: 0;
    background: #ffffff;
    color: var(--red);
    box-shadow: 0 10px 24px rgba(225, 29, 72, 0.12);
}

.hero-prev,
.hero-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 34px;
    line-height: 1;
}

.hero-dots {
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border-radius: 50%;
    opacity: 0.55;
}

.hero-dot.active {
    width: 30px;
    border-radius: 999px;
    opacity: 1;
    background: linear-gradient(135deg, var(--red), var(--rose));
}

.section-block {
    padding: 72px 0;
}

.compact-block {
    padding: 34px 0;
}

.soft-bg {
    background: #fff7f8;
}

.gradient-strip {
    color: #ffffff;
    background: linear-gradient(135deg, var(--red), var(--rose));
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 30px;
}

.section-heading h2 {
    margin: 0 0 6px;
    color: var(--dark);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.15;
}

.section-heading p {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
}

.section-more,
.text-link {
    color: var(--red);
    background: #ffffff;
    border: 1px solid #ffe4e6;
}

.search-panel {
    display: flex;
    gap: 12px;
    padding: 14px;
    background: #ffffff;
    border: 1px solid #ffe4e6;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

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

.chip-row {
    margin-top: 18px;
}

.category-chip:hover,
.category-tags a:hover,
.tag-cloud a:hover {
    color: #ffffff;
    background: var(--rose);
}

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

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

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

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

.poster-showcase {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
}

.movie-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #fce7ea;
    border-radius: 24px;
    box-shadow: 0 12px 30px rgba(190, 18, 60, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(190, 18, 60, 0.16);
}

.movie-cover {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, #fff1f2, #ffe4e6);
}

.movie-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease, filter 0.45s ease;
}

.movie-card:hover .movie-cover img {
    transform: scale(1.08);
    filter: brightness(0.82);
}

.play-symbol {
    left: 50%;
    top: 50%;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.88);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.rank-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    min-width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: rgba(220, 38, 38, 0.94);
    border-radius: 12px;
    font-weight: 900;
}

.movie-info {
    padding: 16px;
}

.movie-meta-line,
.detail-meta,
.rank-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
}

.pill {
    color: var(--red);
    background: #fff1f2;
    border-radius: 999px;
    padding: 4px 10px;
    font-weight: 800;
}

.movie-info h3 {
    margin: 10px 0 8px;
    color: #1f2937;
    font-size: 18px;
    line-height: 1.35;
}

.movie-info h3 a:hover,
.rank-body h3 a:hover,
.category-card-large h2 a:hover {
    color: var(--red);
}

.movie-info p,
.rank-body p {
    display: -webkit-box;
    margin: 0 0 12px;
    overflow: hidden;
    color: var(--muted);
    font-size: 14px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-tags {
    gap: 6px;
}

.card-tags span {
    padding: 4px 8px;
    color: #6b7280;
    background: #f9fafb;
    border-color: #f3f4f6;
    font-size: 12px;
}

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

.category-tile {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    border-radius: 28px;
    background: #111827;
    box-shadow: 0 16px 36px rgba(17, 24, 39, 0.14);
}

.category-tile img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

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

.category-tile span {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 24, 39, 0.82), rgba(17, 24, 39, 0.15), transparent);
}

.category-tile strong,
.category-tile em {
    position: absolute;
    left: 18px;
    right: 18px;
    color: #ffffff;
    font-style: normal;
}

.category-tile strong {
    bottom: 58px;
    font-size: 22px;
}

.category-tile em {
    bottom: 18px;
    color: #f3f4f6;
    font-size: 13px;
}

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

.feature-icons div {
    padding: 22px;
    text-align: center;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 26px;
}

.feature-icons strong {
    display: block;
    margin-bottom: 6px;
    font-size: 22px;
}

.feature-icons span {
    color: #ffe4e6;
}

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

.aside-card,
.article-card {
    padding: 26px;
    background: #ffffff;
    border: 1px solid #ffe4e6;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.aside-card h2 {
    margin: 0 0 8px;
    font-size: 26px;
}

.aside-card p {
    color: var(--muted);
}

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

.rank-row {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 14px;
    padding: 10px;
    background: #ffffff;
    border: 1px solid #ffe4e6;
    border-radius: 18px;
}

.rank-cover {
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 3 / 4;
    background: #fff1f2;
}

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

.rank-line strong {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--red), var(--rose));
    border-radius: 10px;
}

.rank-body h3 {
    margin: 7px 0 5px;
    font-size: 17px;
}

.full-btn {
    width: 100%;
    margin-top: 18px;
}

.page-main {
    background: #ffffff;
}

.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0;
    background: linear-gradient(135deg, #fff1f2, #fff7ed 52%, #fdf2f8);
}

.mini-hero {
    padding: 64px 0;
}

.category-hero,
.rank-hero {
    padding: 70px 0;
}

.page-hero h1,
.detail-copy h1 {
    margin: 12px 0 12px;
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1.08;
    color: var(--dark);
}

.page-hero p,
.detail-copy .lead-text {
    max-width: 820px;
    margin: 0;
    color: #4b5563;
    font-size: 18px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    color: var(--muted);
    font-size: 14px;
}

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

.breadcrumb a::after {
    content: "/";
    margin-left: 9px;
    color: #fda4af;
}

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

.category-card-large {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 22px;
    padding: 18px;
    background: #ffffff;
    border: 1px solid #ffe4e6;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.category-collage {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    overflow: hidden;
    border-radius: 22px;
}

.category-collage img {
    width: 100%;
    height: 110px;
    object-fit: cover;
}

.category-card-large h2 {
    margin: 10px 0 8px;
    font-size: 26px;
}

.category-card-large p {
    margin: 0 0 16px;
    color: var(--muted);
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) 170px 170px;
    gap: 12px;
    margin-bottom: 28px;
    padding: 14px;
    background: #ffffff;
    border: 1px solid #ffe4e6;
    border-radius: 26px;
    box-shadow: var(--shadow);
}

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

.detail-hero-inner {
    position: relative;
}

.detail-grid {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 44px;
    margin-top: 26px;
    align-items: center;
}

.detail-poster {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 12px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 32px 70px rgba(190, 18, 60, 0.18);
}

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

.detail-poster span {
    left: 50%;
    top: 50%;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
}

.detail-meta {
    margin: 20px 0;
}

.detail-meta span {
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(244, 63, 94, 0.15);
    border-radius: 14px;
}

.tag-cloud {
    margin-top: 14px;
}

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

.player-box {
    position: relative;
    overflow: hidden;
    background: #0f172a;
    border-radius: 30px;
    box-shadow: 0 36px 80px rgba(15, 23, 42, 0.22);
}

.movie-player {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #0f172a;
}

.player-cover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.38), rgba(159, 18, 57, 0.32));
    transition: opacity 0.25s ease;
}

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

.player-start {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    padding-left: 4px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--red), var(--rose));
    border-radius: 50%;
    font-size: 32px;
    box-shadow: 0 20px 42px rgba(220, 38, 38, 0.36);
}

.detail-content {
    max-width: 980px;
}

.article-card h2 {
    margin: 0 0 12px;
    font-size: 28px;
}

.article-card h2 + p {
    margin-bottom: 28px;
}

.article-card p {
    color: #374151;
    font-size: 17px;
}

.site-footer {
    padding: 48px 0;
    background: #111827;
    color: #d1d5db;
}

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 36px;
}

.footer-brand {
    display: inline-flex;
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 24px;
}

.site-footer p {
    margin: 0;
    color: #9ca3af;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px 18px;
}

.footer-links a {
    color: #d1d5db;
}

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

.hidden-by-filter {
    display: none !important;
}

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

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

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

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

    .category-large-grid {
        grid-template-columns: 1fr;
    }
}

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

    .menu-toggle {
        display: grid;
        place-items: center;
        margin-left: auto;
    }

    .hero-section,
    .hero-shell {
        min-height: 800px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-top: 34px;
    }

    .hero-poster {
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-control {
        bottom: 28px;
    }

    .section-heading {
        display: block;
    }

    .section-more {
        margin-top: 14px;
    }

    .movie-grid,
    .catalog-grid,
    .small-grid,
    .top-three,
    .related-grid,
    .poster-showcase,
    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-icons,
    .footer-inner,
    .detail-grid,
    .filter-panel {
        grid-template-columns: 1fr;
    }

    .category-card-large {
        grid-template-columns: 1fr;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 560px) {
    .header-inner {
        height: 66px;
    }

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

    .brand-text small {
        display: none;
    }

    .hero-copy h1 {
        letter-spacing: -1px;
    }

    .hero-copy p,
    .page-hero p,
    .detail-copy .lead-text {
        font-size: 16px;
    }

    .hero-actions,
    .search-panel,
    .mobile-search {
        flex-direction: column;
        align-items: stretch;
    }

    .movie-grid,
    .catalog-grid,
    .small-grid,
    .top-three,
    .related-grid,
    .poster-showcase,
    .category-grid {
        grid-template-columns: 1fr;
    }

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

    .section-block {
        padding: 52px 0;
    }

    .player-start {
        width: 68px;
        height: 68px;
        font-size: 26px;
    }
}
