:root {
    --pink: #ec4899;
    --pink-strong: #db2777;
    --orange: #f97316;
    --amber: #f59e0b;
    --red: #ef4444;
    --text: #1f2937;
    --muted: #6b7280;
    --soft: #fff7ed;
    --line: #e5e7eb;
    --card: #ffffff;
    --dark: #111827;
    --shadow: 0 18px 48px rgba(15, 23, 42, 0.12);
    --radius: 26px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: #ffffff;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(18px);
}

.top-ribbon {
    padding: 8px 16px;
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    background: linear-gradient(90deg, #fb923c, #f472b6, #ef4444);
}

.nav-shell {
    width: min(1180px, calc(100% - 32px));
    min-height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    white-space: nowrap;
}

.brand-icon {
    width: 36px;
    height: 36px;
    display: inline-grid;
    place-items: center;
    color: #ffffff;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--pink), var(--orange));
    box-shadow: 0 14px 34px rgba(236, 72, 153, 0.32);
}

.brand-text,
.footer-brand {
    font-size: 26px;
    line-height: 1;
    background: linear-gradient(90deg, var(--pink), var(--orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.nav-link {
    position: relative;
    font-size: 15px;
    font-weight: 700;
    color: #374151;
    transition: color 0.25s ease;
}

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

.nav-link:hover,
.nav-link-active {
    color: var(--pink-strong);
}

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

.header-search,
.mobile-search {
    display: flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    overflow: hidden;
    background: #ffffff;
}

.header-search input,
.mobile-search input,
.filter-input {
    width: 190px;
    border: 0;
    outline: 0;
    padding: 10px 14px;
    color: var(--text);
    background: transparent;
}

.header-search button,
.mobile-search button {
    border: 0;
    color: #ffffff;
    padding: 10px 16px;
    background: linear-gradient(90deg, var(--pink), var(--orange));
    cursor: pointer;
}

.menu-toggle {
    display: none;
    margin-left: auto;
    border: 0;
    color: var(--text);
    background: transparent;
    font-size: 28px;
}

.mobile-menu {
    display: none;
    padding: 16px;
    border-top: 1px solid var(--line);
}

.mobile-menu-open {
    display: grid;
    gap: 12px;
}

.mobile-menu-link {
    padding: 12px 14px;
    border-radius: 16px;
    font-weight: 700;
    background: #fff7ed;
}

.page-main {
    min-height: 60vh;
}

.hero {
    position: relative;
    min-height: 660px;
    overflow: hidden;
    background: linear-gradient(135deg, #fff7ed 0%, #fdf2f8 42%, #fffbeb 100%);
}

.hero::before,
.hero::after,
.hero-orb {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(44px);
    opacity: 0.34;
    pointer-events: none;
    animation: floatOrb 8s ease-in-out infinite;
}

.hero::before {
    top: 110px;
    right: 10%;
    width: 230px;
    height: 230px;
    background: var(--pink);
}

.hero::after {
    bottom: 120px;
    left: 8%;
    width: 190px;
    height: 190px;
    background: var(--orange);
    animation-delay: 1.2s;
}

.hero-orb {
    top: 50%;
    left: 34%;
    width: 160px;
    height: 160px;
    background: #facc15;
    animation-delay: 0.7s;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(18px, -18px, 0) scale(1.08);
    }
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    min-height: 660px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 50px;
    align-items: center;
}

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

.hero-badge,
.section-title span,
.kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #374151;
    font-size: 14px;
    font-weight: 800;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(12px);
}

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

.gradient-text {
    display: inline-block;
    background: linear-gradient(90deg, var(--pink-strong), var(--orange), var(--amber));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 20px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 13px 24px;
    border: 0;
    border-radius: 999px;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary {
    color: #ffffff;
    background: linear-gradient(90deg, var(--pink), var(--orange));
    box-shadow: 0 14px 30px rgba(236, 72, 153, 0.28);
}

.btn-light {
    color: #1f2937;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(229, 231, 235, 0.86);
}

.btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow);
}

.hero-carousel {
    position: relative;
    min-height: 520px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 22px;
    align-items: stretch;
    opacity: 0;
    transform: translateY(24px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.hero-cover {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    border-radius: 34px;
    background: linear-gradient(135deg, #fce7f3, #fed7aa);
    box-shadow: var(--shadow);
}

.hero-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.hero-cover:hover img {
    transform: scale(1.06);
}

.hero-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 520px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 34px;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
}

.hero-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(17, 24, 39, 0.78));
}

.hero-panel-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.hero-panel h2 {
    margin: 12px 0 10px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.1;
}

.hero-panel p {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.86);
}

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

.hero-meta span,
.detail-tags span,
.movie-tags span,
.info-chip,
.category-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 800;
}

.hero-meta span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(8px);
}

.hero-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -38px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hero-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #f9a8d4;
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot-active {
    width: 32px;
    background: linear-gradient(90deg, var(--pink), var(--orange));
}

.hero-bottom-fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(0deg, #ffffff, rgba(255, 255, 255, 0));
}

.stats-section,
.section {
    padding: 64px 0;
}

.section-soft {
    background: linear-gradient(135deg, #fff7ed, #fdf2f8);
}

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

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

.stat-card {
    padding: 28px;
    text-align: center;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 64px;
    height: 64px;
    display: inline-grid;
    place-items: center;
    margin-bottom: 12px;
    border-radius: 999px;
    color: var(--orange);
    font-size: 30px;
    background: linear-gradient(135deg, #fce7f3, #ffedd5);
}

.stat-card strong {
    display: block;
    color: var(--text);
    font-size: 32px;
    line-height: 1;
}

.stat-card span {
    color: var(--muted);
    font-size: 14px;
}

.section-title {
    margin: 0 auto 38px;
    text-align: center;
    max-width: 760px;
}

.section-title h1,
.section-title h2 {
    margin: 16px 0 10px;
    color: var(--text);
    font-size: clamp(30px, 5vw, 46px);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.section-title p {
    margin: 0;
    color: var(--muted);
}

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

.movie-card {
    overflow: hidden;
    border-radius: 24px;
    background: var(--card);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.movie-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 52px rgba(236, 72, 153, 0.16);
}

.movie-poster {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, #fce7f3, #ffedd5);
}

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

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

.poster-glow {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.25s ease;
}

.movie-card:hover .poster-glow {
    background: rgba(0, 0, 0, 0.24);
}

.play-mark {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    color: #ffffff;
    border-radius: 999px;
    background: rgba(236, 72, 153, 0.86);
    transform: translate(-50%, -50%) scale(0.82);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.poster-region,
.poster-year,
.rank-badge {
    position: absolute;
    top: 12px;
    z-index: 2;
    padding: 5px 9px;
    border-radius: 10px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
}

.poster-region {
    left: 12px;
    background: var(--pink);
}

.poster-year {
    right: 12px;
    background: rgba(0, 0, 0, 0.62);
    backdrop-filter: blur(10px);
}

.rank-badge {
    left: 12px;
    top: auto;
    bottom: 12px;
    background: linear-gradient(135deg, var(--orange), var(--red));
}

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

.movie-card h3 {
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.35;
}

.movie-card h3 a:hover {
    color: var(--pink-strong);
}

.movie-card p {
    min-height: 46px;
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 14px;
}

.movie-tags,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.movie-tags span,
.category-chip {
    color: var(--pink-strong);
    background: #fdf2f8;
}

.movie-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 12px;
    color: #9ca3af;
    font-size: 12px;
}

.movie-meta strong {
    color: var(--orange);
    font-size: 14px;
}

.section-more {
    margin-top: 34px;
    text-align: center;
}

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

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    padding: 28px;
    border-radius: 28px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--pink), var(--orange));
    box-shadow: var(--shadow);
}

.category-card:nth-child(2n) {
    background: linear-gradient(135deg, #fb7185, #fb923c);
}

.category-card:nth-child(3n) {
    background: linear-gradient(135deg, #f472b6, #f59e0b);
}

.category-card::after {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
}

.category-card h2,
.category-card h3 {
    position: relative;
    z-index: 1;
    margin: 12px 0;
    font-size: 26px;
}

.category-card p {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.86);
}

.category-card .btn {
    position: relative;
    z-index: 1;
    margin-top: 18px;
    color: var(--text);
    background: #ffffff;
}

.wide-scroller {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 1fr);
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 14px;
    scroll-snap-type: x mandatory;
}

.wide-card {
    position: relative;
    min-height: 190px;
    overflow: hidden;
    border-radius: 24px;
    scroll-snap-align: start;
    box-shadow: var(--shadow);
}

.wide-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.wide-card-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0), rgba(17, 24, 39, 0.78));
}

.wide-card-title,
.wide-card-meta {
    position: absolute;
    left: 18px;
    right: 18px;
    color: #ffffff;
}

.wide-card-title {
    bottom: 42px;
    font-size: 20px;
    font-weight: 900;
}

.wide-card-meta {
    bottom: 18px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
}

.toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 26px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.filter-input {
    width: min(360px, 100%);
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #ffffff;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.info-chip {
    color: #374151;
    background: #fff7ed;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
    color: var(--muted);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--pink-strong);
    font-weight: 800;
}

.detail-section {
    padding: 34px 0 70px;
    background: linear-gradient(135deg, #fff7ed, #ffffff 32%, #fdf2f8);
}

.detail-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    gap: 28px;
    align-items: start;
}

.player-card,
.detail-info,
.content-card {
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
}

.player-card {
    overflow: hidden;
}

.player {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #050505;
}

.player video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #050505;
}

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    color: #ffffff;
    background: radial-gradient(circle at center, rgba(236, 72, 153, 0.15), rgba(0, 0, 0, 0.72));
    cursor: pointer;
}

.player-overlay-hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
}

.player-overlay .play-circle {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    font-size: 30px;
    background: linear-gradient(135deg, var(--pink), var(--orange));
    box-shadow: 0 18px 44px rgba(236, 72, 153, 0.38);
}

.player-caption {
    padding: 20px 24px;
}

.player-caption h1 {
    margin: 0 0 8px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.2;
}

.player-caption p {
    margin: 0;
    color: var(--muted);
}

.detail-info {
    padding: 26px;
}

.detail-cover {
    overflow: hidden;
    border-radius: 24px;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, #fce7f3, #ffedd5);
}

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

.detail-info h2 {
    margin: 22px 0 12px;
    font-size: 26px;
}

.detail-meta-list {
    display: grid;
    gap: 10px;
    margin: 18px 0;
}

.detail-meta-list div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
}

.detail-meta-list span {
    color: var(--muted);
}

.detail-meta-list strong {
    text-align: right;
}

.detail-tags span {
    color: var(--orange);
    background: #fff7ed;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 28px;
}

.content-card {
    padding: 28px;
}

.content-card h2 {
    margin: 0 0 14px;
    font-size: 26px;
}

.content-card p {
    margin: 0;
    color: #4b5563;
    font-size: 17px;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 80px 110px 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 14px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rank-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.rank-number {
    color: var(--pink-strong);
    font-size: 28px;
    font-weight: 900;
    text-align: center;
}

.rank-thumb {
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, #fce7f3, #ffedd5);
}

.rank-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rank-info h3 {
    margin: 0 0 8px;
    font-size: 20px;
}

.rank-info p {
    margin: 0;
    color: var(--muted);
}

.rank-score {
    color: var(--orange);
    font-size: 24px;
    font-weight: 900;
}

.site-footer {
    color: #d1d5db;
    background: #111827;
}

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

.footer-inner p {
    color: #9ca3af;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px 18px;
}

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

.footer-bottom {
    padding: 14px 16px;
    text-align: center;
    color: #9ca3af;
    font-size: 13px;
    background: #030712;
}

.empty-state {
    display: none;
    padding: 46px 18px;
    text-align: center;
    color: var(--muted);
    border-radius: 24px;
    background: #ffffff;
}

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

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

    .hero-inner,
    .detail-hero {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .hero-inner {
        min-height: auto;
        padding: 64px 0 90px;
    }

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

    .hero-slide,
    .hero-cover,
    .hero-panel {
        min-height: 480px;
    }

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

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

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

    .menu-toggle {
        display: block;
    }

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

    .hero-inner {
        gap: 30px;
        padding-top: 46px;
    }

    .hero-copy p {
        font-size: 17px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
    }

    .hero-cover {
        display: none;
    }

    .stats-grid,
    .movie-grid,
    .category-grid,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .movie-grid {
        gap: 18px;
    }

    .rank-item {
        grid-template-columns: 52px 84px 1fr;
    }

    .rank-score {
        grid-column: 3;
        font-size: 18px;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 460px) {
    .top-ribbon {
        font-size: 12px;
    }

    .nav-shell,
    .container,
    .footer-inner,
    .hero-inner {
        width: min(100% - 24px, 1180px);
    }

    .hero-panel,
    .player-card,
    .detail-info,
    .content-card,
    .category-card {
        border-radius: 22px;
    }

    .movie-card {
        border-radius: 20px;
    }

    .hero-actions .btn {
        width: 100%;
    }
}
