*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --amber-50: #fff7ed;
    --amber-100: #ffedd5;
    --amber-200: #fed7aa;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --text-900: #1f2937;
    --text-700: #374151;
    --text-500: #6b7280;
    --line: #f1d0a9;
    --white: #ffffff;
    --soft: #fffaf4;
    --shadow: 0 16px 40px rgba(146, 64, 14, 0.13);
    --shadow-strong: 0 24px 70px rgba(146, 64, 14, 0.22);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    color: var(--text-900);
    background: linear-gradient(135deg, var(--amber-50), #ffffff 42%, #fff3e6);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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: 50;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(251, 191, 36, 0.24);
    box-shadow: 0 8px 28px rgba(146, 64, 14, 0.09);
    backdrop-filter: blur(16px);
}

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

.site-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.04em;
    background: linear-gradient(90deg, var(--amber-600), var(--orange-600));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
    box-shadow: 0 12px 30px rgba(217, 119, 6, 0.35);
    font-size: 16px;
    letter-spacing: 0;
}

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

.desktop-nav a,
.mobile-nav a {
    position: relative;
    color: var(--text-700);
    font-weight: 700;
    transition: color 0.25s ease;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -8px;
    height: 3px;
    border-radius: 999px;
    background: var(--amber-600);
    transition: right 0.25s ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover,
.desktop-nav .nav-active,
.mobile-nav .nav-active {
    color: var(--amber-600);
}

.desktop-nav a:hover::after,
.desktop-nav .nav-active::after {
    right: 0;
}

.menu-toggle {
    width: 44px;
    height: 44px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 0;
    border-radius: 12px;
    background: var(--amber-50);
    cursor: pointer;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--text-700);
}

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

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

.mobile-nav a {
    padding: 10px 12px;
    border-radius: 12px;
}

.mobile-nav a:hover,
.mobile-nav .nav-active {
    background: var(--amber-50);
}

.hero {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(135deg, #fff7ed 0%, #ffffff 46%, #ffedd5 100%);
}

.hero-blobs span {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 999px;
    filter: blur(34px);
    opacity: 0.38;
    mix-blend-mode: multiply;
    animation: blob-drift 16s ease-in-out infinite;
    z-index: -1;
}

.hero-blobs span:nth-child(1) {
    top: -80px;
    left: 4%;
    background: #fbbf24;
}

.hero-blobs span:nth-child(2) {
    top: 150px;
    right: 6%;
    background: #fb923c;
    animation-delay: 3s;
}

.hero-blobs span:nth-child(3) {
    bottom: -120px;
    left: 42%;
    background: #fed7aa;
    animation-delay: 6s;
}

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

.hero-slide {
    position: absolute;
    inset: 42px 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 440px;
    align-items: center;
    gap: 54px;
    opacity: 0;
    transform: translateX(40px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.hero-slide img {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 34px;
    box-shadow: var(--shadow-strong);
    transform: rotate(2deg);
}

.hero-shade {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    width: 92%;
    height: 72%;
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.72), rgba(234, 88, 12, 0.52));
    filter: blur(18px);
    transform: translate(34px, 28px) rotate(-3deg);
    z-index: -1;
}

.hero-copy {
    grid-column: 1;
    grid-row: 1;
    max-width: 680px;
    padding: 20px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--amber-600);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
    margin: 0;
    font-size: clamp(38px, 5.4vw, 68px);
    line-height: 1.05;
    letter-spacing: -0.08em;
}

.hero-copy h1 {
    max-width: 820px;
    background: linear-gradient(90deg, var(--amber-600), var(--orange-600), #92400e);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-copy h2 {
    margin: 18px 0 0;
    font-size: clamp(28px, 3.2vw, 46px);
    line-height: 1.12;
    letter-spacing: -0.05em;
    color: var(--text-900);
}

.hero-copy p,
.page-hero p,
.detail-copy p {
    max-width: 680px;
    margin: 18px 0 0;
    color: var(--text-500);
    font-size: 18px;
}

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

.primary-button,
.ghost-button,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.24s ease, box-shadow 0.24s ease, color 0.24s ease, background 0.24s ease;
}

.primary-button {
    min-height: 48px;
    padding: 0 24px;
    color: #ffffff;
    background: linear-gradient(90deg, var(--amber-600), var(--orange-600));
    box-shadow: 0 18px 34px rgba(217, 119, 6, 0.28);
}

.ghost-button {
    min-height: 48px;
    padding: 0 24px;
    color: var(--amber-600);
    background: #ffffff;
    border: 1px solid var(--amber-200);
}

.primary-button:hover,
.ghost-button:hover,
.text-link:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 18px 40px rgba(217, 119, 6, 0.22);
}

.inline-action {
    margin-top: 22px;
}

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

.hero-dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 999px;
    background: var(--amber-200);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
    width: 34px;
    background: var(--amber-600);
}

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

.section-soft {
    width: 100%;
    padding-left: max(16px, calc((100% - 1180px) / 2));
    padding-right: max(16px, calc((100% - 1180px) / 2));
    background: linear-gradient(135deg, rgba(255, 247, 237, 0.95), rgba(255, 255, 255, 0.95));
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 32px;
    text-align: center;
}

.section-heading.align-left {
    margin-left: 0;
    text-align: left;
}

.section-heading h2,
.detail-article h2,
.detail-side h2,
.site-footer h2 {
    margin: 0;
    color: var(--text-900);
    font-size: clamp(26px, 3vw, 42px);
    line-height: 1.15;
    letter-spacing: -0.05em;
}

.section-heading p {
    margin: 12px 0 0;
    color: var(--text-500);
    font-size: 17px;
}

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

.category-card,
.category-overview-card,
.movie-card,
.detail-article,
.detail-side,
.filter-panel,
.rank-item,
.player-shell {
    border: 1px solid rgba(251, 191, 36, 0.24);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
}

.category-card {
    min-height: 136px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
    padding: 20px;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
}

.category-card::before,
.category-cover::before {
    content: "";
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle at top right, rgba(249, 115, 22, 0.34), transparent 44%), radial-gradient(circle at bottom left, rgba(245, 158, 11, 0.28), transparent 46%);
    transition: transform 0.4s ease;
}

.category-card:hover::before,
.category-overview-card:hover .category-cover::before {
    transform: scale(1.18) rotate(8deg);
}

.category-card span,
.category-card strong {
    position: relative;
}

.category-card span,
.category-cover span {
    color: var(--amber-600);
    font-weight: 900;
    font-size: 22px;
}

.category-card strong {
    color: var(--text-500);
    font-size: 14px;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) repeat(4, minmax(150px, 180px));
    gap: 12px;
    padding: 14px;
    border-radius: 20px;
    margin-bottom: 28px;
}

.search-box {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
    min-height: 48px;
    border-radius: 999px;
    background: var(--amber-50);
    color: var(--text-500);
    font-weight: 700;
}

.search-box input,
.filter-select {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(251, 191, 36, 0.32);
    outline: none;
    color: var(--text-700);
    background: #ffffff;
}

.search-box input {
    border: 0;
    background: transparent;
}

.filter-select {
    border-radius: 999px;
    padding: 0 14px;
    cursor: pointer;
}

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

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

.movie-card {
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.movie-poster-link {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, var(--amber-100), var(--amber-50));
}

.movie-poster-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

.movie-badge,
.movie-play-mark {
    position: absolute;
    color: #ffffff;
    background: rgba(217, 119, 6, 0.92);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.movie-badge {
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.movie-play-mark {
    left: 50%;
    top: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

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

.movie-card h3,
.movie-card h2 {
    margin: 0;
    font-size: 17px;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.movie-card h3 a:hover,
.movie-card h2 a:hover {
    color: var(--amber-600);
}

.movie-card p {
    min-height: 66px;
    margin: 8px 0 12px;
    color: var(--text-500);
    font-size: 13px;
}

.movie-meta,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--text-500);
    font-size: 13px;
}

.movie-meta span,
.detail-meta span {
    padding: 4px 8px;
    border-radius: 999px;
    background: var(--amber-50);
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 9px;
    border-radius: 999px;
    color: #92400e;
    background: #ffedd5;
    font-size: 12px;
    font-weight: 700;
}

.hero-tags span {
    color: #ffffff;
    background: rgba(217, 119, 6, 0.85);
}

.split-layout {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 36px;
    align-items: start;
}

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

.rank-item {
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rank-item:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-strong);
}

.rank-link {
    display: grid;
    grid-template-columns: 54px 72px 1fr;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
}

.rank-number {
    color: var(--amber-600);
    font-size: 22px;
    font-weight: 900;
}

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

.rank-copy {
    display: grid;
    gap: 6px;
}

.rank-copy strong {
    color: var(--text-900);
    font-size: 16px;
}

.rank-copy small {
    color: var(--text-500);
}

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

.page-hero {
    min-height: 320px;
    display: flex;
    align-items: center;
    padding: 70px max(16px, calc((100% - 1180px) / 2));
    background: radial-gradient(circle at 18% 10%, rgba(251, 191, 36, 0.36), transparent 32%), linear-gradient(135deg, #fff7ed, #ffffff 52%, #ffedd5);
}

.page-hero > div {
    max-width: 820px;
}

.category-page-hero,
.ranking-page-hero {
    background: radial-gradient(circle at 82% 18%, rgba(249, 115, 22, 0.28), transparent 30%), linear-gradient(135deg, #fff7ed, #fffaf4);
}

.category-overview-grid {
    display: grid;
    gap: 22px;
}

.category-overview-card {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 24px;
    border-radius: 24px;
    padding: 18px;
    align-items: stretch;
}

.category-cover {
    position: relative;
    min-height: 170px;
    display: flex;
    align-items: flex-end;
    padding: 24px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--amber-100), var(--amber-50));
}

.category-overview-card h2 {
    margin: 4px 0 8px;
    font-size: 28px;
    letter-spacing: -0.04em;
}

.category-overview-card p {
    color: var(--text-500);
}

.category-samples {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 14px 0;
}

.category-samples a,
.text-link {
    color: var(--amber-600);
    font-weight: 800;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    background: #1f1408;
    color: #ffffff;
}

.detail-backdrop {
    position: absolute;
    inset: 0;
    opacity: 0.34;
    filter: blur(6px);
    transform: scale(1.05);
}

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

.detail-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(23, 12, 4, 0.94), rgba(23, 12, 4, 0.66), rgba(23, 12, 4, 0.34));
}

.detail-hero-inner {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    min-height: 600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    align-items: center;
    gap: 46px;
    padding: 60px 0;
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.detail-copy h1,
.detail-copy p {
    color: #ffffff;
}

.detail-copy p {
    color: rgba(255, 255, 255, 0.78);
}

.detail-copy .detail-meta span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

.detail-section {
    padding-bottom: 30px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #0f0a05;
    aspect-ratio: 16 / 9;
}

.player-shell video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background: #000000;
}

.player-start {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 0;
    color: #ffffff;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.58));
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-start span {
    width: 84px;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
    box-shadow: 0 20px 50px rgba(234, 88, 12, 0.36);
    font-size: 32px;
    padding-left: 6px;
}

.player-start strong {
    font-size: 20px;
}

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

.article-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 26px;
    align-items: start;
}

.detail-article,
.detail-side {
    border-radius: 24px;
    padding: 28px;
}

.detail-article p {
    margin: 14px 0 28px;
    color: var(--text-700);
    font-size: 17px;
}

.detail-side dl {
    margin: 18px 0 0;
    display: grid;
    gap: 14px;
}

.detail-side dt {
    color: var(--text-500);
    font-weight: 800;
}

.detail-side dd {
    margin: -8px 0 0;
    color: var(--text-900);
}

.site-footer {
    background: linear-gradient(135deg, var(--amber-50), #ffffff);
    border-top: 1px solid var(--amber-200);
}

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 52px 0 34px;
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: 40px;
}

.site-footer p {
    color: var(--text-500);
}

.site-footer h2 {
    margin-bottom: 14px;
    font-size: 20px;
}

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

.footer-links a {
    color: var(--text-500);
    font-weight: 700;
}

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

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 28px;
    color: var(--text-500);
    border-top: 1px solid var(--amber-200);
    text-align: center;
}

.is-hidden-card {
    display: none !important;
}

@keyframes blob-drift {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(24px, -32px) scale(1.08);
    }

    66% {
        transform: translate(-28px, 28px) scale(0.96);
    }
}

@media (max-width: 1080px) {
    .category-grid,
    .movie-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

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

    .hero-slide {
        grid-template-columns: minmax(0, 1fr) 340px;
    }
}

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

    .menu-toggle {
        display: flex;
    }

    .hero,
    .hero-slider {
        min-height: 760px;
    }

    .hero-slide {
        inset: 22px 0 74px;
        grid-template-columns: 1fr;
        align-content: center;
        gap: 24px;
    }

    .hero-slide img,
    .hero-shade {
        grid-column: 1;
        grid-row: 2;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-copy {
        grid-column: 1;
        grid-row: 1;
        text-align: center;
    }

    .hero-actions,
    .tag-row {
        justify-content: center;
    }

    .section-heading.align-left,
    .section-heading {
        text-align: left;
    }

    .split-layout,
    .article-section,
    .detail-hero-inner,
    .footer-inner,
    .category-overview-card {
        grid-template-columns: 1fr;
    }

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

    .wide-rank {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .site-logo {
        font-size: 20px;
    }

    .logo-mark {
        width: 36px;
        height: 36px;
    }

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

    .filter-panel {
        grid-template-columns: 1fr;
    }

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

    .movie-card p {
        min-height: auto;
    }

    .rank-link {
        grid-template-columns: 42px 62px 1fr;
        gap: 10px;
    }

    .rank-link img {
        width: 62px;
        height: 84px;
    }

    .page-hero {
        min-height: 280px;
        padding-top: 46px;
        padding-bottom: 46px;
    }

    .detail-hero-inner {
        padding: 38px 0;
    }

    .detail-poster {
        display: none;
    }

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