:root {
    --cyan-700: #0e7490;
    --cyan-600: #0891b2;
    --cyan-500: #06b6d4;
    --blue-700: #1d4ed8;
    --slate-950: #020617;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;
    --white: #ffffff;
    --shadow-card: 0 18px 45px rgba(15, 23, 42, 0.10);
    --shadow-hover: 0 24px 60px rgba(8, 145, 178, 0.18);
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 14px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    color: var(--slate-800);
    background: linear-gradient(180deg, var(--slate-50), var(--slate-100));
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

main {
    min-height: 70vh;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    color: var(--white);
    background: linear-gradient(90deg, var(--cyan-600), var(--blue-700));
    box-shadow: 0 12px 35px rgba(14, 116, 144, 0.24);
}

.header-inner {
    width: min(100% - 32px, var(--container));
    min-height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 26px;
}

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

.brand-mark {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
    transition: transform 0.25s ease, background 0.25s ease;
}

.brand:hover .brand-mark {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.26);
}

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

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

.brand-text small {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
}

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

.nav-link {
    position: relative;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.25s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -9px;
    height: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    opacity: 0;
    transform: scaleX(0.4);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    opacity: 1;
    transform: scaleX(1);
}

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

.header-search input,
.mobile-search input,
.search-panel input,
.search-panel select,
.category-filter input {
    min-height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    padding: 0 16px;
    color: var(--slate-800);
    background: rgba(255, 255, 255, 0.96);
    outline: none;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.header-search input {
    width: 210px;
}

.header-search input:focus,
.mobile-search input:focus,
.search-panel input:focus,
.search-panel select:focus,
.category-filter input:focus {
    border-color: var(--cyan-500);
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.16);
}

.header-search button,
.mobile-search button,
.btn-primary,
.btn-secondary,
.search-panel button,
.player-action {
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.header-search button,
.mobile-search button {
    min-height: 42px;
    padding: 0 18px;
    color: var(--cyan-700);
    background: var(--white);
}

.header-search button:hover,
.mobile-search button:hover,
.btn-primary:hover,
.btn-secondary:hover,
.search-panel button:hover,
.player-action:hover {
    transform: translateY(-1px);
}

.mobile-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
}

.mobile-panel {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
    padding: 0 0 20px;
}

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

.mobile-search input {
    flex: 1;
}

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

.mobile-nav-link {
    border-radius: 14px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
    font-weight: 700;
}

.mobile-nav-link.active {
    background: rgba(255, 255, 255, 0.28);
}

.hero {
    position: relative;
    min-height: 68vh;
    overflow: hidden;
    color: var(--white);
    background: var(--slate-950);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

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

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.95) 0%, rgba(2, 6, 23, 0.55) 48%, rgba(2, 6, 23, 0.18) 100%),
        radial-gradient(circle at 20% 70%, rgba(6, 182, 212, 0.32), transparent 36%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(100% - 32px, var(--container));
    min-height: 68vh;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: end;
    gap: 42px;
    padding: 110px 0 72px;
}

.hero-copy {
    max-width: 760px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(8, 145, 178, 0.92);
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(8, 145, 178, 0.25);
}

.hero h1,
.page-hero h1,
.detail-title {
    margin: 0;
    font-size: clamp(34px, 5vw, 68px);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.hero p {
    max-width: 720px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(16px, 2vw, 22px);
    line-height: 1.65;
}

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

.btn-primary,
.btn-secondary,
.player-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
}

.btn-primary {
    color: var(--white);
    background: linear-gradient(90deg, var(--cyan-600), var(--blue-700));
    box-shadow: 0 14px 32px rgba(8, 145, 178, 0.30);
}

.btn-secondary {
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(14px);
}

.hero-panel {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-xl);
    padding: 20px;
    background: rgba(15, 23, 42, 0.46);
    box-shadow: 0 24px 60px rgba(2, 6, 23, 0.34);
    backdrop-filter: blur(16px);
}

.hero-panel h2 {
    margin: 0 0 14px;
    font-size: 18px;
}

.hero-thumbs {
    display: grid;
    gap: 12px;
}

.hero-thumb {
    display: grid;
    grid-template-columns: 74px 1fr;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    padding: 9px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.86);
    transition: transform 0.25s ease, background 0.25s ease;
}

.hero-thumb:hover,
.hero-thumb.active {
    transform: translateY(-1px);
    background: rgba(8, 145, 178, 0.45);
}

.hero-thumb img {
    width: 74px;
    height: 52px;
    border-radius: 12px;
    object-fit: cover;
}

.hero-thumb strong {
    display: block;
    margin-bottom: 4px;
    color: var(--white);
    font-size: 14px;
}

.hero-thumb span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
}

.section {
    padding: 56px 0;
}

.section.white {
    background: var(--white);
}

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

.section-title {
    margin: 0;
    color: var(--slate-800);
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.section-kicker {
    margin: 0 0 8px;
    color: var(--cyan-700);
    font-weight: 900;
}

.section-desc {
    max-width: 740px;
    margin: 10px 0 0;
    color: var(--slate-600);
    line-height: 1.7;
}

.link-more {
    color: var(--cyan-700);
    font-weight: 900;
}

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

.movie-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 1fr);
    gap: 18px;
    overflow-x: auto;
    padding: 4px 0 18px;
    scroll-snap-type: x mandatory;
}

.movie-row .movie-card {
    scroll-snap-align: start;
}

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

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

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--slate-200);
}

.movie-card.compact .poster-link {
    aspect-ratio: 16 / 9;
}

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

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

.poster-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(2, 6, 23, 0.72));
}

.play-chip,
.score-badge {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    color: var(--white);
    font-weight: 900;
}

.play-chip {
    right: 12px;
    bottom: 12px;
    padding: 8px 12px;
    background: rgba(8, 145, 178, 0.92);
}

.score-badge {
    left: 12px;
    top: 12px;
    padding: 6px 10px;
    background: rgba(2, 6, 23, 0.74);
    backdrop-filter: blur(8px);
}

.card-body {
    padding: 18px;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--slate-500);
    font-size: 13px;
    font-weight: 700;
}

.card-meta span:not(:last-child)::after {
    content: "·";
    margin-left: 8px;
    color: var(--slate-300);
}

.movie-card h3 {
    margin: 0;
    color: var(--slate-900);
    font-size: 20px;
    line-height: 1.25;
}

.movie-card h3 a:hover {
    color: var(--cyan-700);
}

.movie-card p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 44px;
    margin: 10px 0 0;
    color: var(--slate-600);
    line-height: 1.55;
}

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

.tag-row span,
.meta-pill,
.info-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 10px;
    color: var(--cyan-700);
    background: rgba(6, 182, 212, 0.10);
    font-size: 12px;
    font-weight: 800;
}

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

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 210px;
    border-radius: var(--radius-xl);
    padding: 24px;
    color: var(--white);
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.95), rgba(29, 78, 216, 0.88));
    box-shadow: var(--shadow-card);
}

.category-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -46px;
    bottom: -54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
}

.category-card h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 26px;
}

.category-card p,
.category-card span {
    position: relative;
    z-index: 1;
}

.category-card p {
    margin: 12px 0 26px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.65;
}

.category-card span {
    display: inline-flex;
    border-radius: 999px;
    padding: 8px 13px;
    background: rgba(255, 255, 255, 0.18);
    font-weight: 900;
}

.rank-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 28px;
}

.rank-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rank-item a {
    display: grid;
    grid-template-columns: 52px 78px 1fr auto;
    align-items: center;
    gap: 14px;
    border-radius: var(--radius-md);
    padding: 12px;
    background: var(--white);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.rank-number {
    color: var(--cyan-700);
    font-size: 22px;
    font-weight: 1000;
}

.rank-item img {
    width: 78px;
    height: 54px;
    border-radius: 12px;
    object-fit: cover;
}

.rank-content strong,
.rank-content em {
    display: block;
}

.rank-content strong {
    color: var(--slate-900);
}

.rank-content em {
    margin-top: 5px;
    color: var(--slate-500);
    font-size: 13px;
    font-style: normal;
}

.rank-score {
    border-radius: 999px;
    padding: 7px 10px;
    color: var(--white);
    background: var(--cyan-600);
    font-weight: 900;
}

.page-hero {
    color: var(--white);
    background: radial-gradient(circle at 18% 20%, rgba(6, 182, 212, 0.35), transparent 30%),
        linear-gradient(135deg, var(--slate-950), var(--slate-800));
}

.page-hero .container {
    padding: 76px 0;
}

.page-hero p {
    max-width: 760px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    line-height: 1.75;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    color: var(--slate-500);
    font-size: 14px;
}

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

.category-filter,
.search-panel {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 24px;
    border-radius: var(--radius-lg);
    padding: 18px;
    background: var(--white);
    box-shadow: var(--shadow-card);
}

.category-filter input {
    flex: 1;
    min-width: 240px;
    border-color: var(--slate-200);
}

.search-panel input,
.search-panel select {
    flex: 1;
    min-width: 180px;
    border-color: var(--slate-200);
}

.search-panel button {
    min-height: 42px;
    padding: 0 22px;
    color: var(--white);
    background: var(--cyan-600);
}

.result-count {
    margin-left: auto;
    color: var(--slate-500);
    font-weight: 800;
}

.detail-hero {
    color: var(--white);
    background: var(--slate-950);
}

.detail-hero-bg {
    position: relative;
    overflow: hidden;
}

.detail-hero-bg > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.32;
    filter: blur(2px) saturate(1.08);
}

.detail-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 1), rgba(2, 6, 23, 0.38));
}

.detail-hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 34px;
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
    padding: 58px 0;
}

.detail-cover {
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

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

.detail-info {
    align-self: end;
}

.detail-title {
    color: var(--white);
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0;
}

.detail-info .tag-row span,
.detail-info .meta-pill {
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
}

.detail-info p {
    max-width: 820px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    line-height: 1.75;
}

.detail-main {
    padding: 44px 0 60px;
}

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

.content-card,
.side-card,
.player-card {
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-card);
}

.player-card {
    overflow: hidden;
    margin-bottom: 24px;
}

.player-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #000;
}

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

.play-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    color: var(--white);
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.72));
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-overlay span {
    display: inline-grid;
    place-items: center;
    width: 88px;
    height: 88px;
    border-radius: 999px;
    background: rgba(8, 145, 178, 0.92);
    box-shadow: 0 18px 45px rgba(8, 145, 178, 0.36);
    font-size: 34px;
}

.player-caption {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 22px;
}

.player-caption h2 {
    margin: 0;
    color: var(--slate-900);
    font-size: 24px;
}

.player-action {
    color: var(--white);
    background: var(--cyan-600);
}

.content-card {
    padding: 28px;
}

.content-card h2,
.side-card h2 {
    margin: 0 0 16px;
    color: var(--slate-900);
    font-size: 24px;
}

.content-card p {
    margin: 0 0 18px;
    color: var(--slate-700);
    line-height: 1.85;
    font-size: 16px;
}

.side-card {
    padding: 20px;
    margin-bottom: 22px;
}

.info-list {
    display: grid;
    gap: 12px;
    margin: 0;
}

.info-line {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    border-bottom: 1px solid var(--slate-100);
    padding-bottom: 10px;
    color: var(--slate-600);
}

.info-line strong {
    color: var(--slate-800);
}

.related-list {
    display: grid;
    gap: 12px;
}

.related-item {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 12px;
    align-items: center;
}

.related-item img {
    width: 82px;
    height: 58px;
    border-radius: 12px;
    object-fit: cover;
}

.related-item strong,
.related-item span {
    display: block;
}

.related-item strong {
    color: var(--slate-900);
    line-height: 1.3;
}

.related-item span {
    margin-top: 5px;
    color: var(--slate-500);
    font-size: 13px;
}

.search-empty {
    border-radius: var(--radius-lg);
    padding: 34px;
    text-align: center;
    color: var(--slate-600);
    background: var(--white);
    box-shadow: var(--shadow-card);
}

.site-footer {
    color: rgba(255, 255, 255, 0.78);
    background: var(--slate-950);
}

.footer-inner {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1.2fr;
    gap: 34px;
    padding: 42px 0;
}

.footer-brand {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--white);
    font-size: 22px;
    font-weight: 1000;
}

.footer-inner p {
    max-width: 520px;
    margin: 0;
    line-height: 1.8;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-content: start;
}

.footer-links a {
    border-radius: 999px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.08);
}

.footer-links a:hover {
    background: rgba(6, 182, 212, 0.24);
    color: var(--white);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
    text-align: center;
}

@media (max-width: 1080px) {
    .desktop-nav,
    .header-search {
        display: none;
    }

    .mobile-menu-button {
        display: inline-grid;
        place-items: center;
    }

    .hero-content,
    .rank-layout,
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        display: none;
    }

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

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

@media (max-width: 760px) {
    .header-inner {
        min-height: 64px;
    }

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

    .brand-text small {
        display: none;
    }

    .hero,
    .hero-content {
        min-height: 72vh;
    }

    .hero-content {
        padding: 76px 0 48px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .section {
        padding: 38px 0;
    }

    .section-header {
        display: block;
    }

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

    .rank-item a {
        grid-template-columns: 38px 68px 1fr;
    }

    .rank-score {
        display: none;
    }

    .detail-hero-content {
        grid-template-columns: 1fr;
        padding: 36px 0;
    }

    .detail-cover {
        max-width: 220px;
    }

    .detail-info p {
        font-size: 16px;
    }

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