:root {
    --orange-50: #fff7ed;
    --orange-100: #ffedd5;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --orange-700: #c2410c;
    --red-500: #ef4444;
    --red-600: #dc2626;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --shadow-sm: 0 8px 22px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 22px 60px rgba(15, 23, 42, 0.18);
    --radius-lg: 18px;
    --radius-xl: 26px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--gray-900);
    background: linear-gradient(180deg, var(--gray-50), var(--white));
    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 {
    display: block;
    max-width: 100%;
}

button,
input,
select {
    font: inherit;
}

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

.narrow-container {
    width: min(920px, calc(100% - 32px));
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    color: var(--white);
    background: linear-gradient(90deg, var(--orange-600), var(--red-600), var(--orange-700));
    box-shadow: 0 12px 26px rgba(194, 65, 12, 0.24);
}

.site-header-inner {
    width: min(1180px, calc(100% - 32px));
    height: 68px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

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

.brand-icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.brand-text {
    white-space: nowrap;
    font-size: 1.18rem;
}

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

.nav-link,
.mobile-link {
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link {
    padding: 9px 13px;
    font-size: 0.94rem;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.18);
}

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

.header-search input,
.mobile-search input,
.big-search input,
.search-control input,
.search-control select {
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 12px;
    outline: none;
}

.header-search input {
    width: 210px;
    padding: 9px 12px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.16);
}

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

.header-search button,
.mobile-search button,
.big-search button {
    border: 0;
    border-radius: 12px;
    padding: 9px 14px;
    color: var(--orange-700);
    font-weight: 800;
    cursor: pointer;
    background: var(--white);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.16);
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--white);
}

.mobile-panel {
    display: none;
    padding: 14px 16px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(124, 45, 18, 0.94);
}

.mobile-panel.is-open {
    display: block;
}

.mobile-search {
    margin-bottom: 12px;
}

.mobile-search input {
    min-width: 0;
    flex: 1;
    padding: 10px 12px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
}

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

.mobile-link {
    padding: 10px 12px;
}

.hero-section,
.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(120deg, var(--orange-600), var(--red-600), var(--orange-700));
}

.hero-section::before,
.page-hero::before {
    position: absolute;
    inset: 0;
    content: "";
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.24), transparent 24%),
        radial-gradient(circle at 86% 12%, rgba(255, 255, 255, 0.18), transparent 28%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.12));
}

.hero-glow {
    position: absolute;
    right: -160px;
    bottom: -160px;
    width: 460px;
    height: 460px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    filter: blur(12px);
}

.hero-container {
    position: relative;
    z-index: 2;
    padding: 58px 0 46px;
}

.hero-slider {
    position: relative;
}

.hero-slide {
    display: none;
    align-items: center;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
    gap: 38px;
    min-height: 520px;
}

.hero-slide.is-active {
    display: grid;
    animation: fadeIn 0.45s ease both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border-radius: 999px;
    padding: 6px 12px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
}

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

.hero-copy p,
.page-hero p,
.detail-intro p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.08rem;
}

.hero-tags,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.hero-tags span,
.detail-meta span {
    border-radius: 999px;
    padding: 7px 12px;
    color: var(--white);
    background: rgba(0, 0, 0, 0.18);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 0;
    border-radius: 14px;
    padding: 0 20px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-light {
    color: var(--orange-700);
    background: var(--white);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
}

.btn-ghost {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.btn-primary {
    color: var(--white);
    background: linear-gradient(90deg, var(--orange-500), var(--red-500));
}

.hero-visual {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 32px;
    min-height: 430px;
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.16);
}

.hero-visual img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    transition: transform 0.55s ease;
}

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

.hero-visual::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.78));
}

.hero-play,
.play-float {
    position: absolute;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: var(--white);
    background: rgba(249, 115, 22, 0.86);
    backdrop-filter: blur(10px);
}

.hero-play {
    top: 50%;
    left: 50%;
    z-index: 2;
    width: 76px;
    height: 76px;
    transform: translate(-50%, -50%);
    font-size: 1.8rem;
}

.hero-caption {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    z-index: 2;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 700;
}

.hero-control-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 8px;
}

.hero-control,
.hero-dot {
    border: 0;
    cursor: pointer;
}

.hero-control {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    color: var(--white);
    font-size: 1.8rem;
    background: rgba(255, 255, 255, 0.16);
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.4);
}

.hero-dot.is-active {
    width: 30px;
    background: var(--white);
}

.content-section {
    padding: 64px 0;
}

.section-soft {
    background: linear-gradient(180deg, var(--orange-50), rgba(255, 255, 255, 0.6));
}

.section-heading,
.section-line {
    display: flex;
    align-items: center;
    gap: 14px;
}

.section-heading {
    margin-bottom: 28px;
}

.section-line {
    justify-content: space-between;
    margin-bottom: 28px;
}

.section-line .section-heading {
    margin-bottom: 0;
}

.section-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    border-radius: 14px;
    color: var(--white);
    font-weight: 900;
    background: linear-gradient(135deg, var(--orange-500), var(--red-500));
    box-shadow: 0 14px 26px rgba(249, 115, 22, 0.2);
}

.section-heading h2,
.quick-panel h2,
.detail-panel h2,
.side-card h2,
.site-footer h2,
.category-overview-card h2 {
    margin: 0 0 4px;
    font-size: 1.6rem;
    line-height: 1.2;
}

.section-heading p,
.quick-panel p,
.category-overview-card p,
.site-footer p {
    margin: 0;
    color: var(--gray-600);
}

.section-more {
    color: var(--orange-600);
    font-weight: 800;
}

.cards-grid,
.featured-grid {
    display: grid;
    gap: 22px;
}

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

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

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

.movie-card {
    display: block;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.movie-cover-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, var(--orange-100), var(--gray-200));
}

.movie-card-featured .movie-cover-wrap {
    aspect-ratio: 16 / 12;
}

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

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

.movie-cover-wrap::after {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.56));
    transition: opacity 0.2s ease;
}

.movie-card:hover .movie-cover-wrap::after {
    opacity: 1;
}

.movie-type,
.movie-year,
.rank-badge {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    padding: 5px 9px;
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 800;
    background: rgba(0, 0, 0, 0.72);
}

.movie-type {
    top: 12px;
    left: 12px;
    background: var(--orange-500);
}

.movie-year {
    right: 12px;
    bottom: 12px;
}

.rank-badge {
    top: 12px;
    right: 12px;
    background: var(--red-500);
}

.play-float {
    left: 50%;
    top: 50%;
    z-index: 2;
    width: 54px;
    height: 54px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.92);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

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

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

.movie-card-body h3 {
    display: -webkit-box;
    min-height: 2.7em;
    margin: 0 0 8px;
    overflow: hidden;
    font-size: 1.02rem;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.2s ease;
}

.movie-card:hover h3 {
    color: var(--orange-600);
}

.movie-card-body p {
    display: -webkit-box;
    min-height: 3.1em;
    margin: 0 0 14px;
    overflow: hidden;
    color: var(--gray-500);
    font-size: 0.92rem;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-meta,
.card-tags,
.detail-tags,
.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.card-meta {
    margin-bottom: 12px;
    color: var(--gray-500);
    font-size: 0.84rem;
}

.card-tags span,
.detail-tags a,
.quick-links a {
    border-radius: 999px;
    padding: 6px 10px;
    color: var(--orange-700);
    font-size: 0.82rem;
    font-weight: 700;
    background: var(--orange-100);
}

.ranking-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.75fr);
    gap: 34px;
    align-items: start;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 54px 112px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    border-radius: 18px;
    padding: 12px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-row:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-lg);
}

.rank-index {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    color: var(--white);
    background: linear-gradient(135deg, var(--orange-500), var(--red-500));
}

.rank-row img {
    width: 112px;
    height: 72px;
    border-radius: 14px;
    object-fit: cover;
}

.rank-row h3 {
    margin: 0 0 4px;
    font-size: 1rem;
}

.rank-row p {
    display: -webkit-box;
    margin: 0 0 4px;
    overflow: hidden;
    color: var(--gray-500);
    font-size: 0.9rem;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.rank-row span {
    color: var(--gray-500);
    font-size: 0.82rem;
}

.rank-more {
    margin-top: 20px;
}

.quick-panel,
.detail-panel,
.side-card,
.category-overview-card,
.search-panel {
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.quick-panel,
.detail-panel,
.side-card,
.category-overview-card {
    padding: 24px;
}

.quick-panel {
    position: sticky;
    top: 92px;
}

.quick-links {
    margin: 18px 0 22px;
}

.big-search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.big-search input {
    min-width: 0;
    padding: 12px 14px;
    border-color: var(--gray-200);
    color: var(--gray-900);
    background: var(--gray-50);
}

.big-search button {
    color: var(--white);
    background: linear-gradient(90deg, var(--orange-500), var(--red-500));
}

.cta-section {
    padding: 72px 0;
    color: var(--white);
    background: linear-gradient(90deg, var(--orange-600), var(--red-600));
}

.cta-inner {
    text-align: center;
}

.cta-inner h2 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 4vw, 3rem);
}

.cta-inner p {
    max-width: 720px;
    margin: 0 auto 24px;
    color: rgba(255, 255, 255, 0.9);
}

.compact-hero {
    padding: 70px 0 62px;
}

.compact-hero .container {
    position: relative;
    z-index: 2;
}

.compact-hero h1 {
    max-width: 900px;
}

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

.breadcrumb a:hover {
    color: var(--white);
}

.category-overview-list {
    display: grid;
    gap: 24px;
}

.category-overview-head {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 22px;
}

.category-top-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
}

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

.wide-rank-list {
    gap: 16px;
}

.search-panel {
    display: grid;
    grid-template-columns: minmax(240px, 1.2fr) minmax(180px, 0.7fr) minmax(160px, 0.5fr) auto;
    gap: 16px;
    align-items: end;
    margin-bottom: 22px;
    padding: 20px;
}

.search-control {
    display: grid;
    gap: 7px;
}

.search-control label {
    color: var(--gray-600);
    font-size: 0.88rem;
    font-weight: 800;
}

.search-control input,
.search-control select {
    width: 100%;
    padding: 12px 13px;
    border-color: var(--gray-200);
    background: var(--gray-50);
}

.search-state {
    min-height: 26px;
    margin-bottom: 22px;
    color: var(--gray-600);
    font-weight: 700;
}

.detail-hero {
    min-height: 520px;
}

.detail-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    filter: saturate(1.08);
}

.detail-hero-inner {
    position: relative;
    z-index: 2;
    padding: 52px 0 62px;
}

.detail-intro {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 34px;
    align-items: end;
}

.detail-poster {
    width: 280px;
    aspect-ratio: 3 / 4;
    border-radius: 28px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.detail-content-section {
    padding-top: 44px;
}

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

.detail-main,
.detail-side {
    display: grid;
    gap: 22px;
}

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

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

.play-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    border: 0;
    color: var(--white);
    cursor: pointer;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.42));
}

.play-overlay span {
    display: grid;
    place-items: center;
    width: 88px;
    height: 88px;
    border-radius: 999px;
    font-size: 2.4rem;
    background: rgba(249, 115, 22, 0.9);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.36);
}

.player-shell.is-playing .play-overlay {
    display: none;
}

.detail-panel p {
    margin: 0;
    color: var(--gray-600);
    font-size: 1.02rem;
}

.detail-tags a {
    font-size: 0.9rem;
}

.prev-next-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.prev-next-links a {
    border-radius: 14px;
    padding: 10px 14px;
    color: var(--orange-700);
    font-weight: 800;
    background: var(--orange-100);
}

.side-card {
    overflow: hidden;
}

.side-card dl {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 10px 12px;
    margin: 18px 0 0;
}

.side-card dt {
    color: var(--gray-500);
    font-weight: 800;
}

.side-card dd {
    margin: 0;
    color: var(--gray-900);
    word-break: break-word;
}

.side-card dd a {
    color: var(--orange-600);
    font-weight: 800;
}

.accent-card {
    display: grid;
    gap: 10px;
    color: var(--white);
    background: linear-gradient(135deg, var(--orange-600), var(--red-600));
}

.accent-card a {
    border-radius: 12px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.16);
}

.site-footer {
    color: var(--white);
    background: linear-gradient(180deg, var(--gray-900), #050505);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.8fr 0.8fr 1fr;
    gap: 34px;
    padding: 54px 0 38px;
}

.site-footer p,
.site-footer a {
    color: rgba(255, 255, 255, 0.72);
}

.site-footer a:hover {
    color: var(--white);
}

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

.footer-brand {
    margin-bottom: 14px;
    color: var(--white);
}

.site-footer .brand-icon {
    color: var(--white);
    background: var(--orange-500);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 16px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
}

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

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

@media (max-width: 920px) {
    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .hero-slide,
    .ranking-layout,
    .category-top-layout,
    .detail-layout,
    .detail-intro,
    .footer-grid,
    .search-panel {
        grid-template-columns: 1fr;
    }

    .hero-slide {
        min-height: auto;
        padding-top: 26px;
    }

    .hero-copy h1,
    .page-hero h1,
    .detail-intro h1 {
        letter-spacing: -0.03em;
    }

    .hero-visual,
    .hero-visual img {
        min-height: 320px;
    }

    .quick-panel {
        position: static;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .detail-poster {
        width: 220px;
    }
}

@media (max-width: 680px) {
    .site-header-inner {
        height: 62px;
    }

    .brand-text {
        max-width: 160px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .hero-container {
        padding: 34px 0 30px;
    }

    .compact-hero {
        padding: 48px 0 44px;
    }

    .content-section {
        padding: 42px 0;
    }

    .cards-grid,
    .catalog-grid,
    .cards-grid-small {
        grid-template-columns: 1fr;
    }

    .rank-row {
        grid-template-columns: 42px 86px minmax(0, 1fr);
    }

    .rank-row img {
        width: 86px;
        height: 62px;
    }

    .big-search,
    .category-overview-head,
    .section-line {
        display: grid;
        grid-template-columns: 1fr;
    }

    .search-panel {
        padding: 16px;
    }

    .player-shell {
        border-radius: 18px;
    }

    .play-overlay span {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
}
