:root {
    --bg: #fff7ed;
    --panel: rgba(255, 255, 255, 0.82);
    --text: #111827;
    --muted: #6b7280;
    --line: rgba(251, 146, 60, 0.22);
    --orange: #f97316;
    --pink: #ec4899;
    --purple: #9333ea;
    --yellow: #facc15;
    --shadow: 0 24px 70px rgba(249, 115, 22, 0.18);
    --soft-shadow: 0 18px 45px rgba(17, 24, 39, 0.1);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: linear-gradient(180deg, #fff7ed 0%, #fff1f2 42%, #ffffff 100%);
    min-height: 100vh;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(255, 247, 237, 0.92), rgba(253, 242, 248, 0.92));
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.nav-wrap {
    max-width: 1220px;
    height: 68px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    box-shadow: 0 12px 28px rgba(236, 72, 153, 0.28);
    transition: transform 0.28s ease;
}

.brand:hover .brand-mark {
    transform: scale(1.08) rotate(4deg);
}

.brand-text {
    font-size: 22px;
    background: linear-gradient(90deg, #ea580c, #db2777);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link,
.mobile-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 14px;
    color: #374151;
    font-weight: 700;
    transition: all 0.22s ease;
}

.nav-link:hover,
.mobile-link:hover {
    color: #ea580c;
    background: rgba(255, 255, 255, 0.72);
}

.nav-link.active,
.mobile-link.active {
    color: #fff;
    background: linear-gradient(90deg, var(--orange), var(--pink));
    box-shadow: 0 14px 28px rgba(249, 115, 22, 0.24);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.7);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: #374151;
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    padding: 10px 20px 18px;
    border-top: 1px solid var(--line);
    background: #fff;
}

.mobile-nav.open {
    display: grid;
    gap: 8px;
}

.main-offset {
    padding-top: 68px;
}

.hero {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    padding: 118px 20px 70px;
    background: radial-gradient(circle at 15% 20%, rgba(251, 146, 60, 0.26), transparent 30%), radial-gradient(circle at 90% 18%, rgba(236, 72, 153, 0.22), transparent 34%), linear-gradient(135deg, #ffedd5 0%, #fdf2f8 48%, #fff7ed 100%);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(8px);
    opacity: 0.7;
}

.hero::before {
    width: 360px;
    height: 360px;
    left: -110px;
    top: 130px;
    background: rgba(251, 146, 60, 0.22);
}

.hero::after {
    width: 420px;
    height: 420px;
    right: -120px;
    bottom: 20px;
    background: rgba(236, 72, 153, 0.2);
}

.hero-inner,
.section,
.page-shell,
.footer-grid {
    max-width: 1220px;
    margin: 0 auto;
}

.hero-inner {
    position: relative;
    z-index: 2;
}

.hero-kicker {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 9px 14px;
    border: 1px solid rgba(249, 115, 22, 0.25);
    border-radius: 999px;
    color: #c2410c;
    background: rgba(255, 255, 255, 0.66);
    font-weight: 800;
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.55);
}

.hero-stage {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 490px);
    align-items: center;
    gap: 46px;
}

.hero-copy h1 {
    margin: 22px 0 18px;
    font-size: clamp(42px, 6.2vw, 76px);
    line-height: 1.03;
    letter-spacing: -0.06em;
    max-width: 780px;
}

.gradient-text {
    background: linear-gradient(90deg, #ea580c, #db2777, #7e22ce);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-copy p {
    max-width: 690px;
    color: #4b5563;
    font-size: 19px;
    line-height: 1.85;
}

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

.btn,
.small-btn,
.ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    font-weight: 850;
    transition: all 0.25s ease;
}

.btn {
    padding: 15px 24px;
    color: #fff;
    background: linear-gradient(90deg, var(--orange), var(--pink));
    box-shadow: 0 16px 32px rgba(249, 115, 22, 0.28);
}

.btn:hover,
.small-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 38px rgba(236, 72, 153, 0.28);
}

.ghost-btn {
    padding: 14px 23px;
    color: #c2410c;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(249, 115, 22, 0.22);
}

.ghost-btn:hover {
    color: #fff;
    background: #111827;
}

.hero-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 36px;
}

.metric {
    min-width: 128px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.62);
    box-shadow: 0 18px 44px rgba(17, 24, 39, 0.08);
}

.metric strong {
    display: block;
    font-size: 24px;
}

.metric span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.hero-slider {
    position: relative;
    min-height: 620px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(22px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.hero-card {
    position: relative;
    min-height: 620px;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #111827;
}

.hero-card img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    opacity: 0.92;
}

.hero-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.06), rgba(17, 24, 39, 0.78));
}

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

.hero-card-content h2 {
    margin: 12px 0;
    font-size: 34px;
    line-height: 1.1;
}

.hero-card-content p {
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.75;
}

.hero-tags,
.tag-row,
.meta-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tags span,
.tag-row span {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: inherit;
    font-size: 12px;
    font-weight: 800;
}

.hero-dots {
    position: absolute;
    right: 22px;
    bottom: 22px;
    z-index: 5;
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.52);
}

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

.section {
    padding: 74px 20px;
}

.section.tint {
    max-width: none;
    background: linear-gradient(135deg, rgba(255, 237, 213, 0.92), rgba(252, 231, 243, 0.9));
}

.section.tint > .section-inner {
    max-width: 1220px;
    margin: 0 auto;
}

.section-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 30px;
}

.section-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    box-shadow: 0 14px 30px rgba(249, 115, 22, 0.22);
    font-weight: 900;
}

.section-head h2,
.page-title h1 {
    margin: 0;
    font-size: clamp(28px, 3.2vw, 44px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.section-head p,
.page-title p {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.75;
}

.section-topline {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 26px;
}

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

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

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

.movie-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--soft-shadow);
    border: 1px solid rgba(255, 255, 255, 0.68);
    transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.movie-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 26px 64px rgba(17, 24, 39, 0.14);
}

.movie-card.large {
    display: grid;
    grid-template-columns: minmax(260px, 0.82fr) 1fr;
    min-height: 360px;
}

.movie-card.horizontal {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
}

.poster-link {
    position: relative;
    display: block;
    min-height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #fed7aa, #fbcfe8);
}

.movie-card.large .poster-link,
.movie-card.horizontal .poster-link {
    min-height: 100%;
}

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

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

.poster-link::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(17, 24, 39, 0.48));
}

.type-badge,
.rank-num,
.play-float {
    position: absolute;
    z-index: 2;
}

.type-badge {
    top: 14px;
    left: 14px;
    padding: 7px 11px;
    color: #fff;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    background: linear-gradient(90deg, var(--orange), var(--pink));
}

.rank-num {
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(17, 24, 39, 0.78);
    backdrop-filter: blur(10px);
}

.play-float {
    left: 50%;
    top: 50%;
    width: 56px;
    height: 56px;
    transform: translate(-50%, -50%) scale(0.86);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.5);
    opacity: 0;
    transition: all 0.25s ease;
    backdrop-filter: blur(10px);
}

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

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

.movie-card-body h2 {
    margin: 10px 0 10px;
    font-size: 21px;
    line-height: 1.25;
}

.movie-card-body h2 a:hover {
    color: #ea580c;
}

.movie-card-body p {
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 14px;
}

.meta-line {
    color: #ea580c;
    font-size: 12px;
    font-weight: 850;
}

.meta-line span {
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(255, 237, 213, 0.86);
}

.tag-row span {
    color: #6b21a8;
    background: #fae8ff;
}

.card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.small-btn {
    padding: 10px 15px;
    color: #fff;
    font-size: 13px;
    background: linear-gradient(90deg, var(--orange), var(--pink));
}

.category-cloud,
.pagination,
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.category-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 17px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(249, 115, 22, 0.16);
    color: #7c2d12;
    font-weight: 850;
    box-shadow: 0 12px 28px rgba(249, 115, 22, 0.08);
}

.category-pill:hover {
    color: #fff;
    background: linear-gradient(90deg, var(--orange), var(--pink));
}

.page-hero {
    padding: 126px 20px 50px;
    background: radial-gradient(circle at 12% 12%, rgba(249, 115, 22, 0.24), transparent 32%), linear-gradient(135deg, #fff7ed, #fdf2f8);
}

.page-title {
    max-width: 1220px;
    margin: 0 auto;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #9a3412;
    font-weight: 800;
    margin-bottom: 16px;
}

.breadcrumbs a:hover {
    color: #db2777;
}

.filter-panel {
    max-width: 1220px;
    margin: 0 auto 26px;
    padding: 22px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.68);
    box-shadow: var(--soft-shadow);
}

.filter-bar input,
.filter-bar select {
    min-height: 46px;
    border: 1px solid rgba(249, 115, 22, 0.18);
    border-radius: 16px;
    padding: 0 14px;
    background: #fff;
    color: #374151;
    outline: none;
}

.filter-bar input {
    flex: 1 1 280px;
}

.filter-bar select {
    flex: 1 1 150px;
}

.filter-bar input:focus,
.filter-bar select:focus {
    border-color: rgba(236, 72, 153, 0.55);
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.11);
}

.search-results {
    display: none;
    margin-top: 24px;
}

.search-results.open {
    display: block;
}

.pagination {
    align-items: center;
    justify-content: center;
    margin-top: 38px;
}

.pagination a,
.pagination span {
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.8);
    color: #7c2d12;
    font-weight: 900;
    border: 1px solid rgba(249, 115, 22, 0.16);
}

.pagination .current,
.pagination a:hover {
    color: #fff;
    background: linear-gradient(90deg, var(--orange), var(--pink));
}

.detail-hero {
    position: relative;
    padding: 118px 20px 54px;
    background: #111827;
    overflow: hidden;
    color: #fff;
}

.detail-bg {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    filter: blur(16px);
    transform: scale(1.08);
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.detail-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(17, 24, 39, 0.94), rgba(17, 24, 39, 0.72), rgba(17, 24, 39, 0.4));
}

.detail-wrap {
    position: relative;
    z-index: 2;
    max-width: 1220px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 36px;
    align-items: end;
}

.detail-poster {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

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

.detail-copy h1 {
    margin: 12px 0 16px;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.detail-copy p {
    color: rgba(255, 255, 255, 0.86);
    max-width: 760px;
    line-height: 1.85;
    font-size: 18px;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.detail-meta span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.13);
    color: #fff;
    font-weight: 850;
    backdrop-filter: blur(10px);
}

.player-section {
    padding: 48px 20px 0;
    background: linear-gradient(180deg, #111827, #fff7ed 62%);
}

.player-card {
    position: relative;
    max-width: 1120px;
    margin: 0 auto;
    border-radius: 34px;
    overflow: hidden;
    background: #020617;
    box-shadow: 0 28px 80px rgba(17, 24, 39, 0.32);
    aspect-ratio: 16 / 9;
    cursor: pointer;
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 18px;
    color: #fff;
    background: radial-gradient(circle at 50% 45%, rgba(236, 72, 153, 0.2), rgba(2, 6, 23, 0.7)), linear-gradient(180deg, rgba(2, 6, 23, 0.05), rgba(2, 6, 23, 0.72));
    transition: opacity 0.22s ease, visibility 0.22s ease;
    pointer-events: auto;
}

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

.player-button {
    width: 82px;
    height: 82px;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    box-shadow: 0 20px 54px rgba(236, 72, 153, 0.36);
    font-size: 32px;
    transition: transform 0.25s ease;
}

.player-button:hover {
    transform: scale(1.08);
}

.player-overlay strong {
    font-size: 22px;
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 30px;
}

.article-panel,
.side-panel,
.category-box {
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--soft-shadow);
}

.article-panel {
    padding: 30px;
}

.article-panel h2,
.side-panel h2,
.category-box h2 {
    margin: 0 0 16px;
    font-size: 24px;
}

.article-panel p {
    color: #4b5563;
    line-height: 1.9;
    margin: 0 0 22px;
}

.side-panel {
    padding: 22px;
    align-self: start;
    position: sticky;
    top: 88px;
}

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

.compact-card {
    display: grid;
    grid-template-columns: 74px 24px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255, 247, 237, 0.76);
    transition: all 0.22s ease;
}

.compact-card:hover {
    background: #fff;
    transform: translateX(4px);
}

.compact-card img {
    width: 74px;
    height: 96px;
    border-radius: 14px;
    object-fit: cover;
    background: #fed7aa;
}

.compact-card strong {
    display: inline-flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    font-size: 12px;
}

.compact-card h2 {
    font-size: 15px;
    margin: 0 0 5px;
    line-height: 1.35;
}

.compact-card p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.category-box {
    padding: 24px;
}

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

.category-box p {
    color: var(--muted);
    line-height: 1.7;
}

.site-footer {
    color: #d1d5db;
    background: linear-gradient(135deg, #111827, #1f2937 52%, #111827);
    margin-top: 76px;
}

.footer-grid {
    padding: 54px 20px 34px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 28px;
}

.footer-brand {
    color: #fff;
    margin-bottom: 14px;
}

.site-footer p {
    color: #9ca3af;
    line-height: 1.75;
}

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

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

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

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

.footer-bottom {
    max-width: 1220px;
    margin: 0 auto;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #9ca3af;
}

@media (max-width: 1024px) {
    .hero-stage,
    .detail-wrap,
    .content-grid {
        grid-template-columns: 1fr;
    }

    .hero-slider {
        min-height: 520px;
    }

    .hero-card,
    .hero-card img {
        min-height: 520px;
        height: 520px;
    }

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

    .detail-wrap {
        align-items: start;
    }

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

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

    .menu-toggle {
        display: flex;
    }

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

    .hero {
        padding-top: 100px;
        min-height: auto;
    }

    .hero-copy h1 {
        font-size: 42px;
    }

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

    .hero-slider {
        min-height: 430px;
    }

    .hero-card,
    .hero-card img {
        min-height: 430px;
        height: 430px;
        border-radius: 28px;
    }

    .hero-card-content {
        padding: 24px;
    }

    .hero-card-content h2 {
        font-size: 26px;
    }

    .section {
        padding: 52px 16px;
    }

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

    .card-grid,
    .card-grid.three,
    .card-grid.two,
    .category-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .movie-card.large,
    .movie-card.horizontal {
        grid-template-columns: 1fr;
    }

    .poster-link,
    .movie-card.large .poster-link,
    .movie-card.horizontal .poster-link {
        min-height: 360px;
    }

    .detail-hero {
        padding-top: 100px;
    }

    .player-card {
        border-radius: 22px;
    }

    .article-panel,
    .side-panel {
        padding: 22px;
    }
}
