:root {
    --amber-50: #fff7ed;
    --amber-100: #ffedd5;
    --amber-300: #fcd34d;
    --amber-400: #f59e0b;
    --amber-500: #f97316;
    --amber-600: #ea580c;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --green-50: #ecfdf5;
    --blue-50: #eff6ff;
    --shadow-sm: 0 8px 24px rgba(17, 24, 39, 0.08);
    --shadow-lg: 0 24px 60px rgba(17, 24, 39, 0.18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    color: var(--gray-800);
    background: linear-gradient(180deg, #fff7ed 0%, #ffffff 38%, #fff7ed 100%);
}

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

img {
    max-width: 100%;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(255, 247, 237, 0.94), rgba(255, 237, 213, 0.94), rgba(255, 247, 237, 0.94));
    backdrop-filter: blur(18px);
    box-shadow: 0 8px 25px rgba(234, 88, 12, 0.13);
}

.header-inner {
    width: min(1180px, calc(100% - 32px));
    height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 182px;
}

.logo-mark,
.footer-logo span {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.28);
}

.logo-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-title {
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, var(--amber-600), #c2410c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-subtitle {
    margin-top: 4px;
    font-size: 12px;
    color: var(--gray-500);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

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

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

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

.header-search,
.mobile-search,
.large-search {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid rgba(249, 115, 22, 0.16);
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.08);
}

.header-search input,
.mobile-search input,
.large-search input {
    width: 210px;
    border: 0;
    outline: 0;
    padding: 12px 16px;
    color: var(--gray-700);
    background: transparent;
}

.header-search button,
.mobile-search button,
.large-search button {
    border: 0;
    padding: 12px 18px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
    cursor: pointer;
}

.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    color: var(--amber-600);
    background: rgba(255, 237, 213, 0.85);
    font-size: 22px;
    cursor: pointer;
}

.mobile-panel {
    display: none;
    padding: 12px 16px 18px;
    background: #fff;
    border-top: 1px solid var(--amber-100);
    box-shadow: 0 16px 30px rgba(17, 24, 39, 0.08);
}

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

.mobile-panel .nav-link {
    padding: 12px 14px;
    border-radius: 12px;
    background: var(--amber-50);
}

.home-main,
.page-main,
.detail-main {
    min-height: 72vh;
}

.hero-carousel {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 55%, #ea580c 100%);
}

.hero-glow {
    position: absolute;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
    filter: blur(40px);
    animation: pulse 5s ease-in-out infinite;
}

.hero-glow-left {
    width: 280px;
    height: 280px;
    top: 40px;
    left: 8%;
}

.hero-glow-right {
    width: 380px;
    height: 380px;
    right: 6%;
    bottom: 20px;
    animation-delay: 1s;
}

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

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 42px;
    padding: 64px 0 92px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.hero-media,
.movie-poster,
.featured-poster,
.category-index-image,
.rank-cover,
.player-card {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.25), transparent 28%), linear-gradient(135deg, #fde68a, #fb923c 52%, #ea580c);
}

.hero-media {
    min-height: 350px;
    border-radius: 34px;
    box-shadow: var(--shadow-lg);
}

.cover-layer {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.05), rgba(17, 24, 39, 0.62));
    z-index: 1;
}

.cover-img,
.hero-image,
.player-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.2s ease;
}

img.is-missing {
    opacity: 0;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    font-size: 14px;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.hero-content h1 {
    margin: 22px 0 18px;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -0.045em;
}

.hero-content p {
    max-width: 560px;
    font-size: 20px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
}

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

.hero-tags {
    margin: 22px 0 28px;
}

.hero-tags span,
.tag-row span,
.pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.hero-tags span {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
}

.tag-row span,
.pill {
    color: #c2410c;
    background: #ffedd5;
}

.hero-actions,
.center-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.primary-btn,
.ghost-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;
}

.primary-btn {
    color: #fff;
    background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
    box-shadow: 0 16px 30px rgba(234, 88, 12, 0.24);
}

.ghost-btn {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.16);
}

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

.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 18px;
    transform: translateX(-50%);
}

.hero-controls button {
    border: 0;
    cursor: pointer;
}

.hero-controls > button {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.22);
    font-size: 28px;
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    transition: width 0.2s ease, background 0.2s ease;
}

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

.section-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.section-heading h2 {
    margin: 0;
    color: var(--gray-800);
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 900;
    letter-spacing: -0.03em;
}

.section-heading p {
    margin: 4px 0 0;
    color: var(--gray-500);
}

.section-dot {
    color: var(--amber-500);
    font-size: 22px;
}

.feature-section,
.catalog-preview,
.ranking-list,
.search-results-wrap {
    padding: 70px 0;
}

.featured-card {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    overflow: hidden;
    border-radius: 30px;
    background: #fff;
    box-shadow: var(--shadow-lg);
}

.featured-poster {
    min-height: 420px;
}

.large-play,
.play-badge {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(245, 158, 11, 0.92);
    box-shadow: 0 16px 30px rgba(17, 24, 39, 0.18);
}

.large-play {
    top: 50%;
    left: 50%;
    width: 82px;
    height: 82px;
    border-radius: 999px;
    font-size: 34px;
    transform: translate(-50%, -50%);
}

.featured-content {
    padding: 42px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 18px;
}

.featured-content h2 {
    margin: 0;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.08;
    font-weight: 900;
}

.featured-content p {
    color: var(--gray-600);
    line-height: 1.85;
}

.info-strip,
.detail-meta-row,
.movie-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    color: var(--gray-500);
    font-size: 14px;
}

.info-strip span,
.detail-meta-row span,
.movie-meta span {
    padding: 4px 9px;
    border-radius: 999px;
    background: var(--gray-100);
}

.soft-section {
    padding: 70px 0;
    background: linear-gradient(90deg, var(--blue-50), #ecfeff);
}

.category-section {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--green-50), #f0fdfa);
}

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

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

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

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

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

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

.movie-poster {
    display: block;
    aspect-ratio: 16 / 10;
}

.play-badge {
    top: 50%;
    left: 50%;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.92);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.category-badge {
    position: absolute;
    z-index: 2;
    top: 12px;
    left: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    color: #fff;
    background: rgba(245, 158, 11, 0.95);
    font-size: 12px;
    font-weight: 800;
}

.movie-info {
    padding: 18px;
}

.movie-title {
    display: -webkit-box;
    min-height: 2.8em;
    overflow: hidden;
    color: var(--gray-800);
    font-size: 18px;
    line-height: 1.4;
    font-weight: 900;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

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

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

.movie-card-wide .movie-poster {
    aspect-ratio: auto;
    min-height: 210px;
}

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

.category-tile,
.category-index-card {
    display: block;
    padding: 26px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover,
.category-index-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.category-tile span,
.category-index-card h2 {
    display: block;
    color: var(--gray-800);
    font-size: 22px;
    font-weight: 900;
}

.category-tile p,
.category-index-card p {
    margin: 10px 0 0;
    color: var(--gray-600);
    line-height: 1.7;
}

.center-actions {
    justify-content: center;
    margin-top: 38px;
}

.page-hero {
    padding: 82px 0;
    color: #fff;
    background: radial-gradient(circle at 15% 10%, rgba(255, 255, 255, 0.26), transparent 28%), linear-gradient(135deg, #f59e0b, #f97316 52%, #c2410c);
}

.page-hero h1 {
    max-width: 900px;
    margin: 18px 0;
    font-size: clamp(38px, 6vw, 64px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.page-hero p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 19px;
    line-height: 1.8;
}

.category-index-grid {
    padding: 70px 0;
}

.category-index-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    align-items: center;
}

.category-index-image {
    aspect-ratio: 1 / 1;
    border-radius: 20px;
}

.category-index-card span:last-child {
    display: inline-flex;
    margin-top: 14px;
    color: var(--amber-600);
    font-weight: 800;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 42px;
}

.pagination div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.pagination a,
.pagination span {
    min-width: 42px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border-radius: 12px;
    color: var(--gray-700);
    background: #fff;
    box-shadow: var(--shadow-sm);
    font-weight: 800;
}

.pagination a.is-active {
    color: #fff;
    background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
}

.pagination span {
    color: #9ca3af;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 58px 140px 1fr;
    gap: 20px;
    align-items: center;
    padding: 16px;
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.rank-num {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
    font-weight: 900;
}

.rank-cover {
    aspect-ratio: 16 / 10;
    border-radius: 16px;
}

.rank-copy h2 {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 900;
}

.rank-copy p {
    margin: 0 0 12px;
    color: var(--gray-600);
    line-height: 1.7;
}

.large-search {
    max-width: 720px;
    margin-top: 28px;
    border-radius: 20px;
}

.large-search input {
    flex: 1;
    width: auto;
    padding: 18px 20px;
}

.large-search button {
    padding: 18px 26px;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    padding: 42px 0 70px;
}

.back-link {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--gray-600);
    font-weight: 800;
}

.back-link:hover {
    color: var(--amber-600);
}

.player-card {
    aspect-ratio: 16 / 9;
    border-radius: 28px;
    background: #111827;
    box-shadow: var(--shadow-lg);
}

.movie-video,
.player-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.movie-video {
    z-index: 1;
    background: #111827;
}

.player-overlay {
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-button {
    position: relative;
    z-index: 4;
    width: 96px;
    height: 96px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: rgba(245, 158, 11, 0.94);
    box-shadow: 0 20px 48px rgba(17, 24, 39, 0.34);
    cursor: pointer;
    transition: transform 0.2s ease;
}

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

.player-button span {
    display: inline-block;
    margin-left: 5px;
    font-size: 42px;
}

.detail-content-card,
.side-card {
    margin-top: 22px;
    padding: 30px;
    border-radius: 26px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.detail-title-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

.detail-title-row h1 {
    margin: 0;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.score-badge {
    min-width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
    font-size: 24px;
    font-weight: 900;
}

.detail-meta-row,
.detail-tags {
    margin-top: 18px;
}

.detail-lead {
    margin: 24px 0;
    padding: 20px;
    border-left: 5px solid var(--amber-500);
    border-radius: 16px;
    color: var(--gray-700);
    background: var(--amber-50);
    font-size: 18px;
    line-height: 1.8;
}

.detail-content-card h2,
.side-card h2 {
    margin: 30px 0 14px;
    color: var(--gray-800);
    font-size: 24px;
    font-weight: 900;
}

.detail-content-card h2:first-child,
.side-card h2:first-child {
    margin-top: 0;
}

.detail-content-card p {
    color: var(--gray-700);
    line-height: 1.95;
}

.side-card dl {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 12px 16px;
    margin: 0;
}

.side-card dt {
    color: var(--gray-500);
    font-weight: 700;
}

.side-card dd {
    margin: 0;
    color: var(--gray-800);
    font-weight: 800;
}

.related-list {
    display: grid;
    gap: 16px;
}

.related-card {
    display: grid;
    grid-template-columns: 110px 1fr;
    border-radius: 16px;
}

.related-card .movie-poster {
    aspect-ratio: 1 / 1;
}

.related-card .movie-info {
    padding: 12px;
}

.related-card .movie-title {
    min-height: auto;
    font-size: 15px;
}

.related-card .movie-info p {
    min-height: auto;
    margin-bottom: 0;
    font-size: 12px;
}

.site-footer {
    color: #d1d5db;
    background: linear-gradient(135deg, #111827, #1f2937 48%, #111827);
}

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 54px 0 36px;
    display: grid;
    grid-template-columns: 1.3fr 0.75fr 0.9fr 0.8fr;
    gap: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 20px;
    font-weight: 900;
}

.footer-brand p,
.site-footer li {
    color: #9ca3af;
    line-height: 1.8;
}

.site-footer h3 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 17px;
    font-weight: 900;
}

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

.site-footer a:hover {
    color: #fbbf24;
}

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #9ca3af;
    font-size: 14px;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.55;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.08);
    }
}

@media (max-width: 1080px) {
    .header-search {
        display: none;
    }
    .three-col,
    .four-col,
    .category-grid,
    .category-index-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .hero-slide,
    .featured-card,
    .detail-layout {
        grid-template-columns: 1fr;
    }
    .hero-track {
        min-height: 820px;
    }
    .hero-media {
        order: 2;
    }
    .detail-side {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
}

@media (max-width: 760px) {
    .desktop-nav {
        display: none;
    }
    .mobile-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .header-inner {
        height: 64px;
    }
    .site-logo {
        min-width: 0;
    }
    .logo-title {
        font-size: 18px;
    }
    .hero-track {
        min-height: 760px;
    }
    .hero-slide {
        padding: 42px 0 90px;
        gap: 28px;
    }
    .hero-media {
        min-height: 240px;
        border-radius: 24px;
    }
    .hero-content h1 {
        font-size: 42px;
    }
    .hero-content p,
    .page-hero p {
        font-size: 16px;
    }
    .three-col,
    .four-col,
    .category-grid,
    .category-index-grid,
    .detail-side,
    .footer-inner {
        grid-template-columns: 1fr;
    }
    .movie-card-wide,
    .category-index-card,
    .rank-item,
    .related-card {
        grid-template-columns: 1fr;
    }
    .rank-cover,
    .related-card .movie-poster {
        aspect-ratio: 16 / 10;
    }
    .featured-poster {
        min-height: 260px;
    }
    .featured-content,
    .detail-content-card,
    .side-card {
        padding: 22px;
    }
    .page-hero {
        padding: 56px 0;
    }
    .pagination {
        flex-direction: column;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .player-button {
        width: 76px;
        height: 76px;
    }
    .player-button span {
        font-size: 32px;
    }
}
