:root {
    --bg: #f8fafc;
    --bg-soft: #eef7f3;
    --text: #111827;
    --muted: #64748b;
    --line: #e5e7eb;
    --white: #ffffff;
    --emerald: #10b981;
    --teal: #0d9488;
    --cyan: #06b6d4;
    --dark: #0f172a;
    --shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
    --shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.08);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(18px);
}

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

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

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-weight: 800;
    font-size: 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--emerald), var(--teal));
    box-shadow: 0 10px 22px rgba(16, 185, 129, 0.28);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-text strong {
    font-size: 20px;
    letter-spacing: 0.02em;
}

.brand-text small {
    color: rgba(255, 255, 255, 0.88);
    font-size: 12px;
}

.site-header.is-scrolled .brand-text small,
.site-header.menu-open .brand-text small {
    color: var(--muted);
}

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

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    padding: 10px 16px;
    border-radius: 12px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-header.is-scrolled .nav-link,
.site-header.menu-open .nav-link {
    color: #334155;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
    background: linear-gradient(135deg, var(--emerald), var(--teal));
    transform: translateY(-1px);
}

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

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: #ffffff;
    border-radius: 99px;
}

.site-header.is-scrolled .nav-toggle,
.site-header.menu-open .nav-toggle {
    background: #f1f5f9;
}

.site-header.is-scrolled .nav-toggle span,
.site-header.menu-open .nav-toggle span {
    background: var(--dark);
}

.mobile-nav {
    display: none;
    padding: 8px 18px 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

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

.mobile-nav-link {
    padding: 12px 14px;
    border-radius: 12px;
    color: #334155;
}

.mobile-nav-link.active,
.mobile-nav-link:hover {
    color: #ffffff;
    background: linear-gradient(135deg, var(--emerald), var(--teal));
}

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: var(--dark);
}

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

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: radial-gradient(circle at 30% 40%, rgba(16, 185, 129, 0.35), transparent 35%), #111827;
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.58) 45%, rgba(0, 0, 0, 0.12) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, transparent 48%, rgba(0, 0, 0, 0.24) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    min-height: 100vh;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: 86px;
    color: #ffffff;
}

.hero-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.hero-kicker span,
.section-eyebrow {
    display: inline-flex;
    color: #ffffff;
    background: linear-gradient(135deg, var(--emerald), var(--teal));
    border-radius: 999px;
    padding: 7px 15px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.hero-kicker a {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 600;
}

.hero h1 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(42px, 7vw, 86px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.hero p {
    max-width: 720px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(17px, 2vw, 22px);
}

.hero-meta,
.detail-meta,
.movie-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
}

.hero-meta {
    margin-top: 22px;
}

.hero-meta span,
.detail-meta span,
.movie-meta-line span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-meta span + span::before,
.detail-meta span + span::before,
.movie-meta-line span + span::before {
    content: "•";
    color: currentColor;
    opacity: 0.55;
}

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

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

.tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    color: #047857;
    background: rgba(16, 185, 129, 0.12);
    font-size: 12px;
    font-weight: 700;
}

.hero-tags .tag {
    color: #d1fae5;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
}

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

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

.primary-btn {
    color: #ffffff;
    background: linear-gradient(135deg, var(--emerald), var(--teal));
    box-shadow: 0 16px 30px rgba(16, 185, 129, 0.28);
}

.primary-btn:hover,
.ghost-btn:hover {
    transform: translateY(-2px) scale(1.02);
}

.ghost-btn {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.ghost-btn.dark {
    color: #0f172a;
    border-color: rgba(15, 23, 42, 0.12);
    background: #ffffff;
}

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

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

.hero-dot.active {
    width: 32px;
    background: #ffffff;
}

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

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

.section-head h2,
.side-panel h2,
.related-panel h2,
.detail-article h2 {
    margin: 8px 0 0;
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.section-head a {
    color: var(--teal);
    font-weight: 800;
}

.section-eyebrow {
    color: #047857;
    background: rgba(16, 185, 129, 0.14);
}

.search-panel {
    position: relative;
    z-index: 5;
    margin-top: -38px;
    padding: 22px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.search-panel.raised {
    margin-top: -26px;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 0 16px;
}

.search-box.wide {
    width: 100%;
}

.search-box span {
    color: var(--teal);
    font-size: 24px;
    font-weight: 800;
}

.search-box input {
    width: 100%;
    height: 54px;
    border: 0;
    outline: none;
    background: transparent;
    color: var(--text);
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.filter-chip {
    border: 0;
    border-radius: 999px;
    padding: 10px 15px;
    color: #334155;
    background: #eef2f7;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.filter-chip:hover,
.filter-chip.active {
    color: #ffffff;
    background: linear-gradient(135deg, var(--emerald), var(--teal));
    transform: translateY(-1px);
}

.card-grid {
    display: grid;
    gap: 24px;
}

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

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

.movie-card {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

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

.poster-link img,
.rank-poster img,
.compact-poster img,
.detail-poster img,
.detail-backdrop img,
.category-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease, opacity 0.2s ease;
}

.poster-link img.is-missing,
.rank-poster img.is-missing,
.compact-poster img.is-missing,
.detail-poster img.is-missing,
.detail-backdrop img.is-missing,
.category-tile img.is-missing,
.hero-image.is-missing {
    opacity: 0;
}

.movie-card:hover .poster-link img,
.category-tile:hover img,
.compact-card:hover img,
.rank-item:hover img {
    transform: scale(1.08);
}

.poster-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 35% 35%, rgba(16, 185, 129, 0.42), transparent 34%),
        linear-gradient(135deg, #111827, #134e4a);
}

.card-gradient {
    position: absolute;
    inset: auto 0 0;
    height: 55%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent);
}

.play-pill {
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 2;
    color: #ffffff;
    background: rgba(16, 185, 129, 0.9);
    border-radius: 999px;
    padding: 6px 11px;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

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

.movie-card h3,
.rank-copy h3 {
    margin: 8px 0 8px;
    font-size: 18px;
    line-height: 1.25;
}

.movie-card h3 a:hover,
.rank-copy h3 a:hover {
    color: var(--teal);
}

.movie-card p,
.rank-copy p,
.footer-grid p,
.page-hero p,
.detail-one-line,
.detail-article p {
    color: var(--muted);
}

.movie-card p {
    min-height: 46px;
    margin: 0 0 14px;
    font-size: 14px;
}

.movie-meta-line {
    color: #64748b;
    font-size: 12px;
}

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

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

.category-tile {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #0f172a, #065f46);
    box-shadow: var(--shadow-soft);
}

.category-tile-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.18));
}

.category-tile-copy {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    color: #ffffff;
}

.category-tile-copy strong {
    display: block;
    font-size: 22px;
    line-height: 1.2;
}

.category-tile-copy small {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.82);
}

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

.inline-head {
    margin-bottom: 22px;
}

.side-panel,
.related-panel,
.detail-article {
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.side-panel,
.related-panel {
    padding: 24px;
}

.compact-list {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

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

.compact-card:hover {
    background: #f8fafc;
    transform: translateX(2px);
}

.compact-poster {
    height: 70px;
    overflow: hidden;
    border-radius: 12px;
    background: linear-gradient(135deg, #0f172a, #134e4a);
}

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

.compact-info strong {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.3;
}

.compact-info small {
    margin-top: 6px;
    color: var(--muted);
}

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

.rank-item {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
    padding: 14px;
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.rank-poster {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: linear-gradient(135deg, #0f172a, #134e4a);
}

.rank-poster span {
    position: absolute;
    left: 10px;
    top: 10px;
    display: grid;
    place-items: center;
    min-width: 42px;
    height: 34px;
    color: #ffffff;
    font-weight: 900;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--emerald), var(--teal));
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
}

.rank-copy {
    padding: 8px 6px;
}

.rank-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
    color: var(--muted);
    font-size: 13px;
}

.page-main {
    padding-top: 78px;
}

.page-hero {
    min-height: 330px;
    display: grid;
    align-items: center;
    padding: 58px max(16px, calc((100vw - 1180px) / 2));
    color: #ffffff;
    background:
        radial-gradient(circle at 72% 22%, rgba(16, 185, 129, 0.34), transparent 24%),
        linear-gradient(135deg, #0f172a, #134e4a 55%, #0f766e);
}

.page-hero h1 {
    margin: 10px 0 12px;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.page-hero p {
    max-width: 740px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
}

.detail-hero {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    padding: 124px 0 72px;
    color: #ffffff;
    background: #0f172a;
}

.detail-backdrop {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 35% 35%, rgba(16, 185, 129, 0.25), transparent 30%), #0f172a;
}

.detail-backdrop img {
    opacity: 0.26;
    filter: blur(2px);
}

.detail-backdrop span {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.64)), linear-gradient(0deg, #0f172a, transparent 58%);
}

.detail-hero-inner {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 42px;
    align-items: center;
}

.detail-poster {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, #0f172a, #134e4a);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.38);
}

.breadcrumb {
    display: flex;
    gap: 9px;
    color: rgba(255, 255, 255, 0.74);
}

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

.detail-copy h1 {
    margin: 16px 0;
    font-size: clamp(38px, 6vw, 76px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.detail-one-line {
    max-width: 820px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 20px;
}

.detail-meta {
    margin: 22px 0;
    color: rgba(255, 255, 255, 0.78);
}

.player-shell {
    padding-top: 56px;
}

.video-frame {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: #020617;
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 9;
}

.video-player {
    width: 100%;
    height: 100%;
    display: block;
    background: #020617;
}

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 16px;
    color: #ffffff;
    border: 0;
    cursor: pointer;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.25), rgba(2, 6, 23, 0.72));
}

.player-overlay.hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}

.player-icon {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    padding-left: 5px;
    font-size: 34px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--emerald), var(--teal));
    box-shadow: 0 18px 38px rgba(16, 185, 129, 0.32);
}

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

.detail-article {
    padding: 30px;
}

.detail-article h2 {
    font-size: 26px;
    margin-top: 0;
}

.detail-article p {
    font-size: 17px;
}

.site-footer {
    margin-top: 40px;
    color: #ffffff;
    background: linear-gradient(135deg, #0f172a, #111827 55%, #0f3d3a);
}

.footer-grid {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 36px;
    padding: 56px 0 34px;
}

.footer-brand {
    font-size: 26px;
    font-weight: 900;
}

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

.footer-grid h3 {
    margin: 0 0 12px;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.74);
}

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

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

[hidden],
.is-filtered {
    display: none !important;
}

@media (max-width: 1080px) {
    .featured-grid,
    .full-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

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

    .detail-hero-inner {
        grid-template-columns: 260px minmax(0, 1fr);
    }
}

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

    .nav-toggle {
        display: block;
    }

    .header-inner {
        height: 70px;
    }

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

    .brand-text small {
        display: none;
    }

    .hero-content {
        padding-top: 76px;
    }

    .hero h1 {
        font-size: clamp(38px, 13vw, 64px);
    }

    .section-shell {
        padding: 46px 0;
    }

    .search-panel {
        margin-top: -28px;
    }

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

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

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

    .movie-card h3 {
        font-size: 16px;
    }

    .rank-item {
        grid-template-columns: 110px minmax(0, 1fr);
    }

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

    .detail-poster {
        width: min(260px, 68vw);
    }

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

@media (max-width: 560px) {
    .hero {
        min-height: 88vh;
    }

    .hero-content {
        min-height: 88vh;
    }

    .hero-meta,
    .detail-meta,
    .movie-meta-line {
        gap: 8px;
    }

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

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

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

    .rank-item,
    .compact-card {
        grid-template-columns: 92px minmax(0, 1fr);
    }

    .rank-poster {
        min-height: 120px;
    }

    .detail-article,
    .side-panel,
    .related-panel {
        padding: 20px;
    }

    .video-frame {
        border-radius: 18px;
    }
}
