:root {
    --slate-950: #020617;
    --slate-900: #0f172a;
    --slate-850: #172033;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;
    --amber-600: #d97706;
    --amber-500: #f59e0b;
    --amber-400: #fbbf24;
    --white: #ffffff;
    --radius-lg: 24px;
    --radius-md: 18px;
    --shadow-soft: 0 14px 35px rgba(15, 23, 42, 0.13);
    --shadow-strong: 0 25px 60px rgba(15, 23, 42, 0.28);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--slate-50);
    color: var(--slate-800);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", sans-serif;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(90deg, var(--slate-900), var(--slate-800), var(--slate-900));
    color: var(--white);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.25);
}

.header-inner,
.desktop-nav,
.mobile-nav,
.section-wrap,
.hero-content,
.footer-inner,
.breadcrumb {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.header-inner {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand,
.footer-brand strong {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.brand-mark {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--amber-500);
    color: var(--white);
    font-size: 0.9rem;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.35);
}

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

.header-search input,
.mobile-search input,
.wide-search input,
.filter-panel input,
.filter-panel select {
    border: 1px solid rgba(148, 163, 184, 0.28);
    outline: none;
    border-radius: 999px;
    background: rgba(30, 41, 59, 0.9);
    color: var(--white);
    padding: 11px 16px;
    min-width: 260px;
    transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}

.header-search input:focus,
.mobile-search input:focus,
.wide-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
    border-color: var(--amber-500);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.18);
}

.header-search button,
.mobile-search button,
.wide-search button {
    border: 0;
    border-radius: 999px;
    background: var(--amber-500);
    color: var(--white);
    padding: 11px 18px;
    cursor: pointer;
    font-weight: 700;
}

.menu-toggle {
    display: none;
    border: 0;
    color: var(--white);
    background: transparent;
    font-size: 1.7rem;
    cursor: pointer;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 0 12px;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.nav-link,
.mobile-link {
    display: inline-flex;
    align-items: center;
    border-radius: 12px;
    color: var(--slate-300);
    padding: 9px 14px;
    font-size: 0.94rem;
    transition: background 0.25s, color 0.25s;
}

.nav-link:hover,
.mobile-link:hover,
.nav-link-active {
    color: var(--amber-400);
    background: rgba(51, 65, 85, 0.85);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 12px 0 18px;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.mobile-nav[hidden] {
    display: none;
}

.hero-carousel {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    background: var(--slate-900);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.8s ease, transform 0.8s ease;
    pointer-events: none;
}

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

.hero-backdrop {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.9), rgba(15, 23, 42, 0.66), rgba(15, 23, 42, 0.1)), linear-gradient(0deg, rgba(2, 6, 23, 0.6), rgba(2, 6, 23, 0.02));
}

.hero-content {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: center;
    gap: 48px;
    min-height: 560px;
}

.hero-copy {
    color: var(--white);
    max-width: 680px;
    animation: fadeIn 0.75s ease both;
}

.hero-badge,
.section-kicker {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    background: var(--amber-500);
    color: var(--white);
    padding: 6px 12px;
    font-size: 0.88rem;
    font-weight: 800;
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
    margin: 18px 0 14px;
    font-size: clamp(2.4rem, 6vw, 5rem);
    line-height: 1.04;
    letter-spacing: -0.055em;
}

.hero-copy p,
.page-hero p,
.detail-copy p {
    color: var(--slate-200);
    font-size: 1.08rem;
    line-height: 1.85;
    margin: 0;
}

.hero-tags,
.detail-meta,
.tag-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
}

.hero-tags span,
.hero-tags a,
.detail-meta span,
.detail-meta a,
.tag-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.13);
    color: var(--slate-100);
    padding: 7px 12px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

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

.primary-btn,
.ghost-btn,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.25s, box-shadow 0.25s, background 0.25s, color 0.25s;
}

.primary-btn {
    background: var(--amber-500);
    color: var(--white);
    padding: 13px 26px;
    box-shadow: 0 14px 28px rgba(245, 158, 11, 0.28);
}

.ghost-btn {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.32);
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.08);
}

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

.hero-poster {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    border-radius: 28px;
    box-shadow: var(--shadow-strong);
    isolation: isolate;
}

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

.hero-poster:hover img {
    transform: scale(1.08);
}

.hero-poster span {
    position: absolute;
    left: 22px;
    bottom: 22px;
    border-radius: 999px;
    background: var(--amber-500);
    color: var(--white);
    padding: 9px 16px;
    font-weight: 800;
}

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

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

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

.section-wrap {
    padding: 64px 0 0;
}

.site-intro {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
    gap: 32px;
}

.section-heading h2,
.section-title-row h2 {
    margin: 10px 0 0;
    color: var(--slate-800);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.15;
    letter-spacing: -0.045em;
}

.section-heading p {
    color: var(--slate-600);
    line-height: 1.8;
    margin: 14px 0 0;
}

.wide-search {
    justify-content: flex-end;
}

.wide-search input {
    flex: 1;
    min-width: 0;
    background: var(--white);
    color: var(--slate-800);
    box-shadow: var(--shadow-soft);
}

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

.section-kicker {
    background: rgba(245, 158, 11, 0.12);
    color: var(--amber-600);
    padding: 5px 10px;
}

.text-link {
    color: var(--amber-600);
    padding: 10px 0;
}

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

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

.category-tile {
    position: relative;
    overflow: hidden;
    min-height: 240px;
    border-radius: 24px;
    padding: 22px;
    color: var(--white);
    background: linear-gradient(135deg, var(--slate-800), var(--slate-900));
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s, box-shadow 0.3s;
}

.category-tile:hover {
    transform: translateY(-7px) scale(1.01);
    box-shadow: var(--shadow-strong);
}

.category-red { background: linear-gradient(135deg, #ef4444, #f97316); }
.category-orange { background: linear-gradient(135deg, #f97316, #f59e0b); }
.category-blue { background: linear-gradient(135deg, #2563eb, #06b6d4); }
.category-purple { background: linear-gradient(135deg, #7c3aed, #c026d3); }
.category-slate { background: linear-gradient(135deg, #0f172a, #334155); }
.category-pink { background: linear-gradient(135deg, #ec4899, #f43f5e); }
.category-amber { background: linear-gradient(135deg, #d97706, #eab308); }
.category-rose { background: linear-gradient(135deg, #f43f5e, #fb7185); }

.category-images {
    position: absolute;
    inset: 0;
    opacity: 0.22;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

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

.category-title,
.category-intro {
    position: relative;
    z-index: 1;
    display: block;
}

.category-title {
    margin-top: 92px;
    font-size: 1.55rem;
    font-weight: 900;
}

.category-intro {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.7;
}

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

.featured-main {
    position: relative;
    display: block;
    min-height: 430px;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--shadow-strong);
}

.featured-main img,
.featured-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.featured-main img {
    object-fit: cover;
    transition: transform 0.5s;
}

.featured-main:hover img {
    transform: scale(1.06);
}

.featured-shade {
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.05));
}

.featured-info {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    color: var(--white);
}

.featured-info em,
.featured-info small {
    display: block;
    color: var(--slate-200);
    font-style: normal;
}

.featured-info strong {
    display: block;
    margin: 8px 0;
    font-size: 2rem;
    line-height: 1.15;
}

.featured-info small {
    line-height: 1.7;
}

.featured-list {
    display: grid;
    gap: 16px;
}

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

.movie-card {
    min-width: 0;
}

.movie-card-link {
    display: block;
    overflow: hidden;
    height: 100%;
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: transform 0.28s, box-shadow 0.28s;
}

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

.movie-cover-frame {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--slate-800);
}

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

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

.movie-cover-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.78), transparent 62%);
    opacity: 0;
    transition: opacity 0.3s;
}

.movie-card-link:hover .movie-cover-shade {
    opacity: 1;
}

.movie-year,
.movie-region {
    position: absolute;
    border-radius: 999px;
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 800;
    padding: 5px 9px;
}

.movie-year {
    top: 12px;
    right: 12px;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(10px);
}

.movie-region {
    left: 12px;
    bottom: 12px;
    background: var(--amber-500);
}

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

.movie-title {
    display: -webkit-box;
    min-height: 2.9em;
    overflow: hidden;
    color: var(--slate-800);
    font-size: 1.05rem;
    line-height: 1.45;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.25s;
}

.movie-card-link:hover .movie-title {
    color: var(--amber-600);
}

.movie-meta,
.movie-desc {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

.movie-meta {
    margin-top: 8px;
    color: var(--slate-500);
    font-size: 0.88rem;
    -webkit-line-clamp: 1;
}

.movie-desc {
    margin-top: 10px;
    color: var(--slate-600);
    font-size: 0.92rem;
    line-height: 1.7;
    -webkit-line-clamp: 2;
}

.movie-card-compact .movie-card-link {
    display: grid;
    grid-template-columns: 120px 1fr;
    border-radius: 16px;
}

.movie-card-compact .movie-cover-frame {
    aspect-ratio: 1 / 1;
}

.movie-card-compact .movie-desc {
    display: none;
}

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

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

.ranking-link {
    display: grid;
    grid-template-columns: 58px 92px 1fr;
    align-items: center;
    gap: 14px;
    min-height: 116px;
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    padding: 12px;
    transition: transform 0.28s, box-shadow 0.28s;
}

.ranking-link:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.ranking-no {
    color: var(--amber-500);
    font-size: 1.7rem;
    font-weight: 900;
    text-align: center;
}

.ranking-link img {
    width: 92px;
    height: 92px;
    object-fit: cover;
    border-radius: 14px;
}

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

.ranking-text strong {
    color: var(--slate-800);
    font-size: 1rem;
}

.ranking-text em {
    margin-top: 7px;
    color: var(--slate-500);
    font-size: 0.88rem;
    font-style: normal;
}

.page-hero {
    color: var(--white);
    background: radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.26), transparent 30%), linear-gradient(120deg, var(--slate-950), var(--slate-800));
}

.compact-hero {
    padding: 86px 0;
}

.compact-hero > div {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    max-width: 760px;
}

.compact-hero h1 {
    margin: 16px 0;
}

.category-page-hero .hero-actions {
    margin-top: 24px;
}

.filter-panel {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 16px;
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    padding: 18px;
    margin-bottom: 28px;
}

.filter-panel label {
    display: grid;
    gap: 8px;
    color: var(--slate-600);
    font-size: 0.88rem;
    font-weight: 700;
}

.filter-panel input,
.filter-panel select {
    width: 100%;
    min-width: 0;
    background: var(--slate-50);
    color: var(--slate-800);
    border-color: var(--slate-200);
}

.empty-state {
    border-radius: 18px;
    background: var(--white);
    color: var(--slate-500);
    box-shadow: var(--shadow-soft);
    padding: 32px;
    text-align: center;
}

.movie-card.is-hidden,
.ranking-item.is-hidden {
    display: none;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--slate-500);
    padding: 28px 0 0;
    font-size: 0.92rem;
}

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

.detail-hero {
    width: min(1180px, calc(100% - 32px));
    margin: 24px auto 0;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.85fr);
    gap: 28px;
    align-items: stretch;
}

.player-panel,
.detail-info,
.text-card {
    border-radius: 26px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    background: var(--white);
}

.video-shell {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--slate-950);
}

.movie-player {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: var(--slate-950);
    z-index: 1;
}

.player-poster {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: var(--slate-950);
    cursor: pointer;
    padding: 0;
    overflow: hidden;
}

.player-poster img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.82;
    transition: transform 0.4s, opacity 0.4s;
}

.player-poster:hover img {
    transform: scale(1.05);
    opacity: 0.7;
}

.player-poster.is-hidden {
    display: none;
}

.play-ring {
    position: relative;
    z-index: 1;
    width: 82px;
    height: 82px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--amber-500);
    color: var(--white);
    box-shadow: 0 18px 40px rgba(245, 158, 11, 0.38);
}

.play-ring span {
    transform: translateX(3px);
    font-size: 2rem;
}

.detail-info {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, var(--slate-900), var(--slate-800));
    color: var(--white);
}

.detail-cover {
    width: 160px;
    height: 240px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: var(--shadow-strong);
}

.detail-copy h1 {
    font-size: clamp(1.8rem, 3.5vw, 3.5rem);
}

.detail-meta span,
.detail-meta a,
.tag-pill {
    background: rgba(255, 255, 255, 0.12);
}

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

.text-card {
    padding: 28px;
}

.text-card h2 {
    color: var(--slate-800);
    font-size: 1.6rem;
    margin: 0 0 14px;
}

.text-card p {
    color: var(--slate-600);
    line-height: 1.95;
    margin: 0;
}

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

.site-footer {
    margin-top: 76px;
    background: linear-gradient(90deg, var(--slate-900), var(--slate-800), var(--slate-900));
    color: var(--slate-300);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    padding: 48px 0;
}

.footer-brand p {
    max-width: 560px;
    margin: 16px 0 0;
    color: var(--slate-400);
    line-height: 1.8;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.footer-links a {
    color: var(--slate-300);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    padding: 9px 14px;
}

.footer-links a:hover {
    color: var(--amber-400);
}

.copyright {
    grid-column: 1 / -1;
    margin: 6px 0 0;
    color: var(--slate-500);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    .ranking-grid,
    .ranking-page-list,
    .detail-text {
        grid-template-columns: 1fr;
    }

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

    .hero-poster {
        display: none;
    }

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

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

    .menu-toggle {
        display: inline-flex;
    }

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

    .mobile-search input {
        min-width: 0;
        flex: 1;
    }

    .hero-carousel,
    .hero-content {
        min-height: 620px;
    }

    .hero-content {
        display: flex;
        align-items: center;
    }

    .site-intro,
    .filter-panel,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .wide-search {
        justify-content: stretch;
        flex-direction: column;
        align-items: stretch;
    }

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

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

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

    .ranking-link {
        grid-template-columns: 48px 78px 1fr;
    }

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

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 560px) {
    .header-inner,
    .desktop-nav,
    .mobile-nav,
    .section-wrap,
    .hero-content,
    .footer-inner,
    .breadcrumb,
    .detail-hero,
    .compact-hero > div {
        width: min(100% - 24px, 1180px);
    }

    .brand-name {
        font-size: 1.15rem;
    }

    .hero-copy h1,
    .page-hero h1,
    .detail-copy h1 {
        font-size: 2.15rem;
    }

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

    .movie-card-compact .movie-card-link,
    .detail-info {
        grid-template-columns: 1fr;
    }

    .detail-cover {
        width: 100%;
        height: auto;
        aspect-ratio: 2 / 3;
    }

    .featured-main {
        min-height: 340px;
    }

    .ranking-link {
        grid-template-columns: 42px 70px 1fr;
        gap: 10px;
    }

    .ranking-no {
        font-size: 1.25rem;
    }
}
