:root {
    --color-sunset: #f97316;
    --color-sunset-dark: #ea580c;
    --color-twilight: #ef4444;
    --color-golden: #eab308;
    --color-ocean: #0ea5e9;
    --color-ink: #111827;
    --color-muted: #6b7280;
    --color-line: #e5e7eb;
    --color-soft: #fff7ed;
    --shadow-soft: 0 2px 15px -3px rgba(0, 0, 0, 0.07), 0 10px 20px -2px rgba(0, 0, 0, 0.04);
    --shadow-strong: 0 24px 60px rgba(15, 23, 42, 0.18);
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--color-ink);
    background: linear-gradient(180deg, #fff7ed 0%, #ffffff 36%, #fff7ed 100%);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, #fed7aa, #fecaca);
}

button,
input {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(229, 231, 235, 0.9);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    backdrop-filter: blur(12px);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.brand-icon {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-sunset), var(--color-twilight));
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.25);
}

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

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

.brand-text em {
    color: var(--color-muted);
    font-size: 12px;
    font-style: normal;
}

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

.desktop-nav a,
.mobile-nav a {
    color: #374151;
    font-size: 14px;
    font-weight: 700;
    transition: color 0.2s ease, background 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-nav a.active,
.mobile-nav a:hover {
    color: var(--color-sunset-dark);
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: #fff7ed;
    color: var(--color-sunset-dark);
    cursor: pointer;
}

.mobile-nav {
    display: none;
    padding: 12px 16px 18px;
    border-top: 1px solid var(--color-line);
    background: #ffffff;
}

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

.mobile-nav a {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    background: #fff7ed;
}

.mobile-category-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--color-line);
}

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 660px;
    padding: 76px 0 120px;
    color: #ffffff;
    background: linear-gradient(115deg, var(--color-sunset) 0%, var(--color-twilight) 52%, var(--color-sunset-dark) 100%);
}

.hero-background {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image: linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
    background-size: 44px 44px;
}

.hero-section::after {
    position: absolute;
    right: -14%;
    bottom: -22%;
    width: 520px;
    height: 520px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    content: "";
    filter: blur(4px);
}

.hero-shell {
    position: relative;
    z-index: 1;
}

.hero-slide {
    display: none;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 54px;
}

.hero-slide.active {
    display: grid;
    animation: fadeSlide 0.55s ease both;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow.dark {
    color: var(--color-sunset-dark);
}

.hero-copy h1 {
    max-width: 760px;
    margin: 0 0 18px;
    font-size: clamp(42px, 7vw, 76px);
    line-height: 1.03;
    letter-spacing: -0.06em;
}

.hero-copy p {
    max-width: 720px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 19px;
}

.hero-tags,
.movie-tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tags span,
.movie-tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    color: #9a3412;
    background: #ffedd5;
    font-size: 12px;
    font-weight: 700;
}

.hero-tags span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
}

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

.primary-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-sunset), var(--color-twilight));
    box-shadow: 0 16px 28px rgba(249, 115, 22, 0.28);
}

.hero-section .primary-button {
    color: var(--color-sunset-dark);
    background: #ffffff;
}

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

.primary-button.small {
    min-height: 40px;
    padding: 0 18px;
    font-size: 14px;
}

.ghost-button {
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.ghost-button.dark {
    border-color: #fed7aa;
    color: var(--color-sunset-dark);
    background: #fff7ed;
}

.hero-media {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border: 10px solid rgba(255, 255, 255, 0.25);
    border-radius: 34px;
    box-shadow: var(--shadow-strong);
    transform: rotate(2deg);
}

.hero-media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.55));
    content: "";
}

.hero-play {
    position: absolute;
    right: 22px;
    bottom: 22px;
    z-index: 2;
    display: inline-flex;
    width: 62px;
    height: 62px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--color-sunset-dark);
    background: #ffffff;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.hero-dots {
    display: flex;
    gap: 10px;
    margin-top: 34px;
}

.hero-dots button {
    width: 34px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.38);
    cursor: pointer;
}

.hero-dots button.active {
    background: #ffffff;
}

.overlap-panel {
    position: relative;
    z-index: 3;
    margin-top: -72px;
}

.quick-search-card,
.featured-card,
.category-overview-block,
.player-card,
.detail-main,
.detail-side {
    border: 1px solid rgba(229, 231, 235, 0.85);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
}

.quick-search-card {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
    gap: 28px;
    padding: 30px;
    backdrop-filter: blur(16px);
}

.quick-search-card h2,
.section-heading h2,
.featured-content h2,
.page-hero h1,
.detail-copy h1 {
    margin: 0;
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.quick-search-card p {
    margin: 10px 0 0;
    color: var(--color-muted);
}

.toolbar {
    display: grid;
    gap: 14px;
}

.search-box {
    display: grid;
    gap: 8px;
}

.search-box span {
    color: #374151;
    font-size: 13px;
    font-weight: 800;
}

.search-box input {
    width: 100%;
    height: 48px;
    border: 1px solid #fed7aa;
    border-radius: 999px;
    outline: none;
    padding: 0 18px;
    background: #fff7ed;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.search-box input:focus {
    border-color: var(--color-sunset);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.14);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-buttons button {
    min-height: 34px;
    border: 0;
    border-radius: 999px;
    padding: 0 13px;
    color: #9a3412;
    background: #ffedd5;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.filter-buttons button.active,
.filter-buttons button:hover {
    color: #ffffff;
    background: var(--color-sunset);
}

.section-block {
    padding: 54px 0;
}

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

.section-heading span {
    display: block;
    margin-bottom: 6px;
    color: var(--color-sunset-dark);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.section-heading h2 {
    font-size: clamp(28px, 4vw, 42px);
}

.section-heading a,
.text-link {
    color: var(--color-sunset-dark);
    font-weight: 900;
}

.featured-card {
    display: grid;
    grid-template-columns: 48% 1fr;
    overflow: hidden;
}

.featured-media {
    min-height: 420px;
}

.featured-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    padding: 42px;
}

.featured-content h2 {
    font-size: clamp(32px, 5vw, 52px);
}

.featured-content p {
    margin: 0;
    color: #4b5563;
    font-size: 17px;
}

.warm-panel {
    width: min(1180px, calc(100% - 32px));
    border-radius: 32px;
    background: linear-gradient(135deg, #fefce8, #fff7ed);
    padding-right: 30px;
    padding-left: 30px;
}

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

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

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

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

.movie-card {
    overflow: hidden;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.12), 0 8px 10px -6px rgba(0, 0, 0, 0.08);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.poster-link img {
    transition: transform 0.35s ease;
}

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

.poster-gradient {
    position: absolute;
    inset: auto 0 0;
    height: 44%;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
}

.poster-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    border-radius: 999px;
    padding: 5px 10px;
    color: #ffffff;
    background: rgba(249, 115, 22, 0.92);
    font-size: 12px;
    font-weight: 900;
}

.movie-card-body {
    padding: 15px;
}

.movie-card-body h3,
.wide-content h3,
.rank-info h3 {
    margin: 8px 0;
    font-size: 18px;
    line-height: 1.3;
}

.movie-card-body h3 a:hover,
.wide-content h3 a:hover,
.rank-info h3 a:hover {
    color: var(--color-sunset-dark);
}

.movie-card-body p,
.wide-content p,
.rank-info p {
    display: -webkit-box;
    min-height: 44px;
    overflow: hidden;
    margin: 0 0 12px;
    color: #6b7280;
    font-size: 14px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.movie-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    color: #6b7280;
    font-size: 12px;
    font-weight: 700;
}

.movie-meta-row span {
    display: inline-flex;
    align-items: center;
}

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

.category-card {
    overflow: hidden;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.category-card > a {
    display: block;
    padding: 24px;
}

.category-mark {
    display: block;
    width: 42px;
    height: 6px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--color-sunset), var(--color-twilight));
}

.category-card h3 {
    margin: 0 0 10px;
    font-size: 21px;
}

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

.category-samples {
    display: grid;
    gap: 8px;
    padding: 0 24px 24px;
}

.category-samples a {
    color: #9a3412;
    font-size: 13px;
    font-weight: 700;
}

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

.wide-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    overflow: hidden;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.wide-poster {
    min-height: 150px;
}

.wide-content {
    padding: 18px;
}

.wide-content h3 {
    font-size: 17px;
}

.rank-list {
    display: grid;
    gap: 14px;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 48px 82px 1fr;
    gap: 16px;
    align-items: center;
    border: 1px solid #fed7aa;
    border-radius: 18px;
    padding: 12px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.rank-number {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #9a3412;
    background: #ffedd5;
    font-weight: 900;
}

.top-rank .rank-number {
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-sunset), var(--color-twilight));
}

.rank-poster {
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 12px;
}

.rank-info h3 {
    margin-top: 0;
}

.page-hero {
    padding: 78px 0;
    color: #ffffff;
    background: linear-gradient(115deg, var(--color-sunset), var(--color-twilight));
}

.page-hero h1 {
    max-width: 780px;
    font-size: clamp(40px, 6vw, 68px);
}

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

.category-overview-list {
    display: grid;
    gap: 30px;
    margin-top: 28px;
}

.category-overview-block {
    padding: 26px;
}

.category-overview-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.category-overview-head h2 {
    margin: 0 0 8px;
    font-size: 32px;
}

.category-overview-head p {
    max-width: 740px;
    margin: 0;
    color: var(--color-muted);
}

.detail-hero {
    position: relative;
    overflow: hidden;
    padding: 54px 0 70px;
    color: #ffffff;
    background: #111827;
}

.detail-backdrop {
    position: absolute;
    inset: 0;
    opacity: 0.32;
    filter: blur(4px);
    transform: scale(1.04);
}

.detail-backdrop::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(17, 24, 39, 0.96), rgba(17, 24, 39, 0.68));
    content: "";
}

.detail-hero-inner {
    position: relative;
    z-index: 2;
}

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

.breadcrumb a:hover {
    color: #ffffff;
}

.detail-head-grid {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 36px;
    align-items: center;
}

.detail-cover {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border: 8px solid rgba(255, 255, 255, 0.18);
    border-radius: 28px;
    box-shadow: var(--shadow-strong);
}

.detail-copy h1 {
    max-width: 860px;
    margin-bottom: 18px;
    font-size: clamp(38px, 5.2vw, 72px);
}

.detail-copy p {
    max-width: 820px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 19px;
}

.player-section {
    padding-bottom: 24px;
}

.player-card {
    overflow: hidden;
}

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

.player-frame video {
    display: block;
    width: 100%;
    height: 100%;
    background: #000000;
    object-fit: contain;
}

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    color: #ffffff;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.62) 100%);
    cursor: pointer;
}

.player-overlay span {
    display: inline-flex;
    width: 88px;
    height: 88px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--color-sunset), var(--color-twilight));
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    font-size: 36px;
}

.player-overlay.hidden {
    display: none;
}

.player-caption {
    padding: 24px;
}

.player-caption h2 {
    margin: 0 0 8px;
    font-size: 28px;
}

.player-caption p {
    margin: 0;
    color: var(--color-muted);
}

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

.detail-main,
.detail-side {
    padding: 28px;
}

.detail-main h2,
.detail-side h2 {
    margin: 0 0 16px;
    font-size: 24px;
}

.detail-main p {
    margin: 0 0 24px;
    color: #374151;
    font-size: 17px;
}

.detail-meta-panel {
    border-radius: 18px;
    padding: 18px;
    background: #fff7ed;
}

.detail-meta-panel dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
}

.detail-meta-panel div {
    display: grid;
    gap: 4px;
}

.detail-meta-panel dt {
    color: #9a3412;
    font-size: 13px;
    font-weight: 900;
}

.detail-meta-panel dd {
    margin: 0;
    color: #374151;
}

.side-related {
    display: grid;
    gap: 14px;
}

.side-link {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 12px;
    align-items: center;
    border-radius: 14px;
    padding: 10px;
    transition: background 0.2s ease;
}

.side-link:hover {
    background: #fff7ed;
}

.side-link img {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 10px;
}

.side-link strong,
.side-link em {
    display: block;
}

.side-link strong {
    line-height: 1.35;
}

.side-link em {
    margin-top: 4px;
    color: var(--color-muted);
    font-size: 12px;
    font-style: normal;
}

.site-footer {
    margin-top: 54px;
    color: #d1d5db;
    background: #111827;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 40px;
    padding: 48px 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 20px;
}

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

.site-footer h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 16px;
}

.site-footer ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer a {
    color: #d1d5db;
    font-size: 14px;
}

.site-footer a:hover {
    color: #fb923c;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid #1f2937;
    padding: 18px max(16px, calc((100vw - 1180px) / 2));
    color: #9ca3af;
    font-size: 14px;
}

[data-movie-card].is-hidden {
    display: none;
}

.no-results {
    border: 1px dashed #fdba74;
    border-radius: 18px;
    padding: 24px;
    color: #9a3412;
    background: #fff7ed;
    text-align: center;
}

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

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

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

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

    .mobile-menu-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .hero-slide,
    .hero-slide.active,
    .quick-search-card,
    .featured-card,
    .detail-head-grid,
    .detail-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-section {
        min-height: auto;
        padding-top: 54px;
    }

    .hero-media {
        max-width: 360px;
        margin: 0 auto;
        transform: none;
    }

    .featured-media {
        min-height: 320px;
    }

    .rank-list.compact {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100% - 22px, 1180px);
    }

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

    .hero-copy h1,
    .page-hero h1,
    .detail-copy h1 {
        font-size: 36px;
    }

    .quick-search-card,
    .featured-content,
    .category-overview-block,
    .detail-main,
    .detail-side {
        padding: 20px;
    }

    .movie-grid,
    .home-grid,
    .full-grid,
    .mini-grid,
    .category-grid,
    .wide-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .wide-card,
    .rank-item {
        grid-template-columns: 88px 1fr;
    }

    .rank-number {
        display: none;
    }

    .wide-poster {
        min-height: 128px;
    }

    .movie-card-body {
        padding: 12px;
    }

    .movie-card-body h3 {
        font-size: 16px;
    }

    .section-heading,
    .category-overview-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .detail-cover {
        width: min(240px, 72vw);
    }

    .player-overlay span {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}

@media (max-width: 460px) {
    .movie-grid,
    .home-grid,
    .full-grid,
    .mini-grid,
    .category-grid,
    .wide-grid {
        grid-template-columns: 1fr;
    }

    .wide-card {
        grid-template-columns: 110px 1fr;
    }

    .footer-bottom {
        display: grid;
    }
}
