:root {
    color-scheme: light;
    --slate-950: #020617;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;
    --teal-700: #0f766e;
    --teal-600: #0d9488;
    --teal-500: #14b8a6;
    --teal-400: #2dd4bf;
    --cyan-500: #06b6d4;
    --white: #ffffff;
    --shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
    --soft-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

body {
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(180deg, #f8fafc 0%, #eef6f8 100%);
    color: var(--slate-900);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

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

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(15, 23, 42, 0.96);
    color: var(--white);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.header-inner {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.brand:hover {
    color: var(--teal-400);
}

.brand-icon {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--teal-500), var(--cyan-500));
    color: var(--white);
    box-shadow: 0 8px 24px rgba(20, 184, 166, 0.35);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    color: var(--slate-200);
    font-weight: 600;
}

.desktop-nav a,
.mobile-nav a {
    transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active,
.mobile-nav a:hover,
.mobile-nav a.is-active {
    color: var(--teal-400);
}

.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--white);
}

.mobile-nav {
    display: none;
    padding: 0 16px 16px;
    background: rgba(15, 23, 42, 0.98);
}

.mobile-nav a {
    display: block;
    padding: 12px 0;
    color: var(--slate-200);
    border-top: 1px solid rgba(148, 163, 184, 0.12);
}

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

.hero {
    position: relative;
    height: 700px;
    overflow: hidden;
    color: var(--white);
    background: var(--slate-950);
}

.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-bg,
.hero-bg img,
.hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-bg img {
    object-fit: cover;
    transform: scale(1.04);
    filter: saturate(1.1) contrast(1.02);
}

.hero-shade {
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.92) 0%, rgba(15, 23, 42, 0.76) 42%, rgba(15, 23, 42, 0.22) 100%), linear-gradient(0deg, rgba(2, 6, 23, 0.88) 0%, rgba(2, 6, 23, 0.04) 48%, rgba(2, 6, 23, 0.26) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: calc(100% - 120px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: center;
    gap: 60px;
    padding-top: 20px;
}

.hero-copy {
    max-width: 760px;
}

.hero-kicker,
.eyebrow,
.page-heading p {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--teal-400);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-copy h1 {
    margin: 16px 0 18px;
    font-size: clamp(2.6rem, 6vw, 5.7rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.hero-copy p {
    max-width: 720px;
    margin: 0;
    color: rgba(226, 232, 240, 0.94);
    font-size: 1.13rem;
    line-height: 1.9;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-tags,
.tag-row,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tags {
    margin-top: 22px;
}

.hero-tags span,
.tag-row span,
.detail-tags span {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(20, 184, 166, 0.14);
    color: var(--teal-700);
    font-size: 0.82rem;
    font-weight: 700;
}

.hero-tags span {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 14px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--teal-500), var(--cyan-500));
    color: var(--white);
    box-shadow: 0 12px 28px rgba(20, 184, 166, 0.36);
}

.btn-ghost {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-light {
    color: var(--teal-700);
    background: var(--white);
    box-shadow: var(--soft-shadow);
}

.hero-poster {
    position: relative;
    display: block;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.42);
    transform: rotate(2deg);
}

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

.hero-poster span {
    position: absolute;
    right: 18px;
    top: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(20, 184, 166, 0.94);
    color: var(--white);
    font-weight: 900;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(15, 23, 42, 0.48);
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

.hero-dots button {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.36);
    border: 0;
    cursor: pointer;
}

.hero-dots button.is-active {
    width: 34px;
    background: var(--teal-400);
}

.hero-search-wrap {
    position: absolute;
    left: 50%;
    bottom: 24px;
    z-index: 6;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: 420px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
}

.hero-search {
    display: flex;
    padding: 8px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
}

.hero-search input,
.search-controls input,
.search-controls select {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--slate-900);
    font-size: 1rem;
}

.hero-search input {
    padding: 0 14px;
}

.hero-search button {
    flex: 0 0 auto;
    border: 0;
    border-radius: 14px;
    padding: 12px 20px;
    background: var(--teal-600);
    color: var(--white);
    font-weight: 800;
    cursor: pointer;
}

.hero-thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.hero-thumb {
    min-width: 0;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-thumb img {
    width: 100%;
    height: 74px;
    object-fit: cover;
}

.hero-thumb span {
    display: block;
    padding: 8px;
    overflow: hidden;
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.site-main {
    padding: 40px 0 70px;
}

.page-hero-space {
    padding-top: 56px;
}

.section-block,
.white-block,
.ranking-panel,
.category-panel,
.search-panel,
.detail-main-card,
.sidebar-card,
.category-overview-card,
.ranking-page-list {
    border-radius: 28px;
}

.section-block {
    margin-top: 42px;
}

.white-block,
.ranking-panel,
.category-panel,
.search-panel,
.detail-main-card,
.sidebar-card,
.ranking-page-list {
    background: var(--white);
    box-shadow: var(--soft-shadow);
}

.white-block,
.search-panel,
.ranking-page-list {
    padding: 30px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.section-title > span {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.16), rgba(6, 182, 212, 0.16));
    color: var(--teal-700);
    font-size: 1.35rem;
}

.section-title h2,
.page-heading h1,
.detail-section h2,
.sidebar-card h2,
.category-overview-body h2 {
    margin: 0;
    color: var(--slate-900);
    letter-spacing: -0.04em;
}

.section-title h2 {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
}

.section-title p,
.page-heading div,
.category-overview-body p,
.detail-section p,
.movie-line,
.sidebar-card p {
    color: var(--slate-600);
    line-height: 1.75;
}

.section-title p {
    margin: 4px 0 0;
}

.section-title > a {
    margin-left: auto;
    color: var(--teal-700);
    font-weight: 800;
}

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

.movie-card {
    min-width: 0;
    border-radius: 20px;
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.14);
}

.movie-card-link {
    display: block;
    height: 100%;
}

.movie-cover {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: var(--slate-900);
}

.movie-cover img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.movie-card:hover .movie-cover img,
.related-mini:hover img,
.hero-thumb:hover img {
    transform: scale(1.07);
}

.score-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(20, 184, 166, 0.94);
    color: var(--white);
    font-weight: 900;
    font-size: 0.82rem;
}

.play-mark {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(20, 184, 166, 0.88);
    color: var(--white);
    transform: translate(-50%, -50%) scale(0.88);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

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

.movie-card-body h3 {
    margin: 0 0 8px;
    font-size: 1.08rem;
    line-height: 1.35;
    color: var(--slate-900);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-line {
    min-height: 48px;
    margin: 0 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--slate-500);
    font-size: 0.86rem;
}

.movie-meta span:not(:last-child)::after {
    content: "·";
    margin-left: 8px;
}

.tag-row span {
    padding: 4px 8px;
    font-size: 0.75rem;
}

.section-split {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 28px;
    margin-top: 42px;
}

.ranking-panel,
.category-panel {
    padding: 28px;
}

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

.rank-item,
.ranking-row-link {
    display: grid;
    align-items: center;
    gap: 14px;
    color: var(--slate-900);
}

.rank-item {
    grid-template-columns: 40px 72px minmax(0, 1fr) 44px;
    padding: 10px;
    border-radius: 16px;
    background: var(--slate-50);
}

.rank-item:hover,
.ranking-row:hover {
    background: #ecfeff;
}

.rank-item em,
.ranking-row em {
    color: var(--teal-700);
    font-weight: 900;
    font-style: normal;
}

.rank-item img {
    width: 72px;
    height: 54px;
    object-fit: cover;
    border-radius: 12px;
}

.rank-item strong,
.ranking-copy strong {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.rank-item small,
.ranking-copy small {
    color: var(--slate-500);
}

.rank-item b,
.ranking-row b {
    color: var(--teal-700);
}

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

.category-card {
    min-width: 0;
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--slate-50), #ecfeff);
    transition: transform 0.2s ease;
}

.category-card:hover {
    transform: translateY(-3px);
}

.category-card img {
    width: 82px;
    height: 82px;
    object-fit: cover;
    border-radius: 14px;
}

.category-card strong,
.category-card small {
    display: block;
}

.category-card strong {
    margin-bottom: 5px;
    color: var(--slate-900);
}

.category-card small {
    color: var(--slate-600);
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.page-heading {
    max-width: 860px;
    padding: 34px 0 16px;
}

.page-heading h1 {
    margin-top: 10px;
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    line-height: 1;
}

.page-heading div {
    margin-top: 16px;
    font-size: 1.08rem;
}

.category-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 26px;
}

.category-overview-card {
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--soft-shadow);
}

.category-overview-link {
    display: block;
}

.category-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 140px;
    overflow: hidden;
}

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

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

.category-overview-body span {
    display: inline-flex;
    margin-top: 14px;
    color: var(--teal-700);
    font-weight: 800;
}

.search-controls {
    display: grid;
    grid-template-columns: minmax(220px, 1.5fr) repeat(3, minmax(140px, 1fr));
    gap: 14px;
    margin-bottom: 26px;
}

.search-controls label {
    display: grid;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 16px;
    background: var(--slate-50);
    color: var(--slate-600);
    font-weight: 700;
}

.search-controls input,
.search-controls select {
    height: 38px;
}

.empty-state {
    display: none;
    padding: 34px;
    text-align: center;
    color: var(--slate-600);
    border-radius: 18px;
    background: var(--slate-50);
}

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

.ranking-row {
    border-radius: 18px;
    transition: background 0.2s ease;
}

.ranking-row-link {
    grid-template-columns: 54px 92px minmax(0, 1fr) 54px;
    padding: 12px;
}

.ranking-row img {
    width: 92px;
    height: 68px;
    object-fit: cover;
    border-radius: 14px;
}

.ranking-copy p {
    margin: 5px 0 0;
    color: var(--slate-600);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.detail-page {
    background: var(--slate-50);
    padding-bottom: 70px;
}

.watch-zone {
    background: var(--slate-950);
    color: var(--white);
    padding: 20px 0 34px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--slate-200);
}

.breadcrumb a:hover {
    color: var(--teal-400);
}

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

.movie-player {
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    background: radial-gradient(circle at center, rgba(20, 184, 166, 0.16), rgba(2, 6, 23, 0.32));
    color: var(--white);
    cursor: pointer;
}

.player-overlay span {
    width: 88px;
    height: 88px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(20, 184, 166, 0.92);
    box-shadow: 0 18px 34px rgba(20, 184, 166, 0.36);
    font-size: 2.3rem;
    padding-left: 5px;
}

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

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

.detail-main-card,
.sidebar-card {
    padding: 28px;
}

.detail-title-row {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.detail-title-row img {
    width: 170px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--soft-shadow);
}

.detail-title-row h1 {
    margin: 10px 0 10px;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.detail-title-row p {
    color: var(--slate-600);
    line-height: 1.8;
}

.detail-meta-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin: 28px 0;
}

.detail-meta-grid span {
    min-width: 0;
    padding: 14px;
    border-radius: 16px;
    background: var(--slate-50);
    color: var(--slate-700);
}

.detail-meta-grid b {
    display: block;
    margin-bottom: 5px;
    color: var(--teal-700);
}

.detail-section {
    padding-top: 22px;
    border-top: 1px solid var(--slate-200);
}

.detail-section + .detail-section {
    margin-top: 24px;
}

.detail-section p {
    font-size: 1.02rem;
}

.detail-sidebar {
    display: grid;
    align-content: start;
    gap: 18px;
}

.related-mini {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid var(--slate-100);
}

.related-mini img {
    width: 104px;
    height: 70px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.25s ease;
}

.related-mini strong,
.related-mini small {
    display: block;
}

.related-mini strong {
    color: var(--slate-900);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-mini small {
    margin-top: 5px;
    color: var(--slate-500);
}

.accent-card {
    background: linear-gradient(135deg, var(--teal-500), var(--cyan-500));
    color: var(--white);
}

.accent-card h2,
.accent-card p,
.accent-card a {
    color: var(--white);
}

.accent-card a {
    display: inline-flex;
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.18);
    font-weight: 800;
}

.detail-more {
    margin-top: 40px;
}

.site-footer {
    background: var(--slate-900);
    color: var(--slate-200);
    padding-top: 48px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
    gap: 34px;
}

.site-footer h2 {
    margin: 0 0 14px;
    color: var(--white);
    font-size: 1rem;
}

.site-footer p,
.site-footer li {
    color: #94a3b8;
    line-height: 1.75;
}

.site-footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-footer a:hover {
    color: var(--teal-400);
}

.footer-bottom {
    margin-top: 34px;
    padding: 22px;
    text-align: center;
    color: #94a3b8;
    border-top: 1px solid rgba(148, 163, 184, 0.14);
}

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

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

    .hero {
        height: 760px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 24px;
        align-items: end;
        padding-top: 52px;
    }

    .hero-poster {
        display: none;
    }

    .hero-search-wrap {
        grid-template-columns: 1fr;
        bottom: 18px;
    }

    .hero-thumbs {
        display: none;
    }

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

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

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

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

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

    .header-inner {
        height: 64px;
    }

    .brand {
        font-size: 1.18rem;
    }

    .hero {
        height: 690px;
    }

    .hero-copy h1 {
        font-size: 2.5rem;
    }

    .hero-copy p {
        -webkit-line-clamp: 5;
        font-size: 1rem;
    }

    .hero-arrow {
        display: none;
    }

    .hero-dots {
        bottom: 132px;
    }

    .hero-search {
        display: grid;
        gap: 8px;
    }

    .hero-search button {
        width: 100%;
    }

    .movie-grid,
    .category-grid,
    .category-overview-grid,
    .search-controls {
        grid-template-columns: 1fr;
    }

    .white-block,
    .search-panel,
    .ranking-page-list,
    .ranking-panel,
    .category-panel,
    .detail-main-card,
    .sidebar-card {
        padding: 20px;
        border-radius: 22px;
    }

    .section-title {
        align-items: flex-start;
    }

    .section-title > a {
        display: none;
    }

    .ranking-row-link {
        grid-template-columns: 42px 76px minmax(0, 1fr);
    }

    .ranking-row b {
        grid-column: 2 / -1;
        padding-left: 90px;
    }

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

    .detail-title-row img {
        width: 170px;
    }

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

    .player-overlay span {
        width: 70px;
        height: 70px;
    }
}
