:root {
    --page-bg: #fff7ed;
    --surface: #ffffff;
    --surface-soft: #fffbeb;
    --text: #1f2937;
    --muted: #6b7280;
    --line: rgba(245, 158, 11, 0.22);
    --amber: #d97706;
    --orange: #ea580c;
    --dark: #111827;
    --shadow: 0 24px 60px rgba(146, 64, 14, 0.16);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: radial-gradient(circle at top left, rgba(251, 191, 36, 0.24), transparent 32rem), var(--page-bg);
    color: var(--text);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: linear-gradient(90deg, #b45309, #f97316, #d97706);
    color: #fff;
    box-shadow: 0 16px 40px rgba(124, 45, 18, 0.24);
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    max-width: 1280px;
    min-height: 72px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.site-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 1.55rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.site-logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.36);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    font-weight: 700;
}

.nav-link {
    position: relative;
    opacity: 0.92;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #fef3c7;
    opacity: 1;
}

.nav-link.active::after {
    position: absolute;
    right: 0;
    bottom: -0.6rem;
    left: 0;
    height: 3px;
    border-radius: 99px;
    background: #fff7ed;
    content: "";
}

.header-search {
    display: flex;
    align-items: center;
    overflow: hidden;
    width: min(320px, 26vw);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
}

.header-search input,
.mobile-panel input,
.inline-search {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: inherit;
}

.header-search input {
    padding: 0.72rem 1rem;
    color: #fff;
}

.header-search input::placeholder,
.mobile-panel input::placeholder {
    color: rgba(255, 255, 255, 0.72);
}

.header-search button,
.mobile-panel button {
    border: 0;
    padding: 0.72rem 1rem;
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
    font-weight: 800;
}

.mobile-toggle {
    display: none;
    border: 0;
    border-radius: 14px;
    padding: 0.5rem 0.7rem;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 1.4rem;
}

.mobile-panel {
    display: none;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.25rem 1rem;
}

.mobile-panel.open {
    display: grid;
    gap: 0.8rem;
}

.mobile-panel a {
    display: block;
    border-radius: 14px;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.14);
    font-weight: 800;
}

.mobile-panel form {
    display: flex;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.14);
}

.mobile-panel input {
    padding: 0.8rem 1rem;
    color: #fff;
}

main {
    min-height: 62vh;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 1.5rem;
    max-width: 1280px;
    margin: 1.5rem auto 0;
    padding: 0 1.25rem;
}

.hero-carousel {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    border-radius: 32px;
    box-shadow: var(--shadow);
    background: var(--dark);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: clamp(2rem, 5vw, 4.8rem);
    opacity: 0;
    pointer-events: none;
    transform: scale(1.02);
    transition: opacity 0.6s ease, transform 0.8s ease;
}

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

.hero-bg,
.hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-bg {
    object-fit: cover;
}

.hero-shade {
    background: linear-gradient(90deg, rgba(17, 24, 39, 0.92), rgba(17, 24, 39, 0.54), rgba(180, 83, 9, 0.20)), linear-gradient(0deg, rgba(17, 24, 39, 0.75), transparent 45%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(760px, 100%);
    color: #fff;
}

.hero-kicker,
.detail-kicker,
.page-hero p {
    margin: 0 0 0.75rem;
    color: #fed7aa;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.hero h1,
.page-hero h1,
.detail-copy h1 {
    margin: 0;
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.hero h1 {
    max-width: 780px;
    font-size: clamp(2.5rem, 6vw, 5.4rem);
}

.hero p {
    max-width: 720px;
    margin: 1rem 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.12rem;
    line-height: 1.85;
}

.hero-tags,
.movie-card-tags,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.hero-tags {
    margin-top: 1.25rem;
}

.hero-tags span,
.movie-card-tags span,
.detail-tags span {
    border: 1px solid rgba(245, 158, 11, 0.28);
    border-radius: 999px;
    padding: 0.35rem 0.7rem;
    background: rgba(255, 251, 235, 0.82);
    color: #92400e;
    font-size: 0.82rem;
    font-weight: 800;
}

.hero-tags span {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.16);
    color: #fff7ed;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.6rem;
}

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

.primary-button {
    padding: 0.9rem 1.35rem;
    background: linear-gradient(90deg, #f59e0b, #f97316);
    color: #fff;
    box-shadow: 0 14px 30px rgba(217, 119, 6, 0.28);
}

.ghost-button {
    border: 1px solid rgba(255, 255, 255, 0.38);
    padding: 0.86rem 1.25rem;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

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

.hero-dots {
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    z-index: 4;
    display: flex;
    gap: 0.55rem;
}

.hero-dots button {
    width: 0.72rem;
    height: 0.72rem;
    border: 0;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.45);
}

.hero-dots button.active {
    width: 2.2rem;
    background: #fff;
}

.hero-side {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    border-radius: 32px;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.hero-side h2,
.ranking-panel-head h2 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 950;
}

.hero-mini-card {
    position: relative;
    overflow: hidden;
    min-height: 124px;
    border-radius: 20px;
    background: var(--dark);
    color: #fff;
}

.hero-mini-card img {
    width: 100%;
    height: 124px;
    object-fit: cover;
    opacity: 0.82;
    transition: transform 0.35s ease;
}

.hero-mini-card:hover img {
    transform: scale(1.07);
}

.hero-mini-card span {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 2.4rem 0.9rem 0.8rem;
    background: linear-gradient(0deg, rgba(17, 24, 39, 0.88), transparent);
    font-weight: 900;
}

.hero-side-link {
    border-radius: 18px;
    padding: 0.9rem 1rem;
    background: #111827;
    color: #fff;
    font-weight: 900;
    text-align: center;
}

.content-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 1.25rem 0;
}

.section-heading {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.6rem;
}

.section-heading > span {
    width: 3.25rem;
    height: 0.28rem;
    border-radius: 99px;
    background: linear-gradient(90deg, #f59e0b, #f97316);
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    font-weight: 950;
}

.section-heading p {
    margin: 0.25rem 0 0;
    color: var(--muted);
}

.category-grid,
.category-overview-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.category-card,
.category-overview-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 16px 45px rgba(146, 64, 14, 0.08);
}

.category-card {
    display: grid;
    gap: 0.5rem;
    min-height: 150px;
    padding: 1.25rem;
}

.category-card strong {
    color: #92400e;
    font-size: 1.3rem;
    font-weight: 950;
}

.category-card span,
.category-overview-card p {
    color: var(--muted);
    line-height: 1.7;
}

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

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 16px 42px rgba(146, 64, 14, 0.10);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(146, 64, 14, 0.18);
}

.movie-card-cover {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #111827;
}

.movie-card-cover img,
.detail-poster img,
.rank-cover img,
.category-samples img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.movie-card-cover img {
    transition: transform 0.36s ease, opacity 0.2s ease;
}

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

.movie-card-year,
.movie-card-play {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    background: rgba(17, 24, 39, 0.78);
    color: #fff;
    font-weight: 900;
}

.movie-card-year {
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.28rem 0.65rem;
    font-size: 0.78rem;
}

.movie-card-play {
    right: 0.75rem;
    bottom: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
}

.movie-card-body {
    display: grid;
    gap: 0.65rem;
    padding: 1rem;
}

.movie-card-meta,
.rank-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    color: #b45309;
    font-size: 0.78rem;
    font-weight: 850;
}

.movie-card-title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 950;
    line-height: 1.35;
}

.movie-card-title a:hover,
.rank-info a:hover {
    color: var(--orange);
}

.movie-card-desc {
    min-height: 3.2rem;
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

.movie-card.is-compact .movie-card-desc {
    min-height: 0;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 1.5rem;
    align-items: start;
}

.ranking-panel,
.large-rank-list {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow);
}

.ranking-panel {
    position: sticky;
    top: 96px;
    padding: 1.2rem;
}

.ranking-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.ranking-panel-head a,
.text-link {
    color: #d97706;
    font-weight: 950;
}

.rank-list {
    display: grid;
    gap: 0.85rem;
}

.rank-item {
    display: grid;
    grid-template-columns: 42px 76px minmax(0, 1fr);
    gap: 0.8rem;
    align-items: center;
    border-radius: 18px;
    padding: 0.65rem;
    background: #fff7ed;
}

.rank-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    color: #fff;
    font-weight: 950;
}

.rank-cover {
    overflow: hidden;
    width: 76px;
    height: 96px;
    border-radius: 14px;
    background: #111827;
}

.rank-info h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 950;
}

.rank-info p {
    margin: 0.35rem 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

.large-rank-list {
    padding: 1rem;
}

.large-rank-list .rank-item {
    grid-template-columns: 56px 100px minmax(0, 1fr);
}

.large-rank-list .rank-cover {
    width: 100px;
    height: 130px;
}

.page-hero,
.detail-hero {
    max-width: 1280px;
    margin: 1.5rem auto 0;
    border-radius: 32px;
    padding: clamp(2rem, 5vw, 4rem);
    box-shadow: var(--shadow);
}

.page-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 280px;
    background: linear-gradient(135deg, rgba(146, 64, 14, 0.94), rgba(249, 115, 22, 0.86)), radial-gradient(circle at right, rgba(254, 243, 199, 0.35), transparent 28rem);
    color: #fff;
}

.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 4.4rem);
}

.page-hero span {
    display: block;
    max-width: 720px;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.1rem;
    line-height: 1.8;
}

.filter-panel {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.4rem;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 12px 35px rgba(146, 64, 14, 0.08);
}

.inline-search {
    border: 1px solid rgba(245, 158, 11, 0.30);
    border-radius: 18px;
    padding: 0.9rem 1rem;
    background: #fff;
    color: var(--text);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.filter-buttons button {
    border: 1px solid rgba(245, 158, 11, 0.35);
    border-radius: 999px;
    padding: 0.55rem 0.9rem;
    background: #fffbeb;
    color: #92400e;
    font-weight: 850;
}

.filter-buttons button.active,
.filter-buttons button:hover {
    background: linear-gradient(90deg, #f59e0b, #f97316);
    color: #fff;
}

.category-overview-card {
    display: grid;
    gap: 1rem;
    padding: 1rem;
}

.category-overview-head h2 {
    margin: 0 0 0.5rem;
    font-size: 1.45rem;
    font-weight: 950;
}

.category-samples {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.6rem;
}

.category-samples a {
    position: relative;
    overflow: hidden;
    height: 112px;
    border-radius: 16px;
    background: #111827;
}

.category-samples span {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.8rem 0.5rem 0.45rem;
    background: linear-gradient(0deg, rgba(17, 24, 39, 0.84), transparent);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 850;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    max-width: 1280px;
    margin: 1.3rem auto 0;
    padding: 0 1.25rem;
    color: #92400e;
    font-weight: 800;
}

.detail-hero {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: clamp(1.4rem, 4vw, 3rem);
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.96), rgba(146, 64, 14, 0.90));
    color: #fff;
}

.detail-poster {
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border: 8px solid rgba(255, 255, 255, 0.14);
    border-radius: 28px;
    background: #111827;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.detail-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.1rem;
}

.detail-copy h1 {
    font-size: clamp(2.1rem, 5vw, 4.2rem);
}

.detail-one-line {
    max-width: 840px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.12rem;
    line-height: 1.85;
}

.detail-meta {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.8rem;
    margin: 0;
}

.detail-meta div {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    padding: 0.85rem;
    background: rgba(255, 255, 255, 0.10);
}

.detail-meta dt {
    color: #fed7aa;
    font-size: 0.8rem;
    font-weight: 800;
}

.detail-meta dd {
    margin: 0.25rem 0 0;
    color: #fff;
    font-weight: 900;
}

.player-section {
    scroll-margin-top: 96px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #050505;
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 9;
}

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

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

.player-cover {
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    border: 0;
    background-position: center;
    background-size: cover;
    color: #fff;
    text-align: center;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-button-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    box-shadow: 0 24px 45px rgba(234, 88, 12, 0.34);
    font-size: 2rem;
}

.player-cover strong {
    max-width: min(720px, 88%);
    font-size: clamp(1.6rem, 4vw, 3rem);
    font-weight: 950;
}

.player-cover em {
    font-style: normal;
    color: #fed7aa;
    font-weight: 900;
}

.article-section {
    display: grid;
    gap: 1rem;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 16px 45px rgba(146, 64, 14, 0.08);
}

.article-section h2 {
    margin: 0;
    color: #92400e;
    font-size: 1.6rem;
    font-weight: 950;
}

.article-section p {
    margin: 0;
    color: #374151;
    font-size: 1.05rem;
    line-height: 2;
}

.site-footer {
    margin-top: 5rem;
    background: #111827;
    color: #fff;
}

.site-footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
    gap: 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 2.5rem 1.25rem;
}

.site-footer p {
    margin: 0.8rem 0 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.site-footer nav a {
    border-radius: 999px;
    padding: 0.45rem 0.75rem;
    background: rgba(255, 255, 255, 0.10);
    color: #fed7aa;
    font-weight: 800;
}

.copyright {
    align-self: end;
    white-space: nowrap;
}

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

@media (max-width: 1180px) {
    .hero,
    .split-section,
    .detail-hero {
        grid-template-columns: 1fr;
    }

    .hero-side,
    .ranking-panel {
        position: static;
    }

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

    .detail-poster {
        width: min(320px, 100%);
    }
}

@media (max-width: 860px) {
    .site-nav,
    .header-search {
        display: none;
    }

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

    .hero {
        display: block;
    }

    .hero-carousel {
        min-height: 560px;
    }

    .hero-side {
        margin-top: 1rem;
    }

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

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

    .site-footer-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .site-header-inner,
    .hero,
    .content-section,
    .breadcrumb {
        padding-right: 0.9rem;
        padding-left: 0.9rem;
    }

    .site-logo {
        font-size: 1.25rem;
    }

    .hero-carousel {
        min-height: 520px;
        border-radius: 24px;
    }

    .hero-slide {
        padding: 1.4rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .movie-grid,
    .catalog-grid,
    .compact-grid,
    .category-grid,
    .category-overview-grid,
    .category-samples {
        grid-template-columns: 1fr;
    }

    .rank-item,
    .large-rank-list .rank-item {
        grid-template-columns: 42px 70px minmax(0, 1fr);
    }

    .large-rank-list .rank-cover,
    .rank-cover {
        width: 70px;
        height: 92px;
    }

    .page-hero,
    .detail-hero {
        margin-right: 0.9rem;
        margin-left: 0.9rem;
        border-radius: 24px;
        padding: 1.4rem;
    }

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

    .player-button-mark {
        width: 4rem;
        height: 4rem;
        font-size: 1.6rem;
    }
}
