* {
    box-sizing: border-box;
}

:root {
    --bg: #020617;
    --panel: rgba(15, 23, 42, 0.72);
    --panel-strong: rgba(15, 23, 42, 0.92);
    --border: rgba(51, 65, 85, 0.72);
    --muted: #94a3b8;
    --text: #e2e8f0;
    --white: #ffffff;
    --cyan: #22d3ee;
    --cyan-strong: #06b6d4;
    --blue: #2563eb;
    --shadow: 0 24px 70px rgba(8, 145, 178, 0.18);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #020617 0%, #0f172a 52%, #020617 100%);
    min-height: 100vh;
}

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

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(2, 6, 23, 0.82);
    border-bottom: 1px solid rgba(30, 41, 59, 0.88);
    backdrop-filter: blur(18px);
}

.site-nav {
    width: min(1180px, calc(100% - 32px));
    height: 64px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    position: relative;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.38);
}

.brand-mark::after {
    content: "";
    position: absolute;
    left: 13px;
    top: 9px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 11px solid white;
}

.brand-text {
    font-size: 20px;
    background: linear-gradient(90deg, var(--cyan), #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 15px;
    color: #cbd5e1;
}

.nav-link {
    transition: color 0.2s ease;
}

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

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.68);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: #cbd5e1;
    border-radius: 999px;
}

main {
    padding-top: 64px;
}

.hero {
    position: relative;
    height: 78vh;
    min-height: 560px;
    overflow: hidden;
    background: #020617;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 900ms ease;
    pointer-events: none;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 34%, rgba(34, 211, 238, 0.22), transparent 28%),
        linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.82) 35%, rgba(2, 6, 23, 0.30) 72%, rgba(2, 6, 23, 0.76) 100%);
}

.hero-content {
    position: absolute;
    left: max(32px, calc((100vw - 1180px) / 2));
    right: 32px;
    bottom: 11%;
    max-width: 760px;
}

.hero-eyebrow {
    margin: 0 0 10px;
    color: var(--cyan);
    font-weight: 700;
    letter-spacing: 0.06em;
}

.hero h1,
.hero h2 {
    margin: 0 0 18px;
    color: white;
    font-size: clamp(42px, 7vw, 78px);
    line-height: 1.04;
    text-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.hero-summary {
    max-width: 680px;
    margin: 0 0 22px;
    color: #cbd5e1;
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.7;
}

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

.hero-tags span,
.detail-tags span,
.card-tags span {
    border: 1px solid rgba(34, 211, 238, 0.45);
    background: rgba(34, 211, 238, 0.14);
    color: #67e8f9;
    border-radius: 10px;
    padding: 6px 10px;
    font-size: 13px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 12px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

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

.btn.primary {
    color: white;
    background: linear-gradient(90deg, var(--cyan-strong), var(--blue));
    box-shadow: 0 16px 38px rgba(8, 145, 178, 0.35);
}

.btn.ghost {
    border: 1px solid rgba(148, 163, 184, 0.4);
    background: rgba(15, 23, 42, 0.46);
    color: #e2e8f0;
    backdrop-filter: blur(12px);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: white;
    background: rgba(2, 6, 23, 0.56);
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(12px);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: #64748b;
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

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

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

.content-section.no-padding {
    padding: 0;
}

.band-section {
    background: rgba(15, 23, 42, 0.32);
    border-top: 1px solid rgba(30, 41, 59, 0.4);
    border-bottom: 1px solid rgba(30, 41, 59, 0.4);
    padding: 64px 0;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.section-title.with-link {
    justify-content: space-between;
}

.section-title.with-link > div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title h2 {
    margin: 0;
    color: white;
    font-size: clamp(26px, 4vw, 36px);
}

.section-title a {
    color: var(--cyan);
    font-weight: 700;
}

.title-mark {
    width: 7px;
    height: 28px;
    border-radius: 99px;
    background: linear-gradient(180deg, var(--cyan), var(--blue));
    box-shadow: 0 0 25px rgba(34, 211, 238, 0.45);
}

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

.movie-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(30, 41, 59, 0.9);
    border-radius: 18px;
    background: var(--panel);
    box-shadow: 0 12px 32px rgba(2, 6, 23, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-7px);
    border-color: rgba(34, 211, 238, 0.45);
    box-shadow: var(--shadow);
}

.card-cover {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #0f172a;
}

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

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

.card-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.18) 58%, transparent 100%);
}

.card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(6, 182, 212, 0.88);
    color: white;
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.card-caption {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 2;
}

.card-caption h3 {
    margin: 0 0 6px;
    color: white;
    font-size: 17px;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-caption p {
    margin: 0;
    color: #cbd5e1;
    font-size: 12px;
    line-height: 1.5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-body {
    padding: 14px;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 12px;
}

.card-tags span {
    padding: 4px 7px;
    border-radius: 7px;
    font-size: 12px;
}

.search-panel {
    position: relative;
}

.filter-bar {
    display: grid;
    grid-template-columns: minmax(240px, 1.8fr) repeat(3, minmax(120px, 0.8fr));
    gap: 14px;
    margin-bottom: 24px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(12px);
}

.filter-bar label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: 13px;
}

.filter-bar input,
.filter-bar select {
    width: 100%;
    min-height: 42px;
    border: 1px solid rgba(51, 65, 85, 0.9);
    border-radius: 12px;
    padding: 0 12px;
    color: white;
    background: rgba(2, 6, 23, 0.62);
    outline: none;
}

.filter-bar input:focus,
.filter-bar select:focus {
    border-color: rgba(34, 211, 238, 0.65);
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.12);
}

.empty-state {
    margin: 24px 0;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 18px;
    color: var(--muted);
    text-align: center;
    background: rgba(15, 23, 42, 0.62);
}

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

.category-box,
.overview-card {
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 22px;
    background: rgba(15, 23, 42, 0.7);
    box-shadow: 0 16px 40px rgba(2, 6, 23, 0.18);
}

.category-head,
.overview-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}

.category-head h3,
.overview-card h2 {
    margin: 0;
    color: white;
    font-size: 22px;
}

.category-head span,
.overview-card-head a {
    color: var(--cyan);
    font-weight: 700;
}

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

.category-links,
.footer-links,
.hero-inline-links {
    display: grid;
    gap: 9px;
}

.category-links a,
.footer-links a,
.hero-inline-links a {
    color: #cbd5e1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
}

.category-links a:hover,
.footer-links a:hover,
.hero-inline-links a:hover {
    color: var(--cyan);
}

.ranking-list,
.ranking-cards {
    display: grid;
    gap: 14px;
}

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

.rank-row,
.rank-card {
    display: grid;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.7);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.rank-row {
    grid-template-columns: 44px 62px minmax(0, 1fr);
    padding: 10px;
}

.rank-row:hover,
.rank-card:hover {
    border-color: rgba(34, 211, 238, 0.55);
    transform: translateY(-2px);
}

.rank-num {
    color: var(--cyan);
    font-size: 20px;
    font-weight: 900;
    text-align: center;
}

.rank-row img {
    width: 62px;
    height: 82px;
    border-radius: 10px;
    object-fit: cover;
}

.rank-main {
    min-width: 0;
    display: grid;
    gap: 6px;
}

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

.rank-main em {
    color: var(--muted);
    font-style: normal;
    font-size: 13px;
}

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

.page-hero {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: clamp(34px, 7vw, 72px);
    background:
        radial-gradient(circle at 16% 18%, rgba(34, 211, 238, 0.2), transparent 28%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(2, 6, 23, 0.92));
    box-shadow: var(--shadow);
}

.page-hero h1 {
    margin: 0 0 16px;
    color: white;
    font-size: clamp(34px, 6vw, 58px);
}

.page-hero p {
    max-width: 820px;
    margin: 0;
    color: #cbd5e1;
    font-size: 18px;
    line-height: 1.8;
}

.category-hero .hero-inline-links {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 24px;
}

.overview-card {
    grid-column: span 2;
}

.compact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.compact-card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 3 / 4;
    background: #0f172a;
}

.compact-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.compact-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), transparent 66%);
}

.compact-card span {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 2;
    color: white;
    font-weight: 700;
    font-size: 13px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.rank-card {
    grid-template-columns: 112px minmax(0, 1fr);
    padding: 14px;
}

.rank-poster {
    position: relative;
}

.rank-poster span {
    position: absolute;
    left: -8px;
    top: -8px;
    z-index: 2;
    min-width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: white;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    font-weight: 900;
}

.rank-poster img {
    width: 100px;
    height: 134px;
    object-fit: cover;
    border-radius: 14px;
}

.rank-info h2 {
    margin: 0 0 8px;
    color: white;
    font-size: 22px;
}

.rank-info p {
    margin: 0 0 10px;
    color: #cbd5e1;
    line-height: 1.7;
}

.rank-meta {
    color: var(--muted) !important;
    font-size: 14px;
}

.detail-main {
    padding-top: 64px;
}

.detail-hero {
    position: relative;
    min-height: 650px;
    overflow: hidden;
}

.detail-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px);
    transform: scale(1.05);
    opacity: 0.45;
}

.detail-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 26%, rgba(34, 211, 238, 0.18), transparent 30%),
        linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.82) 42%, rgba(2, 6, 23, 0.58) 100%);
}

.detail-inner {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 42px 0 64px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin: 20px 0 32px;
    color: #cbd5e1;
}

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

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

.detail-poster {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(34, 211, 238, 0.35);
    border-radius: 24px;
    background: #0f172a;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.detail-info h1 {
    margin: 0 0 18px;
    color: white;
    font-size: clamp(36px, 6vw, 68px);
    line-height: 1.08;
}

.detail-one-line {
    max-width: 760px;
    color: #cbd5e1;
    font-size: 20px;
    line-height: 1.8;
}

.player-section {
    padding-top: 34px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(34, 211, 238, 0.28);
    border-radius: 22px;
    background: black;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.movie-video {
    width: 100%;
    height: 100%;
    background: black;
    cursor: pointer;
}

.player-cover {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    border: 0;
    padding: 0;
    color: white;
    background: black;
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.58;
}

.player-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(34, 211, 238, 0.16), transparent 35%),
        linear-gradient(0deg, rgba(2, 6, 23, 0.75), rgba(2, 6, 23, 0.42));
}

.player-glow {
    position: absolute;
    width: 122px;
    height: 122px;
    border-radius: 999px;
    background: rgba(34, 211, 238, 0.2);
    filter: blur(22px);
}

.play-circle {
    position: relative;
    z-index: 4;
    width: 88px;
    height: 88px;
    display: grid;
    place-items: center;
    padding-left: 6px;
    border-radius: 999px;
    color: white;
    font-size: 42px;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 18px 45px rgba(8, 145, 178, 0.45);
}

.player-cover strong {
    position: relative;
    z-index: 4;
    margin-top: 120px;
    color: white;
    font-size: clamp(20px, 3vw, 34px);
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
}

.player-message {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 5;
    transform: translate(-50%, -50%);
    padding: 14px 18px;
    border: 1px solid rgba(34, 211, 238, 0.35);
    border-radius: 14px;
    color: #e2e8f0;
    background: rgba(2, 6, 23, 0.88);
}

.detail-text {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 20px;
}

.detail-text article {
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    background: rgba(15, 23, 42, 0.68);
}

.detail-text h2 {
    margin: 0 0 14px;
    color: white;
}

.detail-text p {
    margin: 0;
    color: #cbd5e1;
    line-height: 1.9;
}

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

.site-footer {
    margin-top: 40px;
    border-top: 1px solid rgba(30, 41, 59, 0.7);
    background: rgba(2, 6, 23, 0.76);
}

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

.footer-inner h2 {
    margin: 0 0 14px;
    color: var(--cyan);
    font-size: 18px;
}

.footer-inner p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 20px 0 28px;
    border-top: 1px solid rgba(30, 41, 59, 0.7);
    color: #64748b;
    font-size: 14px;
}

[hidden] {
    display: none !important;
}

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

@media (max-width: 900px) {
    .nav-toggle {
        display: inline-block;
    }

    .nav-links {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        display: none;
        padding: 18px 24px 24px;
        background: rgba(2, 6, 23, 0.96);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

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

    .hero {
        height: 72vh;
        min-height: 520px;
    }

    .hero-content {
        left: 24px;
        right: 24px;
        bottom: 13%;
    }

    .hero-arrow {
        display: none;
    }

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

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

    .category-grid,
    .overview-grid,
    .home-ranking,
    .detail-text {
        grid-template-columns: 1fr;
    }

    .overview-card {
        grid-column: auto;
    }

    .detail-grid {
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 28px;
    }

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

@media (max-width: 640px) {
    .site-nav,
    .content-section,
    .page-hero,
    .detail-inner,
    .footer-inner,
    .footer-bottom {
        width: min(100% - 24px, 1180px);
    }

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

    .hero {
        min-height: 560px;
    }

    .hero h1,
    .hero h2 {
        font-size: 40px;
    }

    .hero-summary {
        font-size: 16px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

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

    .content-section,
    .band-section {
        padding-top: 42px;
        padding-bottom: 42px;
    }

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

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

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

    .rank-poster img {
        width: 78px;
        height: 104px;
    }

    .rank-info h2 {
        font-size: 18px;
    }

    .rank-info p {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

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

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

    .detail-hero {
        min-height: auto;
    }

    .detail-info h1 {
        font-size: 36px;
    }

    .detail-one-line {
        font-size: 17px;
    }

    .play-circle {
        width: 68px;
        height: 68px;
        font-size: 32px;
    }
}
