
:root {
    --color-primary: #0d9488;
    --color-primary-dark: #0f766e;
    --color-accent: #0891b2;
    --color-ink: #111827;
    --color-muted: #667085;
    --color-soft: #f8fafc;
    --color-border: #e5e7eb;
    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
    --shadow-card: 0 14px 30px rgba(15, 23, 42, 0.10);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

button,
input,
select {
    font: inherit;
}

.site-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);
    border-bottom: 1px solid rgba(226, 232, 240, 0.92);
    backdrop-filter: blur(20px);
    box-shadow: 0 6px 22px rgba(15, 23, 42, 0.06);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 0;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: #ffffff;
    font-weight: 900;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    box-shadow: 0 12px 22px rgba(13, 148, 136, 0.32);
}

.brand-text,
.footer-brand span:last-child {
    display: grid;
    line-height: 1.2;
}

.brand strong,
.footer-brand strong {
    font-size: 22px;
    letter-spacing: 0.02em;
}

.brand small,
.footer-brand small {
    color: var(--color-muted);
    font-size: 12px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-nav a {
    padding: 10px 16px;
    border-radius: 999px;
    color: #475467;
    font-weight: 700;
    transition: 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    box-shadow: 0 10px 24px rgba(8, 145, 178, 0.22);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    color: var(--color-ink);
    background: #f1f5f9;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 76px 0 88px;
    background: linear-gradient(135deg, #ecfeff 0%, #f0fdfa 48%, #eff6ff 100%);
}

.hero-bg {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 999px;
    filter: blur(18px);
    opacity: 0.22;
}

.hero-bg-one {
    top: -160px;
    left: -80px;
    background: #2dd4bf;
}

.hero-bg-two {
    right: -120px;
    bottom: -160px;
    background: #38bdf8;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
    gap: 56px;
    align-items: center;
}

.hero-copy {
    position: relative;
    min-height: 430px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: 0.45s ease;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 12px;
    padding: 7px 12px;
    color: var(--color-primary-dark);
    background: rgba(20, 184, 166, 0.10);
    border: 1px solid rgba(20, 184, 166, 0.20);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.hero h1,
.page-hero h1 {
    margin: 0;
    font-size: clamp(38px, 6vw, 66px);
    line-height: 1.06;
    letter-spacing: -0.06em;
}

.hero p,
.page-hero p {
    max-width: 700px;
    margin: 22px 0 0;
    color: #475467;
    font-size: 19px;
}

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

.hero-meta span,
.detail-meta span {
    padding: 7px 12px;
    color: #0f766e;
    background: #ffffff;
    border: 1px solid rgba(13, 148, 136, 0.18);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

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

.primary-btn,
.ghost-btn,
.light-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 900;
    transition: 0.22s ease;
}

.primary-btn {
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    box-shadow: 0 14px 28px rgba(13, 148, 136, 0.28);
}

.primary-btn:hover,
.light-btn:hover,
.ghost-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.18);
}

.primary-btn.full {
    width: 100%;
}

.ghost-btn {
    color: var(--color-primary-dark);
    background: #ffffff;
    border: 1px solid rgba(13, 148, 136, 0.22);
}

.light-btn {
    color: var(--color-primary-dark);
    background: #ffffff;
}

.hero-visual {
    position: relative;
    min-height: 540px;
}

.hero-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 34px;
    background: #0f172a;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    transform: scale(0.96) rotate(-1deg);
    transition: 0.5s ease;
}

.hero-image.is-active {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

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

.hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.72) 100%);
}

.hero-image span {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 26px;
    z-index: 1;
    color: #ffffff;
    font-size: 28px;
    font-weight: 900;
}

.hero-dots {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(13, 148, 136, 0.24);
    transition: 0.2s ease;
}

.hero-dot.is-active {
    width: 34px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
}

.quick-features {
    padding: 34px 0;
    background: #ffffff;
}

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

.feature-grid article {
    padding: 22px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.feature-grid strong {
    display: block;
    margin-bottom: 6px;
    font-size: 18px;
}

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

.section-block {
    padding: 78px 0;
}

.soft-bg {
    background: linear-gradient(135deg, #f8fafc, #eef2ff);
}

.section-heading {
    max-width: 740px;
    margin: 0 auto 36px;
    text-align: center;
}

.section-heading.align-left {
    margin-left: 0;
    text-align: left;
}

.section-heading h2,
.panel-head h2,
.category-overview-head h2,
.detail-content h2,
.info-card h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.section-heading p,
.category-overview-head p {
    margin: 12px 0 0;
    color: var(--color-muted);
}

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

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow-card);
    transition: 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 42px rgba(15, 23, 42, 0.16);
}

.poster-link {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, #0f172a, #134e4a);
}

.movie-card:not(.compact) .poster-link {
    aspect-ratio: 16 / 10;
}

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

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

.poster-link::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, 0.62));
    opacity: 0;
    transition: 0.2s ease;
}

.movie-card:hover .poster-link::after {
    opacity: 1;
}

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

.year-badge {
    right: 12px;
    background: rgba(13, 148, 136, 0.92);
}

.rank-badge {
    left: 12px;
    background: rgba(244, 63, 94, 0.92);
}

.play-mark {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    color: #ffffff;
    background: rgba(20, 184, 166, 0.9);
    border-radius: 999px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.82);
    transition: 0.2s ease;
}

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

.movie-body {
    padding: 20px;
}

.movie-card.compact .movie-body {
    padding: 14px;
}

.movie-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
    color: var(--color-primary-dark);
    font-size: 13px;
    font-weight: 800;
}

.movie-body h2 {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.3;
}

.movie-card.compact .movie-body h2 {
    min-height: 45px;
    font-size: 16px;
}

.movie-body h2 a:hover {
    color: var(--color-primary-dark);
}

.movie-body p {
    display: -webkit-box;
    min-height: 48px;
    margin: 0 0 14px;
    overflow: hidden;
    color: var(--color-muted);
    font-size: 14px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

.tag-row span {
    display: inline-flex;
    padding: 5px 9px;
    color: #475467;
    background: #f1f5f9;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.tag-row.large span {
    padding: 8px 12px;
    color: #0f766e;
    background: #ecfeff;
    border: 1px solid rgba(20, 184, 166, 0.22);
    font-size: 14px;
}

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

.category-card,
.category-overview,
.rank-panel,
.filter-panel,
.detail-content,
.info-card,
.detail-side-card {
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: var(--radius-xl);
    background: #ffffff;
    box-shadow: var(--shadow-card);
}

.category-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 28px;
}

.category-card h2,
.category-overview h2 {
    margin: 0;
    font-size: 28px;
}

.category-card p,
.category-overview p {
    color: var(--color-muted);
}

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

.small-card {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 8px;
    border-radius: 16px;
    background: #f8fafc;
    transition: 0.2s ease;
}

.small-card:hover {
    background: #ecfeff;
}

.small-card img {
    width: 64px;
    height: 78px;
    object-fit: cover;
    border-radius: 12px;
    background: #0f172a;
}

.small-card strong,
.small-card small {
    display: block;
}

.small-card strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.small-card small {
    color: var(--color-muted);
    font-size: 12px;
}

.text-link {
    display: inline-flex;
    width: fit-content;
    color: var(--color-primary-dark);
    font-weight: 900;
}

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

.rank-panel {
    position: sticky;
    top: 96px;
    padding: 24px;
}

.panel-head {
    margin-bottom: 18px;
}

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

.rank-list.large {
    gap: 14px;
    padding: 36px 0 70px;
}

.rank-row {
    display: grid;
    grid-template-columns: 42px 58px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 18px;
    background: #ffffff;
    transition: 0.2s ease;
}

.rank-list.large .rank-row {
    grid-template-columns: 56px 86px minmax(0, 1fr);
    border: 1px solid var(--color-border);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.rank-row:hover {
    transform: translateX(4px);
    background: #ecfeff;
}

.rank-no {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 12px;
    font-weight: 900;
}

.rank-row img {
    width: 58px;
    height: 74px;
    object-fit: cover;
    border-radius: 12px;
    background: #0f172a;
}

.rank-list.large .rank-row img {
    width: 86px;
    height: 110px;
}

.rank-info strong,
.rank-info small {
    display: block;
}

.rank-info strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-info small {
    color: var(--color-muted);
}

.cta-section {
    padding: 78px 0;
    color: #ffffff;
    text-align: center;
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-accent));
}

.cta-section h2 {
    margin: 0;
    font-size: clamp(30px, 5vw, 48px);
}

.cta-section p {
    max-width: 680px;
    margin: 16px auto 28px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
}

.page-hero {
    padding: 72px 0;
    color: #ffffff;
    background: radial-gradient(circle at 15% 20%, rgba(45, 212, 191, 0.36), transparent 28%), linear-gradient(135deg, #0f766e, #0891b2);
}

.page-hero .eyebrow {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.22);
}

.page-hero p {
    color: rgba(255, 255, 255, 0.86);
}

.page-stack {
    display: grid;
    gap: 30px;
    padding: 56px 0 80px;
}

.category-overview {
    padding: 28px;
}

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

.catalog-section {
    padding: 44px 0 80px;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
    gap: 24px;
    align-items: center;
    margin-bottom: 28px;
    padding: 24px;
}

.filter-panel h2 {
    margin: 0;
    font-size: 26px;
}

.filter-controls {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) repeat(3, minmax(110px, 0.5fr));
    gap: 12px;
}

.filter-controls input,
.filter-controls select {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    color: var(--color-ink);
    background: #f8fafc;
    outline: none;
}

.filter-controls input:focus,
.filter-controls select:focus {
    border-color: rgba(13, 148, 136, 0.55);
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.12);
}

.empty-state {
    margin: 32px 0 0;
    padding: 24px;
    color: var(--color-muted);
    text-align: center;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}

.detail-top {
    padding: 34px 0 54px;
    background: linear-gradient(135deg, #0f172a, #134e4a 58%, #0e7490);
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
}

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

.detail-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(290px, 0.72fr);
    gap: 26px;
    align-items: stretch;
}

.player-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-xl);
    background: #000000;
    box-shadow: 0 26px 55px rgba(0, 0, 0, 0.35);
}

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

.play-cover {
    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: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.62));
    cursor: pointer;
    transition: 0.2s ease;
}

.play-cover:hover {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.48));
}

.play-cover.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.play-cover span {
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 999px;
    box-shadow: 0 18px 36px rgba(13, 148, 136, 0.42);
    font-size: 28px;
}

.play-cover strong {
    font-size: 20px;
}

.detail-side-card {
    display: grid;
    gap: 18px;
    padding: 18px;
}

.detail-side-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 22px;
    background: #0f172a;
}

.detail-side-card h1 {
    margin: 0;
    font-size: 26px;
    line-height: 1.25;
}

.detail-side-card p {
    color: var(--color-muted);
}

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

.detail-content,
.info-card {
    padding: 28px;
}

.detail-content h2 {
    margin-top: 28px;
    margin-bottom: 12px;
    font-size: 28px;
}

.detail-content h2:first-of-type {
    margin-top: 0;
}

.detail-content p {
    color: #344054;
    font-size: 17px;
    white-space: pre-line;
}

.review-text {
    padding: 18px;
    border-left: 4px solid var(--color-primary);
    border-radius: 14px;
    background: #ecfeff;
    font-style: italic;
}

.info-card {
    position: sticky;
    top: 96px;
}

.info-card dl {
    display: grid;
    gap: 0;
    margin: 18px 0 0;
}

.info-card div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
}

.info-card div:last-child {
    border-bottom: 0;
}

.info-card dt {
    color: var(--color-muted);
}

.info-card dd {
    margin: 0;
    font-weight: 800;
    text-align: right;
}

.info-card a {
    color: var(--color-primary-dark);
}

.list-page {
    padding-bottom: 60px;
}

.site-footer {
    color: #d1d5db;
    background: linear-gradient(135deg, #111827, #0f172a);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.85fr 0.85fr;
    gap: 36px;
    padding: 54px 0 36px;
}

.footer-brand .brand-icon {
    width: 38px;
    height: 38px;
}

.footer-brand strong {
    color: #ffffff;
}

.footer-grid p {
    max-width: 460px;
    color: #9ca3af;
}

.footer-grid h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 18px;
}

.footer-links {
    display: grid;
    gap: 10px;
}

.footer-links a {
    color: #9ca3af;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    border-top: 1px solid rgba(148, 163, 184, 0.24);
    color: #9ca3af;
    font-size: 14px;
}

[hidden] {
    display: none !important;
}

@media (max-width: 1024px) {
    .hero-grid,
    .two-column,
    .detail-hero-grid,
    .detail-layout,
    .filter-panel,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        min-height: 430px;
    }

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

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

    .info-card,
    .rank-panel {
        position: static;
    }
}

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

    .nav-toggle {
        display: inline-grid;
        place-items: center;
    }

    .site-nav {
        position: absolute;
        left: 12px;
        right: 12px;
        top: 74px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        border: 1px solid var(--color-border);
        border-radius: 20px;
        background: #ffffff;
        box-shadow: var(--shadow-card);
    }

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

    .site-nav a {
        text-align: center;
    }

    .hero {
        padding: 48px 0 62px;
    }

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

    .hero-visual {
        min-height: 390px;
    }

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

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

    .hero-dots {
        bottom: 8px;
    }

    .feature-grid,
    .movie-grid,
    .featured-grid,
    .compact-grid,
    .catalog-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .section-block {
        padding: 56px 0;
    }

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

    .category-overview-head,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .rank-row,
    .rank-list.large .rank-row {
        grid-template-columns: 38px 64px minmax(0, 1fr);
    }

    .rank-list.large .rank-row img {
        width: 64px;
        height: 82px;
    }

    .detail-top {
        padding-top: 24px;
    }

    .detail-side-card {
        padding: 14px;
    }
}
