:root {
    --stellar-dark: #0a0e27;
    --stellar-deep: #141b3d;
    --stellar-mid: #1e2847;
    --stellar-light: #2a3857;
    --stellar-glow: #4a90e2;
    --stellar-glow-soft: rgba(74, 144, 226, 0.28);
    --text-main: #ffffff;
    --text-muted: #aab6d1;
    --text-soft: #d7def2;
    --card-border: rgba(255, 255, 255, 0.09);
    --shadow-glow: 0 0 28px rgba(74, 144, 226, 0.28);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(10, 14, 39, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(42, 56, 87, 0.7);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    min-height: 72px;
    padding: 0 22px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 21px;
    font-weight: 800;
    white-space: nowrap;
}

.logo-mark {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--stellar-glow), #7ec4ff);
    color: #ffffff;
    box-shadow: var(--shadow-glow);
    font-size: 15px;
}

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

.desktop-nav a,
.mobile-nav a {
    padding: 10px 12px;
    color: var(--text-muted);
    border-radius: 999px;
    transition: color 0.25s ease, background 0.25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-nav a:hover,
.mobile-nav a.active {
    color: #ffffff;
    background: rgba(74, 144, 226, 0.18);
}

.header-search {
    width: min(320px, 30vw);
    display: flex;
    align-items: center;
    background: var(--stellar-mid);
    border: 1px solid rgba(42, 56, 87, 0.95);
    border-radius: 999px;
    overflow: hidden;
}

.header-search input,
.hero-search input,
.filter-search input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #ffffff;
}

.header-search input {
    padding: 10px 14px;
}

.header-search button,
.hero-search button {
    border: 0;
    cursor: pointer;
    background: var(--stellar-glow);
    color: #ffffff;
    padding: 10px 16px;
    white-space: nowrap;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    background: var(--stellar-mid);
    border-radius: 12px;
}

.mobile-nav {
    display: none;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 22px 18px;
    gap: 8px;
    flex-wrap: wrap;
}

.hero-section {
    position: relative;
    min-height: 720px;
    height: 76vh;
    overflow: hidden;
    isolation: isolate;
    background: var(--stellar-dark);
}

.hero-title-block {
    position: absolute;
    top: 100px;
    left: max(24px, calc((100vw - 1280px) / 2 + 24px));
    z-index: 8;
    max-width: 560px;
}

.hero-title-block h1 {
    margin: 0 0 20px;
    font-size: clamp(28px, 5vw, 54px);
    line-height: 1.08;
    letter-spacing: -0.04em;
    text-shadow: 0 16px 60px rgba(0, 0, 0, 0.72);
}

.hero-search {
    display: flex;
    width: min(520px, calc(100vw - 48px));
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    overflow: hidden;
    background: rgba(20, 27, 61, 0.72);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
}

.hero-search input {
    padding: 15px 18px;
}

.hero-search button {
    padding: 15px 24px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: opacity 900ms ease, transform 1600ms ease;
}

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

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 18%, rgba(74, 144, 226, 0.25), transparent 34%),
        linear-gradient(90deg, rgba(10, 14, 39, 0.94) 0%, rgba(10, 14, 39, 0.64) 48%, rgba(10, 14, 39, 0.22) 100%),
        linear-gradient(0deg, var(--stellar-dark) 0%, rgba(10, 14, 39, 0.24) 44%, rgba(10, 14, 39, 0.1) 100%);
}

.hero-content {
    position: absolute;
    z-index: 6;
    left: max(24px, calc((100vw - 1280px) / 2 + 24px));
    bottom: 92px;
    max-width: 760px;
    padding-right: 24px;
}

.hero-kicker,
.page-kicker,
.detail-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    color: #ffffff;
    background: rgba(74, 144, 226, 0.22);
    border: 1px solid rgba(74, 144, 226, 0.55);
    border-radius: 999px;
    padding: 6px 13px;
    font-size: 14px;
}

.hero-content h2 {
    margin: 0 0 16px;
    font-size: clamp(42px, 8vw, 88px);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.hero-content p {
    max-width: 680px;
    margin: 0 0 22px;
    color: var(--text-soft);
    font-size: clamp(16px, 2vw, 20px);
}

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

.hero-tags span,
.tag-row span,
.detail-tags a {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(42, 56, 87, 0.78);
    color: var(--text-soft);
    font-size: 13px;
}

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

.primary-button,
.ghost-button,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-weight: 700;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.primary-button {
    padding: 13px 26px;
    background: var(--stellar-glow);
    color: #ffffff;
    box-shadow: var(--shadow-glow);
}

.ghost-button {
    padding: 12px 24px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.primary-button:hover,
.ghost-button:hover,
.text-link:hover {
    transform: translateY(-2px);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 10;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.45);
    cursor: pointer;
    font-size: 42px;
    line-height: 1;
    transition: background 0.25s ease;
}

.hero-arrow:hover {
    background: rgba(74, 144, 226, 0.82);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

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

.hero-dot.is-active {
    width: 34px;
    background: var(--stellar-glow);
}

.content-section {
    padding: 72px 24px;
}

.content-section > * {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.gradient-section {
    background: linear-gradient(180deg, var(--stellar-dark), var(--stellar-deep));
}

.dark-section {
    background: var(--stellar-dark);
}

.deep-section {
    background: var(--stellar-deep);
}

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

.section-heading > div {
    position: relative;
}

.heading-line {
    display: inline-block;
    width: 46px;
    height: 4px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: var(--stellar-glow);
    box-shadow: var(--shadow-glow);
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.1;
}

.section-heading p {
    margin: 8px 0 0;
    color: var(--text-muted);
}

.section-heading > a,
.text-link {
    color: var(--stellar-glow);
    font-weight: 700;
}

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

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

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

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

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

.movie-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(30, 40, 71, 0.96), rgba(20, 27, 61, 0.96));
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(74, 144, 226, 0.6);
    box-shadow: 0 24px 70px rgba(74, 144, 226, 0.16);
}

.poster-wrap {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: var(--stellar-mid);
}

.poster-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 14, 39, 0), rgba(10, 14, 39, 0.78));
}

.poster-wrap img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease, opacity 0.25s ease;
}

.movie-card:hover .poster-wrap img {
    transform: scale(1.06);
    opacity: 0.88;
}

.movie-badge,
.movie-year,
.rank-badge {
    position: absolute;
    z-index: 2;
    top: 12px;
    padding: 5px 9px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
}

.movie-badge {
    left: 12px;
    background: rgba(74, 144, 226, 0.9);
    color: #ffffff;
}

.movie-year {
    right: 12px;
    background: rgba(0, 0, 0, 0.54);
    color: #ffffff;
}

.rank-badge {
    left: 12px;
    top: 48px;
    background: rgba(255, 184, 76, 0.92);
    color: #171717;
}

.poster-play {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 50%;
    width: 62px;
    height: 62px;
    transform: translate(-50%, -50%) scale(0.86);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 144, 226, 0.92);
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    box-shadow: var(--shadow-glow);
}

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

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

.movie-card-body h3 {
    margin: 0 0 9px;
    font-size: 18px;
    line-height: 1.35;
}

.movie-card-body h3 a:hover {
    color: var(--stellar-glow);
}

.movie-card-body p {
    height: 48px;
    margin: 0 0 12px;
    color: var(--text-muted);
    overflow: hidden;
}

.meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--text-soft);
    font-size: 13px;
}

.meta-line a {
    color: var(--stellar-glow);
}

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

.compact-card .movie-card-body p {
    height: 44px;
    font-size: 14px;
}

.category-showcase {
    display: grid;
    gap: 38px;
}

.category-strip {
    border: 1px solid var(--card-border);
    border-radius: var(--radius-xl);
    padding: 24px;
    background: rgba(30, 40, 71, 0.58);
}

.strip-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.strip-title h3 {
    margin: 0;
    font-size: 24px;
}

.strip-title a {
    color: var(--stellar-glow);
    font-weight: 700;
}

.horizontal-cards {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(180px, 1fr);
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 12px;
    scrollbar-color: var(--stellar-glow) var(--stellar-mid);
}

.ranking-list {
    list-style: none;
    padding: 0;
}

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

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

.ranking-item a {
    display: grid;
    grid-template-columns: 48px 70px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 13px;
    border: 1px solid var(--card-border);
    border-radius: 18px;
    background: rgba(30, 40, 71, 0.72);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.ranking-item a:hover {
    transform: translateY(-3px);
    border-color: rgba(74, 144, 226, 0.6);
}

.ranking-number {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--stellar-glow);
    color: #ffffff;
    font-weight: 800;
}

.ranking-item img {
    width: 70px;
    height: 92px;
    object-fit: cover;
    border-radius: 12px;
}

.ranking-info strong,
.ranking-info em {
    display: block;
}

.ranking-info strong {
    font-size: 16px;
    margin-bottom: 6px;
}

.ranking-info em {
    color: var(--text-muted);
    font-style: normal;
    font-size: 13px;
}

.ranking-action {
    color: var(--stellar-glow);
    font-weight: 700;
}

.page-hero {
    padding: 92px 24px 60px;
    background:
        radial-gradient(circle at 22% 12%, rgba(74, 144, 226, 0.25), transparent 32%),
        linear-gradient(180deg, var(--stellar-deep), var(--stellar-dark));
}

.page-hero > div {
    max-width: 1280px;
    margin: 0 auto;
}

.page-hero h1 {
    max-width: 880px;
    margin: 0 0 14px;
    font-size: clamp(34px, 6vw, 62px);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.page-hero p {
    max-width: 760px;
    margin: 0;
    color: var(--text-muted);
    font-size: 18px;
}

.filter-panel {
    margin-bottom: 28px;
    padding: 22px;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    background: rgba(20, 27, 61, 0.72);
}

.filter-search {
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 16px;
    background: var(--stellar-mid);
}

.filter-search input {
    padding: 14px 16px;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-buttons button {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(42, 56, 87, 0.82);
    color: var(--text-soft);
    cursor: pointer;
    padding: 8px 14px;
    transition: background 0.25s ease, color 0.25s ease;
}

.filter-buttons button:hover,
.filter-buttons button.active {
    background: var(--stellar-glow);
    color: #ffffff;
}

.empty-state {
    display: none;
    margin: 18px 0 0;
    color: var(--text-muted);
}

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

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

.category-card {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 22px;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-xl);
    background: rgba(30, 40, 71, 0.72);
    overflow: hidden;
    padding: 18px;
}

.category-cover {
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border-radius: 20px;
}

.category-cover img {
    height: 100%;
    object-fit: cover;
}

.category-card h2 {
    margin: 6px 0 10px;
    font-size: 24px;
}

.category-card p {
    margin: 0 0 12px;
    color: var(--text-muted);
}

.category-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0;
}

.category-links a {
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(74, 144, 226, 0.16);
    color: var(--text-soft);
    font-size: 13px;
}

.detail-hero {
    padding: 42px 24px 64px;
    background:
        radial-gradient(circle at 82% 10%, rgba(74, 144, 226, 0.24), transparent 30%),
        linear-gradient(180deg, var(--stellar-deep), var(--stellar-dark));
}

.breadcrumb {
    max-width: 1280px;
    margin: 0 auto 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--stellar-glow);
}

.detail-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 2.1fr) minmax(320px, 0.9fr);
    gap: 28px;
    align-items: start;
}

.player-card {
    position: relative;
    border: 1px solid rgba(74, 144, 226, 0.25);
    border-radius: var(--radius-xl);
    background: #000000;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42), var(--shadow-glow);
}

.movie-video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.play-cover {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 0;
    color: #ffffff;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.2), rgba(0, 0, 0, 0.62));
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-icon {
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--stellar-glow);
    box-shadow: var(--shadow-glow);
    font-size: 36px;
}

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

.detail-side {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 18px;
    padding: 20px;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-xl);
    background: rgba(30, 40, 71, 0.72);
}

.detail-side img {
    border-radius: 18px;
    aspect-ratio: 2 / 3;
    object-fit: cover;
}

.detail-side h1 {
    margin: 0 0 12px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
}

.detail-side p {
    margin: 0 0 16px;
    color: var(--text-muted);
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.detail-meta span,
.detail-meta a {
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(74, 144, 226, 0.16);
    color: var(--text-soft);
    font-size: 13px;
}

.detail-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    background: var(--stellar-dark);
}

.story-card {
    padding: 28px;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-xl);
    background: rgba(30, 40, 71, 0.68);
}

.story-card h2 {
    margin: 0 0 16px;
    font-size: 28px;
}

.story-card p {
    margin: 0;
    color: var(--text-soft);
    white-space: pre-line;
}

.site-footer {
    border-top: 1px solid rgba(42, 56, 87, 0.75);
    background: var(--stellar-deep);
    padding: 48px 24px 22px;
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
}

.footer-grid p {
    max-width: 430px;
    color: var(--text-muted);
}

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

.footer-grid a:not(.site-logo) {
    display: block;
    margin: 8px 0;
    color: var(--text-muted);
}

.footer-grid a:hover {
    color: var(--stellar-glow);
}

.footer-bottom {
    max-width: 1280px;
    margin: 34px auto 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    font-size: 14px;
}

[hidden] {
    display: none !important;
}

@media (max-width: 1180px) {
    .movie-grid,
    .library-grid,
    .featured-grid,
    .related-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .desktop-nav {
        display: none;
    }

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

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

    .header-search {
        flex: 1;
        width: auto;
    }
}

@media (max-width: 860px) {
    .hero-section {
        min-height: 680px;
        height: auto;
    }

    .hero-title-block {
        top: 88px;
        right: 24px;
    }

    .hero-content {
        bottom: 80px;
        right: 24px;
    }

    .hero-arrow {
        display: none;
    }

    .movie-grid,
    .library-grid,
    .featured-grid,
    .latest-grid,
    .related-grid,
    .page-ranking,
    .index-ranking,
    .category-grid,
    .detail-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .category-card,
    .detail-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .detail-side {
        grid-template-columns: 130px 1fr;
    }
}

@media (max-width: 620px) {
    .header-inner {
        min-height: 66px;
        padding: 0 14px;
        gap: 12px;
    }

    .site-logo span:last-child {
        max-width: 112px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .header-search {
        display: none;
    }

    .hero-section {
        min-height: 660px;
    }

    .hero-title-block h1 {
        font-size: 30px;
    }

    .hero-search button {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-content h2 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .content-section {
        padding: 48px 14px;
    }

    .movie-grid,
    .library-grid,
    .featured-grid,
    .latest-grid,
    .related-grid,
    .page-ranking,
    .index-ranking,
    .category-grid,
    .detail-content {
        grid-template-columns: 1fr;
    }

    .horizontal-cards {
        grid-auto-columns: 76%;
    }

    .ranking-item a {
        grid-template-columns: 38px 58px 1fr;
    }

    .ranking-action {
        display: none;
    }

    .ranking-number {
        width: 34px;
        height: 34px;
    }

    .ranking-item img {
        width: 58px;
        height: 78px;
    }

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

    .detail-side img {
        max-width: 210px;
    }

    .play-icon {
        width: 72px;
        height: 72px;
    }
}
