:root {
    --orange: #ea580c;
    --orange-soft: #fff7ed;
    --red: #dc2626;
    --amber: #f59e0b;
    --text: #111827;
    --muted: #6b7280;
    --line: #e5e7eb;
    --bg: #f9fafb;
    --card: #ffffff;
    --dark: #0f172a;
    --shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.no-scroll {
    overflow: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.9);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

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

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--text);
}

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--orange), var(--red));
    position: relative;
    box-shadow: 0 14px 28px rgba(234, 88, 12, 0.28);
}

.brand-mark::after {
    content: "";
    position: absolute;
    left: 15px;
    top: 11px;
    border-left: 12px solid #fff;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

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

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

.nav-link,
.mobile-link {
    color: #4b5563;
    font-weight: 700;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link {
    padding: 10px 14px;
    border-radius: 999px;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
    color: var(--orange);
    background: var(--orange-soft);
}

.header-cta {
    padding: 10px 18px;
    color: #fff;
    font-weight: 800;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--orange), var(--red));
    box-shadow: 0 12px 24px rgba(234, 88, 12, 0.22);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    background: var(--orange-soft);
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--orange);
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

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

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

.mobile-link {
    padding: 12px 14px;
    border-radius: 12px;
}

.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: var(--dark);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.015);
    transition: opacity 0.8s ease, transform 1.2s ease;
    pointer-events: none;
}

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

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

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 25%, rgba(234, 88, 12, 0.36), transparent 32%),
        linear-gradient(90deg, rgba(2, 6, 23, 0.92) 0%, rgba(15, 23, 42, 0.72) 44%, rgba(15, 23, 42, 0.18) 100%),
        linear-gradient(0deg, rgba(15, 23, 42, 0.88), transparent 55%);
}

.hero-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    display: grid;
    align-content: center;
    max-width: 1180px;
}

.hero-kicker,
.section-kicker {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    color: #c2410c;
    background: #ffedd5;
    border-radius: 999px;
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 0.02em;
}

.hero-kicker {
    color: #fed7aa;
    background: rgba(234, 88, 12, 0.22);
    border: 1px solid rgba(251, 146, 60, 0.36);
    backdrop-filter: blur(12px);
}

.hero h1 {
    width: min(760px, 100%);
    margin: 20px 0 16px;
    font-size: clamp(40px, 7vw, 74px);
    line-height: 0.98;
    font-weight: 950;
    letter-spacing: -0.06em;
}

.hero p {
    width: min(680px, 100%);
    margin: 0;
    color: #e5e7eb;
    font-size: 18px;
}

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

.hero-tags {
    margin: 24px 0;
}

.hero-tags span,
.tag-row span {
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.hero-tags span {
    padding: 8px 12px;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn.primary {
    color: #fff;
    background: linear-gradient(135deg, var(--orange), var(--red));
    box-shadow: 0 18px 32px rgba(234, 88, 12, 0.34);
}

.btn.ghost {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(14px);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    font-size: 36px;
    line-height: 1;
    background: rgba(0, 0, 0, 0.36);
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
    transform: translateY(-50%) scale(1.06);
    background: rgba(234, 88, 12, 0.86);
}

.hero-prev {
    left: 24px;
    transform: translateY(-50%);
}

.hero-next {
    right: 24px;
    transform: translateY(-50%);
}

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

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

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

.home-search {
    position: relative;
    z-index: 8;
    margin-top: -46px;
}

.search-panel {
    display: grid;
    grid-template-columns: 1fr minmax(320px, 520px);
    gap: 28px;
    align-items: center;
    padding: 26px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 28px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.search-panel h2 {
    margin: 0 0 4px;
    font-size: 28px;
}

.search-panel p {
    margin: 0;
    color: var(--muted);
}

.home-search-form {
    display: flex;
    gap: 10px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
}

.home-search-form input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 0 14px;
}

.home-search-form button {
    border: 0;
    border-radius: 999px;
    padding: 12px 20px;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--orange), var(--red));
}

.section {
    padding: 72px 0;
}

.section-soft {
    background: #fff;
}

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

.section-head.compact {
    margin-bottom: 22px;
}

.section-head h2,
.page-hero h1,
.detail-hero h1 {
    margin: 12px 0 0;
    font-weight: 950;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.section-head h2 {
    font-size: clamp(28px, 4vw, 44px);
}

.section-head a,
.rank-title a {
    color: var(--orange);
    font-weight: 900;
}

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

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

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

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

.movie-card {
    overflow: hidden;
    border-radius: 22px;
    background: var(--card);
    border: 1px solid rgba(229, 231, 235, 0.85);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.07);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(251, 146, 60, 0.8);
    box-shadow: 0 20px 36px rgba(15, 23, 42, 0.13);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, #111827, #431407);
}

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

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

.play-chip {
    position: absolute;
    left: 12px;
    bottom: 12px;
    padding: 6px 10px;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    border-radius: 999px;
    background: rgba(234, 88, 12, 0.9);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.rank-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #fff;
    font-weight: 950;
    background: linear-gradient(135deg, var(--amber), var(--red));
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.22);
}

.card-body {
    padding: 14px;
}

.card-body h3 {
    margin: 0;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 900;
}

.card-body h3 a:hover {
    color: var(--orange);
}

.card-desc {
    min-height: 44px;
    margin: 8px 0 12px;
    color: var(--muted);
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #6b7280;
    font-size: 12px;
    font-weight: 700;
}

.tag-row {
    margin-top: 10px;
}

.tag-row span {
    padding: 5px 8px;
    color: #9a3412;
    background: #ffedd5;
}

.tag-row.large span {
    padding: 7px 10px;
    font-size: 13px;
}

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

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

.category-tile,
.category-block {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.category-tile {
    min-height: 180px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-tile:hover {
    transform: translateY(-5px);
    border-color: rgba(251, 146, 60, 0.8);
}

.category-number {
    color: var(--orange);
    font-weight: 950;
}

.category-tile strong,
.category-block-head span {
    font-size: 20px;
    font-weight: 950;
}

.category-tile em,
.category-block p {
    color: var(--muted);
    font-style: normal;
    font-size: 14px;
}

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

.category-block {
    padding: 22px;
}

.category-block-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
}

.category-block-head em {
    color: var(--orange);
    font-style: normal;
    font-weight: 900;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 30px;
    align-items: start;
}

.rank-panel,
.side-card,
.article-card,
.detail-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 26px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.rank-panel {
    padding: 20px;
}

.sticky-panel {
    position: sticky;
    top: 94px;
}

.rank-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    font-weight: 950;
    font-size: 20px;
}

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

.mini-list.tight {
    margin-top: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mini-card {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 16px;
    background: #f9fafb;
    transition: background 0.2s ease, transform 0.2s ease;
    position: relative;
}

.mini-card:hover {
    background: var(--orange-soft);
    transform: translateX(3px);
}

.mini-card img {
    width: 56px;
    height: 74px;
    object-fit: cover;
    border-radius: 12px;
}

.mini-card strong {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 14px;
}

.mini-card em {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-style: normal;
    font-size: 12px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.mini-rank {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    font-weight: 950;
    border-radius: 8px;
    background: var(--orange);
}

.page-hero,
.detail-hero {
    color: #fff;
    background:
        radial-gradient(circle at 78% 12%, rgba(234, 88, 12, 0.42), transparent 28%),
        linear-gradient(135deg, #111827 0%, #431407 100%);
}

.page-hero.small {
    padding: 76px 0 64px;
}

.page-hero h1 {
    font-size: clamp(36px, 6vw, 64px);
}

.page-hero p {
    max-width: 760px;
    margin: 16px 0 0;
    color: #e5e7eb;
    font-size: 18px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 18px;
    color: #fed7aa;
    font-size: 14px;
    font-weight: 800;
}

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

.filter-bar {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) 180px 180px auto;
    gap: 14px;
    align-items: end;
    margin-bottom: 24px;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.filter-bar label {
    display: grid;
    gap: 7px;
    color: #374151;
    font-size: 13px;
    font-weight: 900;
}

.filter-bar input,
.filter-bar select {
    width: 100%;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 14px;
    outline: 0;
    padding: 0 12px;
    background: #fff;
    color: var(--text);
}

.filter-bar input:focus,
.filter-bar select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.12);
}

.filter-count {
    min-width: 96px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--orange);
    background: var(--orange-soft);
    font-weight: 950;
}

.empty-state {
    display: none;
    margin-top: 18px;
    padding: 28px;
    text-align: center;
    color: var(--muted);
    background: #fff;
    border: 1px dashed var(--line);
    border-radius: 20px;
}

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

.detail-hero {
    padding: 34px 0 56px;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: stretch;
}

.detail-hero h1 {
    margin: 0 0 18px;
    font-size: clamp(30px, 5vw, 54px);
}

.player-stage {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #020617;
    box-shadow: 0 24px 52px rgba(0, 0, 0, 0.42);
    aspect-ratio: 16 / 9;
}

.player-stage video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #020617;
}

.player-trigger {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.48));
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.player-trigger span {
    width: 88px;
    height: 88px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--orange), var(--red));
    position: relative;
    box-shadow: 0 22px 44px rgba(234, 88, 12, 0.42);
}

.player-trigger span::after {
    content: "";
    position: absolute;
    left: 36px;
    top: 28px;
    border-left: 24px solid #fff;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
}

.detail-card {
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 18px;
    padding: 18px;
    color: var(--text);
}

.detail-card img {
    width: 128px;
    height: 188px;
    object-fit: cover;
    border-radius: 18px;
}

.detail-card h2 {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 950;
    line-height: 1.25;
}

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

.meta-list {
    display: grid;
    gap: 8px;
    margin: 0;
}

.meta-list div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f3f4f6;
}

.meta-list dt {
    color: var(--muted);
    font-weight: 800;
}

.meta-list dd {
    margin: 0;
    font-weight: 900;
}

.meta-list a {
    color: var(--orange);
}

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

.article-card,
.side-card {
    padding: 26px;
}

.article-card h2,
.side-card h2 {
    margin: 0 0 14px;
    font-size: 24px;
    font-weight: 950;
}

.article-card h2:not(:first-child) {
    margin-top: 28px;
}

.article-card p {
    margin: 0;
    color: #374151;
    font-size: 17px;
    line-height: 1.9;
}

.info-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.info-strip span {
    padding: 8px 12px;
    color: #9a3412;
    font-weight: 900;
    border-radius: 999px;
    background: #ffedd5;
}

.site-footer {
    padding: 54px 0 0;
    color: #d1d5db;
    background: #111827;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
}

.footer-brand {
    color: #fff;
    font-size: 24px;
}

.site-footer p {
    max-width: 420px;
    margin: 12px 0 0;
    color: #9ca3af;
}

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

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
}

.footer-links a {
    color: #d1d5db;
}

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

.footer-bottom {
    margin-top: 36px;
    padding: 18px 0;
    text-align: center;
    color: #9ca3af;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1120px) {
    .grid-6,
    .grid-5 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .split-layout,
    .detail-layout,
    .content-grid {
        grid-template-columns: 1fr;
    }

    .rank-panel,
    .sticky-panel {
        position: static;
    }

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

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

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

    .hero {
        height: 520px;
    }

    .hero-content {
        top: 52%;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-arrow {
        display: none;
    }

    .search-panel,
    .filter-bar,
    .footer-grid,
    .category-overview {
        grid-template-columns: 1fr;
    }

    .home-search-form {
        border-radius: 18px;
        flex-direction: column;
    }

    .home-search-form input {
        min-height: 42px;
    }

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

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

    .section {
        padding: 52px 0;
    }

    .section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .detail-card {
        grid-template-columns: 104px minmax(0, 1fr);
    }

    .detail-card img {
        width: 104px;
        height: 154px;
    }
}

@media (max-width: 520px) {
    .container,
    .header-inner,
    .mobile-nav {
        width: min(100% - 22px, 1180px);
    }

    .header-inner {
        height: 64px;
    }

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

    .brand-mark {
        width: 34px;
        height: 34px;
        border-radius: 12px;
    }

    .brand-mark::after {
        left: 13px;
        top: 10px;
        border-left-width: 11px;
        border-top-width: 7px;
        border-bottom-width: 7px;
    }

    .hero {
        height: 500px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero-tags span {
        padding: 6px 9px;
    }

    .btn {
        width: 100%;
    }

    .grid-6,
    .grid-5,
    .grid-4,
    .category-grid,
    .mini-list.tight {
        grid-template-columns: 1fr;
    }

    .poster-link {
        aspect-ratio: 16 / 10;
    }

    .player-trigger span {
        width: 72px;
        height: 72px;
    }

    .player-trigger span::after {
        left: 30px;
        top: 23px;
        border-left-width: 20px;
        border-top-width: 13px;
        border-bottom-width: 13px;
    }
}
