:root {
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-300: #fcd34d;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-700: #b45309;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white-soft: rgba(255, 255, 255, 0.86);
    --shadow-soft: 0 10px 28px rgba(120, 53, 15, 0.12);
    --shadow-strong: 0 30px 70px rgba(120, 53, 15, 0.22);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--gray-800);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    background: linear-gradient(135deg, #fffbeb 0%, #fefce8 48%, #fff7ed 100%);
    min-height: 100vh;
}

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;
}

.honey-gradient {
    background: linear-gradient(135deg, #fbbf24 0%, #eab308 48%, #fb923c 100%);
}

.honey-text {
    background: linear-gradient(90deg, #d97706 0%, #ca8a04 50%, #ea580c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.honey-card {
    border: 1px solid rgba(253, 230, 138, 0.78);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(10px);
}

.card-hover {
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.card-hover:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(251, 191, 36, 0.9);
    box-shadow: var(--shadow-strong);
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

.pulse-glow {
    animation: pulseGlow 3s ease-in-out infinite;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(253, 230, 138, 0.88);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 74px;
}

.brand,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(135deg, #fbbf24, #fb923c);
    box-shadow: 0 12px 26px rgba(217, 119, 6, 0.3);
}

.brand-text {
    font-size: 22px;
    color: var(--amber-700);
}

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

.nav-link {
    position: relative;
    font-weight: 650;
    color: var(--gray-700);
    transition: color 0.2s ease;
}

.nav-link::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #fbbf24, #fb923c);
    opacity: 0;
    transform: translateY(3px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    content: "";
}

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

.nav-link:hover::after,
.nav-link.active::after {
    opacity: 1;
    transform: translateY(0);
}

.header-search,
.mobile-search {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-search input,
.mobile-search input,
.filter-panel input,
.filter-panel select {
    border: 2px solid var(--amber-200);
    border-radius: 999px;
    outline: none;
    background: #fff;
    color: var(--gray-800);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input,
.mobile-search input {
    width: 220px;
    padding: 10px 16px;
}

.header-search input:focus,
.mobile-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
    border-color: var(--amber-400);
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.16);
}

.header-search button,
.mobile-search button {
    border: 0;
    border-radius: 999px;
    padding: 10px 18px;
    color: #fff;
    font-weight: 700;
    background: linear-gradient(135deg, #f59e0b, #fb923c);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    color: var(--amber-700);
    background: var(--amber-100);
}

.mobile-menu {
    display: none;
    padding: 0 16px 16px;
    border-top: 1px solid var(--amber-200);
    background: rgba(255, 255, 255, 0.94);
}

.mobile-menu.open {
    display: block;
}

.mobile-search {
    margin: 14px auto;
    width: min(680px, 100%);
}

.mobile-search input {
    flex: 1;
    width: auto;
}

.mobile-menu nav {
    display: grid;
    gap: 8px;
    width: min(680px, 100%);
    margin: 0 auto;
}

.mobile-nav-link {
    border-radius: 14px;
    padding: 12px 14px;
    color: var(--gray-700);
    background: rgba(254, 243, 199, 0.42);
}

.mobile-nav-link.active,
.mobile-nav-link:hover {
    color: var(--amber-700);
    background: var(--amber-100);
}

.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: #111827;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.5) 46%, rgba(0, 0, 0, 0.12) 100%);
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}

.hero-copy {
    width: min(650px, 100%);
    color: #fff;
}

.hero-label,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--amber-400);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-label::before,
.eyebrow::before {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: currentColor;
    box-shadow: 0 0 22px currentColor;
    content: "";
}

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

.hero-copy p {
    margin: 0 0 22px;
    color: rgba(243, 244, 246, 0.94);
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.75;
}

.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;
    border-radius: 999px;
    padding: 6px 12px;
    color: var(--amber-700);
    font-size: 13px;
    font-weight: 700;
    background: rgba(254, 243, 199, 0.9);
}

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

.hero-primary,
.hero-secondary,
.section-head a,
.category-main-link {
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero-primary,
.hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 138px;
    border-radius: 999px;
    padding: 13px 24px;
    font-weight: 800;
}

.hero-primary {
    color: #fff;
    background: linear-gradient(135deg, #fbbf24, #fb923c);
    box-shadow: 0 20px 40px rgba(217, 119, 6, 0.32);
}

.hero-secondary {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
}

.hero-primary:hover,
.hero-secondary:hover,
.section-head a:hover {
    transform: translateY(-2px);
}

.hero-controls {
    position: absolute;
    right: max(24px, calc((100% - 1180px) / 2));
    bottom: 42px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-arrow,
.hero-dot {
    border: 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
}

.hero-arrow {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    font-size: 30px;
    line-height: 1;
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    padding: 0;
    opacity: 0.66;
    transition: width 0.22s ease, opacity 0.22s ease, background 0.22s ease;
}

.hero-dot.active {
    width: 28px;
    opacity: 1;
    background: linear-gradient(90deg, #fbbf24, #fb923c);
}

.hero-bottom-glow {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 130px;
    background: linear-gradient(0deg, #fffbeb 0%, rgba(255, 251, 235, 0) 100%);
    pointer-events: none;
}

.category-strip {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-top: -54px;
    margin-bottom: 74px;
}

.category-tile {
    display: grid;
    gap: 8px;
    min-height: 148px;
    padding: 22px;
    text-align: center;
}

.category-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto;
    border-radius: 999px;
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(135deg, #fbbf24, #fb923c);
}

.category-icon.large {
    width: 68px;
    height: 68px;
    font-size: 30px;
}

.category-tile strong,
.category-main-link strong {
    color: var(--gray-900);
    font-size: 19px;
}

.category-tile small,
.category-main-link small {
    color: var(--gray-600);
    line-height: 1.6;
}

.section-block {
    margin-bottom: 82px;
}

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

.section-head h2 {
    margin: 8px 0 0;
    color: var(--gray-900);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
}

.section-head h3 {
    margin: 6px 0 0;
    color: var(--gray-900);
    font-size: 20px;
    line-height: 1.4;
}

.section-head a {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 10px 16px;
    color: var(--amber-700);
    font-weight: 800;
    background: var(--amber-100);
}

.compact-head {
    align-items: center;
}

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

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

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

.movie-card {
    overflow: hidden;
}

.poster-link {
    display: block;
    height: 100%;
}

.poster-wrap {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, var(--amber-200), var(--orange-500));
}

.poster-wrap img,
.horizontal-poster img,
.compact-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.poster-link:hover .poster-wrap img,
.horizontal-card:hover .horizontal-poster img {
    transform: scale(1.1);
}

.poster-shade {
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0));
    transition: opacity 0.25s ease;
}

.poster-link:hover .poster-shade {
    opacity: 1;
}

.poster-play,
.play-glow {
    position: absolute;
    left: 50%;
    top: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    color: #fff;
    background: linear-gradient(135deg, #fbbf24, #fb923c);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.poster-play {
    width: 58px;
    height: 58px;
    border-radius: 999px;
    font-size: 26px;
}

.poster-link:hover .poster-play,
.horizontal-card:hover .play-glow {
    opacity: 1;
}

.region-pill {
    position: absolute;
    right: 14px;
    top: 14px;
    border-radius: 999px;
    padding: 6px 12px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    background: rgba(245, 158, 11, 0.92);
}

.card-body {
    display: grid;
    gap: 8px;
    padding: 18px;
}

.card-body strong {
    color: var(--gray-900);
    font-size: 18px;
    line-height: 1.36;
}

.card-meta,
.card-desc {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.6;
}

.card-desc {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.movie-rail {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 4px 4px 18px;
    scroll-snap-type: x proximity;
}

.rail-item {
    width: 320px;
    flex: 0 0 320px;
    scroll-snap-align: start;
}

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

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

.compact-card {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    border-radius: 18px;
    padding: 10px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.compact-card:hover {
    transform: translateX(4px);
    background: rgba(254, 243, 199, 0.72);
}

.compact-thumb {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--amber-200), var(--orange-500));
}

.rank-badge {
    position: absolute;
    left: 8px;
    top: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 30px;
    border-radius: 999px;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
}

.compact-body {
    display: grid;
    gap: 5px;
    min-width: 0;
}

.compact-body strong {
    overflow: hidden;
    color: var(--gray-900);
    font-size: 16px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.compact-body em,
.compact-body small {
    color: var(--gray-600);
    font-style: normal;
    line-height: 1.5;
}

.compact-body small {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.feature-grid,
.category-overview-grid,
.detail-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.feature-box,
.category-overview-card,
.side-card {
    padding: 24px;
}

.vertical-list {
    display: grid;
    gap: 14px;
}

.horizontal-card {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 16px;
    padding: 14px;
}

.horizontal-poster {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--amber-200), var(--orange-500));
}

.play-glow {
    width: 48px;
    height: 48px;
    border-radius: 999px;
}

.horizontal-info {
    display: grid;
    align-content: center;
    gap: 8px;
}

.horizontal-info strong {
    color: var(--gray-900);
    font-size: 17px;
}

.horizontal-info em,
.horizontal-info small {
    color: var(--gray-600);
    font-style: normal;
    line-height: 1.6;
}

.page-shell {
    padding: 38px 0 78px;
}

.page-hero {
    margin-bottom: 32px;
    padding: clamp(28px, 5vw, 52px);
    overflow: hidden;
    position: relative;
}

.page-hero::after {
    position: absolute;
    right: -120px;
    top: -120px;
    width: 300px;
    height: 300px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.34), rgba(251, 191, 36, 0));
    content: "";
}

.page-hero h1 {
    position: relative;
    margin: 12px 0 12px;
    color: var(--gray-900);
    font-size: clamp(34px, 6vw, 58px);
    line-height: 1.05;
}

.page-hero p {
    position: relative;
    margin: 0;
    max-width: 760px;
    color: var(--gray-600);
    font-size: 18px;
    line-height: 1.8;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 18px;
    color: var(--gray-600);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--amber-700);
    font-weight: 700;
}

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

.category-main-link {
    display: grid;
    gap: 8px;
    text-align: center;
}

.overview-preview {
    display: grid;
    gap: 10px;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px 160px;
    gap: 12px;
    margin-bottom: 26px;
    padding: 16px;
}

.filter-panel input,
.filter-panel select {
    width: 100%;
    padding: 12px 16px;
}

.empty-state {
    display: none;
    border-radius: 20px;
    padding: 32px;
    color: var(--amber-700);
    font-weight: 800;
    text-align: center;
    background: var(--amber-100);
}

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

.detail-layout {
    grid-template-columns: minmax(0, 2fr) minmax(320px, 0.9fr);
    align-items: start;
}

.detail-main {
    overflow: hidden;
}

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

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

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.58));
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.video-overlay.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.overlay-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    height: 92px;
    border-radius: 999px;
    color: #fff;
    font-size: 38px;
    background: linear-gradient(135deg, #fbbf24, #fb923c);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
}

.detail-content {
    display: grid;
    gap: 18px;
    padding: clamp(22px, 4vw, 36px);
}

.detail-content h1 {
    margin: 0;
    color: var(--gray-900);
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.06;
}

.detail-one-line {
    margin: 0;
    color: var(--gray-700);
    font-size: 20px;
    line-height: 1.7;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.detail-meta span {
    border-radius: 999px;
    padding: 8px 14px;
    color: var(--amber-700);
    font-weight: 800;
    background: var(--amber-100);
}

.detail-play-button {
    width: min(280px, 100%);
    border: 0;
    border-radius: 16px;
    padding: 14px 18px;
    color: #fff;
    font-weight: 900;
    box-shadow: 0 18px 36px rgba(217, 119, 6, 0.22);
}

.detail-section {
    border-top: 1px solid var(--amber-200);
    padding-top: 22px;
}

.detail-section h2,
.side-card h2 {
    margin: 0 0 14px;
    color: var(--gray-900);
    font-size: 22px;
}

.detail-section p {
    margin: 0;
    color: var(--gray-700);
    font-size: 17px;
    line-height: 1.9;
}

.detail-side {
    display: grid;
    gap: 20px;
}

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

.info-list dt {
    color: var(--gray-500);
    font-weight: 700;
}

.info-list dd {
    margin: 0;
    color: var(--gray-800);
    font-weight: 700;
}

.site-footer {
    color: #fff;
    background: linear-gradient(135deg, #78350f 0%, #854d0e 50%, #9a3412 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
    gap: 34px;
    padding: 46px 0;
}

.footer-grid h3 {
    margin: 0 0 14px;
    color: var(--amber-300);
    font-size: 18px;
}

.footer-grid p,
.footer-grid li,
.footer-bottom {
    color: rgba(254, 243, 199, 0.86);
    line-height: 1.8;
}

.footer-grid ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-grid a:hover {
    color: #fff;
}

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

.footer-bottom {
    border-top: 1px solid rgba(253, 230, 138, 0.25);
    padding: 18px 0;
    text-align: center;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-18px);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.38);
    }
    50% {
        transform: scale(1.06);
        box-shadow: 0 0 0 18px rgba(251, 191, 36, 0);
    }
}

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

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

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

    .three-cols,
    .feature-grid,
    .category-overview-grid,
    .detail-layout,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 760px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

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

    .hero-slider {
        height: 560px;
    }

    .hero-content {
        align-items: flex-end;
        padding-bottom: 96px;
    }

    .hero-overlay {
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.2));
    }

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

    .hero-controls {
        right: 16px;
        bottom: 26px;
    }

    .category-strip,
    .three-cols,
    .four-cols,
    .feature-grid,
    .category-overview-grid,
    .wide-rank,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .category-strip {
        margin-top: 22px;
    }

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

    .compact-card,
    .horizontal-card {
        grid-template-columns: 118px minmax(0, 1fr);
    }

    .rail-item {
        width: 280px;
        flex-basis: 280px;
    }

    .overlay-play {
        width: 74px;
        height: 74px;
        font-size: 30px;
    }
}
