:root {
    --primary-50: #f0f9ff;
    --primary-100: #e0f2fe;
    --primary-400: #38bdf8;
    --primary-500: #0ea5e9;
    --primary-600: #0284c7;
    --primary-700: #0369a1;
    --accent-50: #ecfdf5;
    --accent-600: #059669;
    --secondary-800: #1e293b;
    --secondary-900: #0f172a;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 10px 24px rgba(15, 23, 42, 0.10);
    --shadow-lg: 0 20px 44px rgba(15, 23, 42, 0.16);
    --radius-lg: 14px;
    --radius-xl: 20px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--gray-50);
    color: var(--gray-900);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    backdrop-filter: blur(16px);
}

.header-inner {
    max-width: var(--container);
    height: 72px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 22px;
}

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

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: 20px;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-400));
    box-shadow: 0 12px 28px rgba(14, 165, 233, 0.28);
}

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

.brand-text strong {
    font-size: 20px;
    color: var(--gray-900);
}

.brand-text small {
    margin-top: 4px;
    color: var(--gray-500);
    font-size: 12px;
}

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

.nav-link,
.menu-trigger {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--gray-700);
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.menu-trigger:hover,
.nav-link.active {
    color: var(--primary-700);
    background: var(--primary-50);
}

.nav-menu {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    left: 0;
    top: calc(100% + 10px);
    width: 190px;
    padding: 10px;
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
}

.nav-menu:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown a {
    display: block;
    padding: 9px 12px;
    border-radius: 10px;
    color: var(--gray-700);
    font-size: 14px;
}

.nav-dropdown a:hover {
    color: var(--primary-700);
    background: var(--primary-50);
}

.header-search {
    display: flex;
    align-items: center;
    width: 280px;
    border: 1px solid var(--gray-300);
    border-radius: 12px;
    background: var(--white);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search:focus-within {
    border-color: var(--primary-400);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.14);
}

.header-search input {
    width: 100%;
    border: 0;
    outline: 0;
    padding: 10px 12px;
    background: transparent;
}

.header-search button {
    border: 0;
    padding: 10px 14px;
    color: var(--white);
    background: var(--primary-600);
    cursor: pointer;
}

.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 8px;
    border: 0;
    border-radius: 10px;
    background: var(--gray-100);
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--gray-800);
    border-radius: 999px;
}

.mobile-panel {
    display: none;
    padding: 12px 20px 20px;
    border-top: 1px solid var(--gray-200);
    background: var(--white);
}

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

.mobile-panel form {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.mobile-panel input {
    width: 100%;
    border: 1px solid var(--gray-300);
    border-radius: 10px;
    padding: 10px;
}

.mobile-panel button {
    border: 0;
    border-radius: 10px;
    padding: 0 14px;
    color: var(--white);
    background: var(--primary-600);
}

.mobile-panel a {
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--gray-700);
}

.mobile-panel a:hover {
    background: var(--primary-50);
    color: var(--primary-700);
}

main {
    min-height: 70vh;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.hero {
    position: relative;
    height: 60vh;
    min-height: 520px;
    overflow: hidden;
    background: var(--secondary-900);
}

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

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

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

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.58), rgba(15, 23, 42, 0.05));
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-copy {
    max-width: 660px;
    color: var(--white);
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 7px 14px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(2, 132, 199, 0.9);
    font-size: 14px;
    font-weight: 700;
}

.hero-copy h1 {
    margin: 0 0 18px;
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.08;
    font-weight: 850;
    letter-spacing: -0.04em;
}

.hero-copy p {
    margin: 0 0 24px;
    color: #e5e7eb;
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.7;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.hero-meta span,
.hero-meta a {
    display: inline-flex;
    padding: 8px 13px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
    backdrop-filter: blur(10px);
    font-size: 14px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 20px;
    border: 0;
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
    color: var(--white);
    background: var(--primary-600);
    box-shadow: 0 14px 30px rgba(2, 132, 199, 0.28);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--primary-700);
}

.btn-soft {
    color: var(--white);
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
}

.btn-soft:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.26);
}

.hero-control {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    color: var(--white);
    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transform: translateY(-50%);
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-control:hover {
    background: rgba(255, 255, 255, 0.30);
    transform: translateY(-50%) scale(1.05);
}

.hero-prev {
    left: 22px;
}

.hero-next {
    right: 22px;
}

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

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

.hero-dot.active {
    width: 28px;
    background: var(--white);
}

.section {
    padding: 58px 0;
}

.section.compact {
    padding: 34px 0;
}

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

.section-title h2,
.section-title h1 {
    margin: 0 0 8px;
    color: var(--gray-900);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.18;
    font-weight: 850;
    letter-spacing: -0.03em;
}

.section-title p {
    margin: 0;
    color: var(--gray-600);
}

.section-link {
    color: var(--primary-700);
    font-weight: 800;
}

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

.movie-card {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(226, 232, 240, 0.94);
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-5px);
    border-color: rgba(14, 165, 233, 0.28);
    box-shadow: var(--shadow-md);
}

.movie-thumb {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, var(--secondary-900), var(--secondary-800));
}

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

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

.movie-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(0deg, rgba(15, 23, 42, 0.76), rgba(15, 23, 42, 0.05));
    transition: opacity 0.24s ease;
}

.movie-card:hover .movie-thumb::after {
    opacity: 1;
}

.movie-year,
.rank-badge,
.movie-play {
    position: absolute;
    z-index: 2;
}

.movie-year {
    right: 12px;
    bottom: 12px;
    padding: 4px 9px;
    border-radius: 8px;
    color: var(--white);
    background: rgba(0, 0, 0, 0.72);
    font-size: 12px;
    font-weight: 800;
}

.rank-badge {
    left: 12px;
    top: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: linear-gradient(135deg, #f97316, #facc15);
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(249, 115, 22, 0.28);
}

.movie-play {
    left: 50%;
    top: 50%;
    padding: 10px 16px;
    border-radius: 999px;
    color: var(--primary-700);
    background: rgba(255, 255, 255, 0.92);
    font-weight: 850;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.92);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

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

.movie-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
    min-height: 180px;
}

.movie-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--gray-900);
    font-size: 18px;
    line-height: 1.35;
    font-weight: 850;
    transition: color 0.2s ease;
}

.movie-card:hover .movie-title {
    color: var(--primary-700);
}

.movie-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
    color: var(--gray-600);
    font-size: 14px;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    color: var(--gray-500);
    font-size: 12px;
}

.movie-meta span,
.movie-meta a {
    padding: 4px 8px;
    border-radius: 999px;
    background: var(--gray-100);
}

.movie-meta a {
    color: var(--primary-700);
    background: var(--primary-50);
    font-weight: 800;
}

.compact-card .movie-info {
    min-height: 154px;
}

.feature-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: start;
}

.rank-panel {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.rank-panel h2 {
    margin: 0;
    padding: 18px 18px 6px;
    font-size: 22px;
    line-height: 1.2;
}

.rank-list {
    display: grid;
    gap: 0;
}

.rank-item {
    display: grid;
    grid-template-columns: auto 76px 1fr;
    gap: 12px;
    align-items: center;
    padding: 13px 18px;
    border-top: 1px solid var(--gray-100);
    transition: background 0.18s ease;
}

.rank-item:hover {
    background: var(--primary-50);
}

.rank-item img {
    width: 76px;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    object-fit: cover;
    background: var(--secondary-900);
}

.list-rank {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--primary-600);
    font-size: 13px;
    font-weight: 900;
}

.rank-content {
    min-width: 0;
}

.rank-content strong {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--gray-900);
}

.rank-content em {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--gray-500);
    font-size: 12px;
    font-style: normal;
}

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

.category-card {
    position: relative;
    min-height: 170px;
    padding: 22px;
    border: 1px solid rgba(14, 165, 233, 0.16);
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--white), var(--primary-50));
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.category-card::after {
    content: "";
    position: absolute;
    right: -30px;
    top: -30px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(56, 189, 248, 0.18);
}

.category-card h2,
.category-card h3 {
    margin: 0 0 10px;
    font-size: 22px;
}

.category-card p {
    margin: 0 0 18px;
    color: var(--gray-600);
    font-size: 14px;
}

.category-card span {
    color: var(--primary-700);
    font-weight: 850;
}

.page-hero {
    padding: 58px 0;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-700), var(--secondary-900));
}

.page-hero .breadcrumb {
    margin-bottom: 14px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
}

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

.page-hero h1 {
    margin: 0 0 12px;
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.12;
    font-weight: 850;
}

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

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 0 24px;
    padding: 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.filter-bar input,
.filter-bar select {
    min-height: 44px;
    border: 1px solid var(--gray-300);
    border-radius: 12px;
    padding: 0 13px;
    outline: 0;
    background: var(--white);
}

.filter-bar input {
    flex: 1 1 280px;
}

.filter-bar input:focus,
.filter-bar select:focus {
    border-color: var(--primary-400);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12);
}

.search-empty {
    display: none;
    padding: 36px;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--gray-600);
    background: var(--white);
    border: 1px solid var(--gray-200);
}

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

.detail-head {
    padding: 44px 0;
    color: var(--white);
    background: linear-gradient(135deg, var(--secondary-900), var(--primary-700));
}

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

.detail-copy h1 {
    margin: 14px 0 14px;
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1.12;
    font-weight: 850;
}

.detail-copy p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
}

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

.detail-meta span,
.tag {
    display: inline-flex;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: inherit;
    font-size: 13px;
    font-weight: 750;
}

.detail-poster {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--secondary-900);
}

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

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

.player-shell {
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: #000000;
    box-shadow: var(--shadow-lg);
}

.player-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.movie-video {
    width: 100%;
    height: 100%;
    background: #000000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 0;
    color: var(--white);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.18));
    cursor: pointer;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.play-circle {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-700);
    background: rgba(255, 255, 255, 0.94);
    font-size: 34px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.player-overlay strong {
    font-size: 20px;
}

.detail-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 34px;
    align-items: start;
    padding-bottom: 58px;
}

.article-card,
.side-card {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.article-card {
    padding: 28px;
}

.article-card h2,
.side-card h2 {
    margin: 0 0 16px;
    font-size: 24px;
    line-height: 1.2;
}

.article-card p {
    margin: 0 0 18px;
    color: var(--gray-700);
    font-size: 16px;
}

.side-card {
    position: sticky;
    top: 92px;
    padding: 18px;
}

.side-card .rank-item {
    grid-template-columns: 68px 1fr;
    padding: 12px 0;
}

.side-card .rank-item img {
    width: 68px;
}

.side-card .list-rank {
    display: none;
}

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

.tag-row .tag {
    color: var(--primary-700);
    background: var(--primary-50);
}

.site-footer {
    color: #d1d5db;
    background: var(--secondary-900);
}

.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 42px 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 34px;
}

.footer-brand p {
    max-width: 520px;
    margin: 16px 0 0;
    color: #9ca3af;
}

.footer-logo .brand-text strong {
    color: var(--white);
}

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

.footer-links h2 {
    margin: 0 0 6px;
    color: var(--white);
    font-size: 16px;
}

.footer-links a {
    color: #cbd5e1;
    font-size: 14px;
}

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

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    padding: 16px 20px;
    text-align: center;
    color: #94a3b8;
    font-size: 14px;
}

@media (max-width: 1080px) {
    .header-search {
        width: 220px;
    }

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

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

    .side-card {
        position: static;
    }
}

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

    .header-inner {
        height: 66px;
    }

    .mobile-toggle {
        display: block;
        margin-left: auto;
    }

    .hero {
        height: auto;
        min-height: 620px;
    }

    .hero-copy {
        padding: 74px 0 94px;
    }

    .hero-control {
        display: none;
    }

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

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

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

@media (max-width: 560px) {
    .container,
    .header-inner {
        padding-left: 14px;
        padding-right: 14px;
    }

    .brand-text small {
        display: none;
    }

    .hero-copy h1,
    .page-hero h1,
    .detail-copy h1 {
        letter-spacing: -0.02em;
    }

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

    .rank-item {
        grid-template-columns: auto 68px 1fr;
        padding-left: 14px;
        padding-right: 14px;
    }

    .rank-item img {
        width: 68px;
    }

    .article-card {
        padding: 20px;
    }
}
