:root {
    color-scheme: light;
    --color-bg: #f8fafc;
    --color-surface: #ffffff;
    --color-slate-50: #f8fafc;
    --color-slate-100: #f1f5f9;
    --color-slate-200: #e2e8f0;
    --color-slate-500: #64748b;
    --color-slate-600: #475569;
    --color-slate-700: #334155;
    --color-slate-800: #1e293b;
    --color-slate-900: #0f172a;
    --color-cyan-50: #ecfeff;
    --color-cyan-600: #0891b2;
    --color-cyan-700: #0e7490;
    --color-blue-600: #2563eb;
    --shadow-soft: 0 20px 45px rgba(15, 23, 42, 0.08);
    --shadow-card: 0 14px 30px rgba(15, 23, 42, 0.10);
    --radius-xl: 1rem;
    --radius-2xl: 1.25rem;
    --container: 1280px;
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    min-height: 100vh;
    color: var(--color-slate-800);
    background: var(--color-bg);
    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,
video {
    display: block;
    max-width: 100%;
}

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 1px 10px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(12px);
}

.site-nav {
    width: min(var(--container), calc(100% - 32px));
    min-height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: transparent;
    background: linear-gradient(90deg, var(--color-cyan-600), var(--color-blue-600));
    -webkit-background-clip: text;
    background-clip: text;
}

.brand-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.8rem;
    background: linear-gradient(135deg, var(--color-cyan-600), var(--color-blue-600));
    box-shadow: 0 12px 22px rgba(8, 145, 178, 0.24);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    font-weight: 600;
    color: var(--color-slate-700);
}

.nav-links a {
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
    color: var(--color-cyan-600);
    transform: translateY(-1px);
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.mobile-menu-button span {
    display: block;
    width: 24px;
    height: 2px;
    margin-left: auto;
    background: var(--color-slate-700);
    border-radius: 99px;
}

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

.hero-carousel {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: var(--radius-2xl);
    background: var(--color-slate-900);
    box-shadow: 0 25px 70px rgba(15, 23, 42, 0.24);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.03);
    background-position: center;
    background-size: cover;
    transition: opacity 0.7s ease, transform 0.9s ease;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.hero-overlay,
.detail-hero-overlay,
.category-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.84), rgba(15, 23, 42, 0.48), rgba(15, 23, 42, 0.06));
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: 780px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 48px;
    color: #ffffff;
}

.hero-category,
.section-kicker {
    display: inline-flex;
    width: max-content;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    color: #ffffff;
    background: var(--color-cyan-600);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.section-kicker {
    color: var(--color-cyan-700);
    background: var(--color-cyan-50);
}

.hero-content h1,
.detail-hero h1,
.category-hero h1,
.page-hero h1 {
    margin: 18px 0 16px;
    font-size: clamp(2.1rem, 5vw, 4.8rem);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.hero-content p,
.detail-hero p,
.category-hero p,
.page-hero p {
    max-width: 760px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

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

.hero-tags span,
.detail-tags span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-slate-700);
    background: var(--color-slate-100);
}

.hero-tags span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
}

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

.primary-button,
.ghost-button,
.section-link,
.home-search button,
.reset-filter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 12px;
    border: 0;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button,
.home-search button,
.reset-filter {
    color: #ffffff;
    background: var(--color-cyan-600);
    box-shadow: 0 16px 28px rgba(8, 145, 178, 0.23);
}

.primary-button:hover,
.home-search button:hover,
.reset-filter:hover {
    background: var(--color-cyan-700);
    transform: translateY(-2px);
}

.ghost-button {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.44);
    background: rgba(15, 23, 42, 0.28);
    backdrop-filter: blur(10px);
}

.ghost-button:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.18);
}

.full-button {
    width: 100%;
    margin-top: 18px;
}

.hero-arrow {
    position: absolute;
    z-index: 3;
    top: 50%;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(2, 6, 23, 0.48);
    font-size: 2rem;
    line-height: 1;
    transform: translateY(-50%);
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
    background: rgba(2, 6, 23, 0.72);
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

.hero-dots {
    position: absolute;
    z-index: 4;
    right: 34px;
    bottom: 30px;
    display: flex;
    gap: 8px;
}

.hero-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.45);
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.is-active {
    width: 30px;
    background: #ffffff;
}

.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.stats-strip div,
.search-hero-card,
.filter-panel,
.content-card,
.player-card,
.ranking-panel,
.detail-poster-card {
    border: 1px solid var(--color-slate-200);
    border-radius: var(--radius-2xl);
    background: var(--color-surface);
    box-shadow: var(--shadow-soft);
}

.stats-strip div {
    padding: 22px;
    text-align: center;
}

.stats-strip strong {
    display: block;
    color: var(--color-slate-900);
    font-size: 2rem;
    line-height: 1;
}

.stats-strip span {
    color: var(--color-slate-500);
    font-weight: 700;
}

.search-hero-card {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
    padding: 30px;
    background: linear-gradient(135deg, #ffffff, var(--color-cyan-50));
}

.search-hero-card h2,
.section-header h2,
.ranking-heading h2,
.filter-title-row h2,
.content-card h2,
.player-heading h2 {
    margin: 10px 0 8px;
    color: var(--color-slate-900);
    font-size: clamp(1.55rem, 3vw, 2.35rem);
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.search-hero-card p,
.section-header p,
.filter-title-row p,
.content-card p {
    margin: 0;
    color: var(--color-slate-600);
}

.home-search {
    display: flex;
    gap: 12px;
    padding: 8px;
    border: 1px solid var(--color-slate-200);
    border-radius: 16px;
    background: #ffffff;
}

.home-search input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    padding: 0 12px;
    color: var(--color-slate-800);
}

.page-section {
    margin-top: 56px;
}

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

.section-link {
    color: var(--color-cyan-700);
    background: var(--color-cyan-50);
}

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

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

.all-movie-grid {
    margin-top: 24px;
}

.movie-card {
    overflow: hidden;
    border-radius: var(--radius-2xl);
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.movie-poster-link {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-slate-200), var(--color-cyan-50));
}

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

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

.movie-badge,
.rank-mark {
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 2;
    padding: 4px 10px;
    border-radius: 999px;
    color: #ffffff;
    background: var(--color-cyan-600);
    font-size: 0.78rem;
    font-weight: 800;
}

.rank-mark {
    right: 12px;
    left: auto;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.movie-play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(8, 145, 178, 0.9);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.88);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

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

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

.movie-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--color-slate-500);
    font-size: 0.82rem;
    font-weight: 700;
}

.movie-card h3 {
    margin: 0 0 8px;
    font-size: 1.08rem;
    line-height: 1.35;
    color: var(--color-slate-900);
}

.movie-card h3 a:hover {
    color: var(--color-cyan-700);
}

.movie-card p {
    min-height: 3.2em;
    margin: 0 0 12px;
    display: -webkit-box;
    overflow: hidden;
    color: var(--color-slate-600);
    font-size: 0.92rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.tag-row span {
    min-height: 24px;
    font-size: 0.75rem;
}

.two-column-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: start;
    gap: 28px;
}

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

.ranking-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.ranking-heading a {
    color: var(--color-cyan-700);
    font-weight: 800;
}

.ranking-row {
    display: grid;
    grid-template-columns: 42px 54px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-top: 1px solid var(--color-slate-100);
}

.ranking-row img {
    width: 54px;
    height: 72px;
    border-radius: 10px;
    object-fit: cover;
}

.ranking-number {
    color: var(--color-cyan-700);
    font-size: 1.1rem;
    font-weight: 900;
}

.ranking-title {
    color: var(--color-slate-900);
    font-weight: 800;
}

.ranking-meta {
    color: var(--color-slate-500);
    font-size: 0.85rem;
    white-space: nowrap;
}

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

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

.category-card {
    overflow: hidden;
    border: 1px solid var(--color-slate-200);
    border-radius: var(--radius-2xl);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.category-image {
    position: relative;
    display: block;
    height: 180px;
    overflow: hidden;
}

.category-image::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(to top, rgba(2, 6, 23, 0.62), transparent);
}

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

.category-image span {
    position: absolute;
    z-index: 2;
    left: 14px;
    bottom: 14px;
    padding: 4px 10px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(8, 145, 178, 0.9);
    font-weight: 800;
}

.category-body {
    padding: 18px;
}

.category-body h3 {
    margin: 0 0 8px;
    font-size: 1.24rem;
    color: var(--color-slate-900);
}

.category-body p {
    margin: 0 0 12px;
    color: var(--color-slate-600);
}

.category-samples {
    display: grid;
    gap: 6px;
}

.category-samples a {
    overflow: hidden;
    color: var(--color-cyan-700);
    font-size: 0.9rem;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.page-hero,
.category-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    margin-bottom: 32px;
}

.page-hero {
    margin-top: 32px;
    padding: 60px;
    border-radius: var(--radius-2xl);
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-slate-900), var(--color-cyan-700));
    box-shadow: var(--shadow-card);
}

.subtle-hero {
    color: var(--color-slate-900);
    background: linear-gradient(135deg, #ffffff, var(--color-cyan-50));
}

.subtle-hero p {
    color: var(--color-slate-600);
}

.ranking-hero {
    background: linear-gradient(135deg, #111827, #164e63, #2563eb);
}

.filter-panel {
    margin-bottom: 24px;
    padding: 24px;
}

.filter-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 18px;
}

.filter-count {
    color: var(--color-slate-600);
    white-space: nowrap;
}

.filter-count strong {
    color: var(--color-cyan-700);
}

.filter-controls {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 180px 180px 180px auto;
    gap: 12px;
    align-items: end;
}

.filter-controls label {
    display: grid;
    gap: 6px;
    color: var(--color-slate-600);
    font-size: 0.9rem;
    font-weight: 700;
}

.filter-controls input,
.filter-controls select {
    width: 100%;
    height: 44px;
    border: 1px solid var(--color-slate-200);
    border-radius: 12px;
    outline: 0;
    padding: 0 12px;
    color: var(--color-slate-800);
    background: #ffffff;
}

.filter-controls input:focus,
.filter-controls select:focus {
    border-color: var(--color-cyan-600);
    box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.12);
}

.filter-card.is-hidden {
    display: none;
}

.category-hero,
.detail-hero {
    min-height: 460px;
    display: flex;
    align-items: flex-end;
    background-position: center;
    background-size: cover;
    color: #ffffff;
}

.category-hero-content,
.detail-hero-content {
    position: relative;
    z-index: 2;
    padding: 72px 0 54px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
}

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

.detail-title-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 140px;
    gap: 24px;
    align-items: end;
}

.score-card {
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius-xl);
    background: rgba(15, 23, 42, 0.38);
    text-align: center;
    backdrop-filter: blur(12px);
}

.score-card strong {
    display: block;
    font-size: 2.5rem;
    line-height: 1;
}

.score-card span {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
}

.detail-layout {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    margin-top: -56px;
    position: relative;
    z-index: 5;
}

.detail-poster-card {
    position: sticky;
    top: 96px;
    overflow: hidden;
    padding: 14px;
}

.detail-poster-card img {
    width: 100%;
    aspect-ratio: 2 / 3;
    border-radius: 16px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.detail-main {
    display: grid;
    gap: 24px;
}

.player-card,
.content-card {
    padding: 24px;
}

.player-heading {
    margin-bottom: 16px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #000000;
    box-shadow: 0 22px 50px rgba(2, 6, 23, 0.28);
}

.player-shell video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.player-play-button {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    color: #ffffff;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.7), rgba(2, 6, 23, 0.16));
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.player-play-button span {
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--color-cyan-600);
    box-shadow: 0 22px 36px rgba(8, 145, 178, 0.32);
}

.player-shell.is-playing .player-play-button {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.info-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 20px;
}

.info-list div {
    padding: 14px;
    border-radius: 12px;
    background: var(--color-slate-50);
}

.info-list dt {
    color: var(--color-slate-500);
    font-size: 0.82rem;
    font-weight: 800;
}

.info-list dd {
    margin: 4px 0 0;
    color: var(--color-slate-900);
    font-weight: 800;
}

.prose-card p,
.guide-content p {
    color: var(--color-slate-700);
    font-size: 1.02rem;
    line-height: 1.85;
}

.guide-content {
    display: grid;
    gap: 24px;
    margin-bottom: 72px;
}

.site-footer {
    margin-top: 72px;
    color: #cbd5e1;
    background: var(--color-slate-900);
}

.footer-inner {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 32px;
    padding: 44px 0;
}

.footer-inner p {
    max-width: 620px;
    margin: 12px 0 0;
    color: #94a3b8;
}

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

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

.footer-bottom {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
    padding: 20px 0 28px;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    color: #94a3b8;
    text-align: center;
}

@media (min-width: 1440px) {
    .hero-carousel {
        height: 600px;
    }
}

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

    .two-column-section,
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .ranking-panel,
    .detail-poster-card {
        position: static;
    }

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

@media (max-width: 820px) {
    .site-nav {
        min-height: 64px;
        flex-wrap: wrap;
    }

    .mobile-menu-button {
        display: flex;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0 0 16px;
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav-links a {
        padding: 12px 0;
        border-top: 1px solid var(--color-slate-100);
    }

    .hero-wrap {
        margin-top: 18px;
    }

    .hero-carousel {
        height: 560px;
    }

    .hero-content {
        padding: 28px;
    }

    .hero-arrow {
        display: none;
    }

    .stats-strip,
    .search-hero-card,
    .movie-grid,
    .compact-grid,
    .category-grid,
    .large-category-grid,
    .footer-inner,
    .detail-title-row,
    .info-list {
        grid-template-columns: 1fr;
    }

    .search-hero-card {
        padding: 22px;
    }

    .home-search {
        flex-direction: column;
    }

    .section-header,
    .filter-title-row {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .page-hero {
        padding: 34px 24px;
    }

    .category-hero,
    .detail-hero {
        min-height: 560px;
    }

    .ranking-row {
        grid-template-columns: 38px 52px 1fr;
    }

    .ranking-meta {
        grid-column: 3;
    }
}

@media (max-width: 560px) {
    .container-wide,
    .container-narrow,
    .site-nav,
    .footer-inner,
    .footer-bottom,
    .hero-wrap {
        width: min(100% - 20px, var(--container));
    }

    .brand {
        font-size: 1.2rem;
    }

    .hero-content h1,
    .detail-hero h1,
    .category-hero h1,
    .page-hero h1 {
        font-size: 2rem;
    }

    .hero-dots {
        left: 28px;
        right: auto;
    }

    .player-card,
    .content-card,
    .filter-panel {
        padding: 18px;
    }
}
