:root {
    --sky-50: #f0f9ff;
    --sky-100: #e0f2fe;
    --sky-500: #0ea5e9;
    --sky-600: #0284c7;
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-500: #6b7280;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
    --radius: 24px;
}

body {
    min-height: 100vh;
    background: linear-gradient(180deg, #ffffff 0%, rgba(240, 249, 255, 0.62) 48%, rgba(255, 251, 235, 0.72) 100%);
    color: var(--gray-800);
}

img {
    object-fit: cover;
    background: linear-gradient(135deg, var(--sky-100), var(--amber-100));
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(240, 249, 255, 0.96), rgba(255, 251, 235, 0.96), rgba(240, 249, 255, 0.96));
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(14, 165, 233, 0.16);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
}

.nav-wrap {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-800);
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
    font-weight: 900;
    background: linear-gradient(135deg, #38bdf8, #fbbf24);
    box-shadow: 0 10px 24px rgba(14, 165, 233, 0.25);
}

.brand-text {
    display: grid;
    line-height: 1.1;
}

.brand-text strong {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0.02em;
    background: linear-gradient(90deg, var(--sky-600), var(--amber-600));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-text em {
    margin-top: 4px;
    color: var(--gray-500);
    font-size: 11px;
    letter-spacing: 0.2em;
    font-style: normal;
}

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

.nav-link,
.mobile-link {
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--gray-700);
    font-weight: 700;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
    color: var(--sky-600);
    background: linear-gradient(90deg, var(--sky-100), var(--amber-100));
    transform: translateY(-1px);
}

.nav-search,
.mobile-search,
.home-search-panel form,
.search-page-panel form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-search input,
.mobile-search input,
.home-search-panel input,
.search-page-panel input,
.filter-panel input {
    width: 100%;
    border: 1px solid rgba(14, 165, 233, 0.22);
    border-radius: 999px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--gray-800);
    outline: none;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.nav-search input:focus,
.mobile-search input:focus,
.home-search-panel input:focus,
.search-page-panel input:focus,
.filter-panel input:focus {
    border-color: var(--sky-500);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.13);
}

.nav-search button,
.mobile-search button,
.home-search-panel button,
.search-page-panel button {
    border: 0;
    border-radius: 999px;
    padding: 12px 20px;
    color: #ffffff;
    font-weight: 800;
    background: linear-gradient(90deg, var(--sky-500), var(--amber-500));
    box-shadow: 0 12px 24px rgba(14, 165, 233, 0.22);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.1);
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--gray-800);
}

.mobile-panel {
    display: none;
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto 16px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
}

.mobile-panel.open {
    display: block;
}

.mobile-panel nav {
    display: grid;
    gap: 8px;
    margin-top: 14px;
}

.hero {
    position: relative;
    height: 620px;
    overflow: hidden;
    background: var(--gray-900);
}

.hero-slides,
.hero-slide,
.hero-slide img,
.hero-shade {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    transition: opacity 0.9s ease;
}

.hero-slide.is-active {
    opacity: 1;
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
}

.hero-shade {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.08));
}

.hero-copy {
    position: relative;
    z-index: 2;
    width: min(1280px, calc(100% - 32px));
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
}

.hero-kicker,
.section-head span,
.sub-hero span,
.ranking-head span {
    display: inline-flex;
    align-items: center;
    width: max-content;
    border-radius: 999px;
    padding: 8px 14px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: linear-gradient(90deg, rgba(14, 165, 233, 0.88), rgba(245, 158, 11, 0.88));
    backdrop-filter: blur(10px);
}

.hero h1 {
    width: min(720px, 100%);
    margin-top: 20px;
    font-size: clamp(42px, 7vw, 78px);
    line-height: 1.02;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.hero p {
    width: min(660px, 100%);
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    line-height: 1.75;
}

.hero-tags,
.detail-tags,
.quick-tags,
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-tags {
    margin-top: 24px;
}

.hero-tags span,
.detail-tags span,
.quick-tags a {
    border-radius: 999px;
    padding: 8px 13px;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

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

.primary-btn,
.ghost-btn,
.section-more,
.text-link,
.ranking-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 13px 22px;
    font-weight: 900;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.primary-btn {
    color: #ffffff;
    background: linear-gradient(90deg, var(--sky-500), var(--amber-500));
    box-shadow: 0 20px 34px rgba(14, 165, 233, 0.28);
}

.ghost-btn {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
}

.ghost-btn.light {
    color: var(--sky-600);
    background: rgba(240, 249, 255, 0.9);
}

.primary-btn:hover,
.ghost-btn:hover,
.section-more:hover,
.text-link:hover,
.ranking-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.16);
}

.hero-control {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 50px;
    height: 50px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 36px;
    line-height: 1;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
}

.hero-control.prev {
    left: 24px;
}

.hero-control.next {
    right: 24px;
}

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

.hero-dot {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.46);
}

.hero-dot.active {
    width: 34px;
    background: linear-gradient(90deg, var(--sky-500), var(--amber-500));
}

.home-search-panel,
.page-section,
.sub-page,
.detail-page {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
}

.home-search-panel {
    display: grid;
    grid-template-columns: 1fr minmax(320px, 560px);
    gap: 28px;
    align-items: center;
    margin-top: -46px;
    position: relative;
    z-index: 5;
    border: 1px solid rgba(14, 165, 233, 0.16);
    border-radius: 30px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
}

.home-search-panel span {
    color: var(--sky-600);
    font-weight: 900;
}

.home-search-panel h2 {
    margin-top: 6px;
    font-size: 30px;
    font-weight: 950;
}

.page-section {
    padding: 80px 0 0;
}

.soft-section {
    padding: 80px 0;
}

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

.section-head h2,
.ranking-head h2,
.sub-hero h1 {
    margin-top: 10px;
    color: var(--gray-800);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.12;
    font-weight: 950;
    letter-spacing: -0.03em;
}

.section-head p,
.sub-hero p,
.category-overview-body p,
.site-footer p {
    margin-top: 10px;
    color: var(--gray-500);
    line-height: 1.8;
}

.section-more,
.text-link,
.ranking-more {
    color: var(--sky-600);
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

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

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

.movie-card {
    display: grid;
    overflow: hidden;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.movie-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.16);
}

.card-poster {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.card-poster img {
    width: 100%;
    height: 100%;
    transition: transform 0.45s ease;
}

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

.card-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.48));
    opacity: 0;
    transition: opacity 0.25s ease;
}

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

.card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    border-radius: 999px;
    padding: 6px 10px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    background: linear-gradient(90deg, rgba(14, 165, 233, 0.9), rgba(245, 158, 11, 0.9));
    backdrop-filter: blur(8px);
}

.card-play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    transform: translate(-50%, -50%) scale(0.75);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

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

.card-content {
    display: grid;
    gap: 8px;
    padding: 18px;
}

.card-content strong {
    color: var(--gray-800);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.35;
}

.card-content em,
.compact-card em,
.ranking-row em,
.rank-meta {
    color: var(--gray-500);
    font-size: 13px;
    font-style: normal;
}

.card-content span:last-child {
    color: var(--gray-700);
    line-height: 1.7;
}

.movie-card.small .card-content strong {
    font-size: 16px;
}

.movie-card.small .card-content span:last-child {
    display: none;
}

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

.category-tile {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    border-radius: 26px;
    color: #ffffff;
    box-shadow: var(--shadow);
}

.category-tile img,
.category-cover img {
    width: 100%;
    height: 100%;
}

.category-tile::after,
.category-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.72));
}

.category-tile span {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 2;
    display: grid;
    gap: 8px;
}

.category-tile strong,
.category-cover span {
    font-size: 22px;
    font-weight: 950;
}

.category-tile em {
    color: rgba(255, 255, 255, 0.86);
    font-style: normal;
    line-height: 1.7;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 34px;
    align-items: start;
}

.ranking-box,
.category-overview-card,
.detail-content article,
.detail-content aside,
.filter-panel,
.search-page-panel,
.search-results,
.rank-table {
    border: 1px solid rgba(14, 165, 233, 0.14);
    border-radius: 28px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.1);
}

.ranking-box {
    position: sticky;
    top: 100px;
}

.ranking-list {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.ranking-row,
.rank-table-row {
    display: grid;
    grid-template-columns: 46px 74px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    border-radius: 18px;
    padding: 10px;
    transition: background 0.25s ease, transform 0.25s ease;
}

.ranking-row:hover,
.rank-table-row:hover {
    background: linear-gradient(90deg, var(--sky-50), var(--amber-50));
    transform: translateX(4px);
}

.rank-no {
    color: var(--sky-600);
    font-weight: 950;
    font-size: 18px;
}

.ranking-row img,
.rank-table-row img {
    width: 74px;
    height: 52px;
    border-radius: 12px;
}

.ranking-row strong,
.compact-card strong,
.rank-main strong {
    display: block;
    color: var(--gray-800);
    font-weight: 900;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ranking-more {
    width: 100%;
    margin-top: 18px;
}

.site-footer {
    margin-top: 90px;
    background: linear-gradient(90deg, var(--gray-900), #0f172a);
    color: #ffffff;
}

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

.footer-brand {
    color: #ffffff;
    font-size: 24px;
    font-weight: 950;
}

.site-footer h2 {
    font-size: 20px;
    font-weight: 900;
}

.footer-links {
    margin-top: 16px;
}

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

.copyright {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 20px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.62);
}

.sub-page,
.detail-page {
    padding-top: 34px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 24px;
    color: var(--gray-500);
}

.breadcrumb a {
    color: var(--sky-600);
    font-weight: 800;
}

.sub-hero {
    border-radius: 34px;
    padding: 54px;
    color: var(--gray-800);
    background: radial-gradient(circle at 0% 0%, rgba(14, 165, 233, 0.22), transparent 32%), radial-gradient(circle at 100% 0%, rgba(245, 158, 11, 0.24), transparent 36%), #ffffff;
    box-shadow: var(--shadow);
}

.filter-panel,
.search-page-panel {
    display: grid;
    grid-template-columns: minmax(240px, 460px) minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    margin: 30px 0;
}

.sticky-filter {
    position: sticky;
    top: 96px;
    z-index: 10;
}

.quick-tags a {
    color: var(--sky-600);
    background: linear-gradient(90deg, var(--sky-50), var(--amber-50));
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.category-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 30px;
}

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

.category-cover {
    position: relative;
    min-height: 230px;
    overflow: hidden;
    border-radius: 24px;
    color: #ffffff;
}

.category-cover span {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 2;
}

.category-overview-body {
    display: grid;
    gap: 14px;
}

.category-overview-body h2 {
    font-size: 26px;
    font-weight: 950;
}

.compact-list {
    display: grid;
    gap: 10px;
}

.compact-card {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.compact-card img {
    width: 78px;
    height: 54px;
    border-radius: 13px;
}

.rank-table {
    display: grid;
    gap: 8px;
    margin-top: 34px;
}

.rank-table-row {
    grid-template-columns: 68px 96px minmax(0, 1fr) 210px;
    padding: 14px;
}

.rank-table-row img {
    width: 96px;
    height: 64px;
}

.rank-main em {
    display: block;
    margin-top: 4px;
    color: var(--gray-500);
    line-height: 1.6;
    font-style: normal;
}

.detail-hero {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 34px;
    align-items: center;
    border-radius: 34px;
    padding: 34px;
    color: #ffffff;
    background: radial-gradient(circle at 20% 0%, rgba(14, 165, 233, 0.38), transparent 34%), linear-gradient(135deg, #0f172a, #111827 50%, #1f2937);
    box-shadow: var(--shadow);
}

.detail-poster {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.32);
}

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

.detail-info h1 {
    margin-top: 18px;
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.detail-one-line {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 20px;
    line-height: 1.75;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.detail-meta span {
    border-radius: 999px;
    padding: 8px 12px;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.13);
}

.detail-tags {
    margin-top: 18px;
}

.player-section {
    margin-top: 46px;
}

.player-box {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #000000;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.player-box video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(14, 165, 233, 0.16), rgba(0, 0, 0, 0.52));
    transition: opacity 0.25s ease;
}

.player-overlay span {
    width: 92px;
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    font-size: 42px;
    background: linear-gradient(135deg, var(--sky-500), var(--amber-500));
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.35);
}

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

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

.detail-content h2 {
    margin: 0 0 16px;
    color: var(--gray-800);
    font-size: 26px;
    font-weight: 950;
}

.detail-content article p {
    margin-bottom: 28px;
    color: var(--gray-700);
    font-size: 18px;
    line-height: 1.95;
}

.detail-content dl {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 12px;
}

.detail-content dt {
    color: var(--gray-500);
    font-weight: 800;
}

.detail-content dd {
    color: var(--gray-800);
    font-weight: 800;
}

.search-results:empty {
    display: none;
}

.search-results h2 {
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: 950;
}

.hidden-by-filter {
    display: none;
}

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

    .nav-toggle {
        display: block;
    }

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

    .split-section,
    .detail-content,
    .home-search-panel {
        grid-template-columns: 1fr;
    }

    .ranking-box {
        position: static;
    }

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

@media (max-width: 820px) {
    .hero {
        height: 560px;
    }

    .hero-control {
        display: none;
    }

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

    .section-head {
        display: grid;
    }

    .filter-panel,
    .search-page-panel,
    .detail-hero,
    .category-overview-card,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .rank-table-row {
        grid-template-columns: 48px 78px minmax(0, 1fr);
    }

    .rank-meta {
        display: none;
    }

    .sub-hero,
    .detail-hero {
        padding: 30px;
    }
}

@media (max-width: 560px) {
    .nav-wrap,
    .home-search-panel,
    .page-section,
    .sub-page,
    .detail-page,
    .footer-inner,
    .copyright {
        width: min(100% - 22px, 1280px);
    }

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

    .hero {
        height: 520px;
    }

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

    .hero p,
    .detail-one-line {
        font-size: 16px;
    }

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

    .home-search-panel,
    .ranking-box,
    .category-overview-card,
    .detail-content article,
    .detail-content aside,
    .filter-panel,
    .search-page-panel,
    .rank-table {
        padding: 18px;
        border-radius: 22px;
    }

    .detail-poster img {
        aspect-ratio: 16 / 10;
    }
}
