:root {
    --bg: #fff8ed;
    --bg-soft: #fffdf7;
    --surface: #ffffff;
    --surface-strong: #fff7e6;
    --text: #23160b;
    --muted: #725a42;
    --muted-2: #94785a;
    --line: rgba(146, 91, 20, 0.18);
    --brand: #d97706;
    --brand-2: #b45309;
    --brand-3: #92400e;
    --accent: #f59e0b;
    --danger: #ef4444;
    --shadow: 0 24px 80px rgba(120, 53, 15, 0.16);
    --shadow-soft: 0 14px 36px rgba(146, 64, 14, 0.12);
    --radius: 22px;
    --radius-sm: 14px;
    --max: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(251, 191, 36, 0.22), transparent 30rem),
        linear-gradient(180deg, #fff7ed 0%, #fffdf8 42%, #fff8ed 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    line-height: 1.72;
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--brand-2);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(90deg, rgba(120, 53, 15, 0.96), rgba(194, 65, 12, 0.96), rgba(120, 53, 15, 0.96));
    box-shadow: 0 12px 36px rgba(120, 53, 15, 0.28);
    backdrop-filter: blur(16px);
}

.nav-wrap {
    width: min(100% - 32px, var(--max));
    height: 68px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff7ed;
}

.brand-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-weight: 900;
    color: #7c2d12;
    background: linear-gradient(135deg, #fde68a, #f59e0b);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45), 0 10px 28px rgba(0, 0, 0, 0.18);
}

.brand strong {
    display: block;
    font-size: 20px;
    line-height: 1.1;
    letter-spacing: 0.04em;
}

.brand small {
    display: block;
    margin-top: 2px;
    color: rgba(255, 247, 237, 0.76);
    font-size: 12px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    color: #ffedd5;
    font-weight: 700;
}

.nav-links > a,
.nav-dropdown > button {
    padding: 10px 0;
    border: 0;
    color: #ffedd5;
    background: transparent;
    font: inherit;
    cursor: pointer;
}

.nav-links > a:hover,
.nav-dropdown > button:hover {
    color: white;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 220px;
    padding: 10px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-panel a {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    color: var(--text);
}

.nav-dropdown-panel a:hover {
    background: #fff7ed;
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    color: #fff7ed;
    background: rgba(255, 255, 255, 0.12);
    font-size: 24px;
}

.hero-shell {
    position: relative;
    background: #111827;
}

.hero-slider {
    position: relative;
    height: min(82vh, 760px);
    min-height: 560px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 900ms ease, transform 1200ms ease;
    pointer-events: none;
}

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

.hero-media,
.detail-backdrop {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.52), transparent 24rem),
        linear-gradient(135deg, #1f1308, #7c2d12 45%, #111827);
}

.hero-media img,
.detail-backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.02) contrast(1.04);
}

.hero-media.poster-missing,
.detail-backdrop.poster-missing {
    display: grid;
    place-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.48) 44%, rgba(0, 0, 0, 0.16)),
        linear-gradient(0deg, rgba(0, 0, 0, 0.76), transparent 48%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(100% - 48px, var(--max));
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 0 0 92px;
    color: white;
}

.hero-kicker,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 14px;
    border-radius: 999px;
    color: #7c2d12;
    background: linear-gradient(135deg, #fde68a, #fbbf24);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.hero-content h1 {
    max-width: 820px;
    margin: 20px 0 12px;
    font-size: clamp(34px, 6vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.04em;
    text-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.hero-content p {
    max-width: 760px;
    margin: 0 0 20px;
    color: rgba(255, 247, 237, 0.88);
    font-size: clamp(16px, 2vw, 22px);
}

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

.hero-tags span,
.tag-list span {
    padding: 6px 10px;
    border-radius: 999px;
    color: #78350f;
    background: #ffedd5;
    font-size: 12px;
    font-weight: 800;
}

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

.primary-button,
.secondary-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 18px;
    border: 0;
    border-radius: 14px;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
    color: white;
    background: linear-gradient(135deg, #f59e0b, #c2410c);
    box-shadow: 0 14px 30px rgba(194, 65, 12, 0.36);
}

.primary-button:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(194, 65, 12, 0.42);
}

.secondary-button {
    color: white;
    background: rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(10px);
}

.secondary-button:hover {
    color: white;
    background: rgba(255, 255, 255, 0.22);
}

.ghost-button {
    color: var(--brand-3);
    background: #fff7ed;
    box-shadow: inset 0 0 0 1px var(--line);
}

.hero-arrow {
    position: absolute;
    z-index: 3;
    top: 50%;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 999px;
    color: white;
    background: rgba(0, 0, 0, 0.42);
    font-size: 42px;
    line-height: 1;
    display: grid;
    place-items: center;
    transform: translateY(-50%);
    cursor: pointer;
}

.hero-prev {
    left: 22px;
}

.hero-next {
    right: 22px;
}

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

.hero-dots button {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.52);
    transition: 0.2s ease;
}

.hero-dots button.is-active {
    width: 34px;
    background: #fbbf24;
}

.section-wrap,
.page-hero {
    width: min(100% - 32px, var(--max));
    margin: 0 auto;
}

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

.intro-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: -48px;
    padding: 30px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
    position: relative;
    z-index: 5;
}

.intro-panel h2,
.section-heading h2,
.page-hero h1 {
    margin: 12px 0 8px;
    color: var(--text);
    font-size: clamp(26px, 4vw, 42px);
    line-height: 1.18;
    letter-spacing: -0.03em;
}

.intro-panel p,
.page-hero p {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
}

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

.section-heading a {
    color: var(--brand-2);
    font-weight: 900;
}

.filter-panel {
    display: grid;
    grid-template-columns: 2fr repeat(3, minmax(140px, 1fr)) auto;
    gap: 12px;
    padding: 16px;
    margin-bottom: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-soft);
}

.filter-panel:has([data-filter-category]) {
    grid-template-columns: 2fr repeat(4, minmax(130px, 1fr)) auto;
}

.filter-panel label {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
}

.filter-panel input,
.filter-panel select {
    width: 100%;
    min-height: 42px;
    margin-top: 6px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--text);
    background: white;
    outline: none;
}

.filter-panel input:focus,
.filter-panel select:focus {
    border-color: rgba(217, 119, 6, 0.6);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.18);
}

.result-line {
    margin: 0 0 22px;
    color: var(--muted);
}

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

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

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

.movie-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(217, 119, 6, 0.42);
    box-shadow: var(--shadow);
}

.movie-card.is-hidden,
.rank-row.is-hidden {
    display: none;
}

.movie-poster-link {
    position: relative;
    display: block;
    color: white;
}

.poster-frame {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(160deg, rgba(251, 191, 36, 0.88), rgba(194, 65, 12, 0.92)),
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.4), transparent 12rem);
}

.poster-card {
    aspect-ratio: 3 / 4;
}

.poster-large {
    aspect-ratio: 3 / 4;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

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

.movie-card:hover .poster-frame img {
    transform: scale(1.07);
}

.poster-fallback {
    position: absolute;
    inset: 0;
    display: none;
    place-items: center;
    padding: 18px;
    color: white;
    font-size: 26px;
    font-weight: 900;
    text-align: center;
    text-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
}

.poster-missing .poster-fallback {
    display: grid;
}

.movie-rating,
.rank-badge {
    position: absolute;
    z-index: 2;
    top: 10px;
    right: 10px;
    padding: 5px 8px;
    border-radius: 999px;
    color: white;
    background: rgba(0, 0, 0, 0.62);
    font-size: 12px;
    font-weight: 900;
    backdrop-filter: blur(8px);
}

.rank-badge {
    right: auto;
    left: 10px;
    background: linear-gradient(135deg, #dc2626, #f59e0b);
}

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

.movie-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--muted-2);
    font-size: 12px;
    font-weight: 800;
}

.pill {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.pill-soft {
    color: #92400e;
    background: #fef3c7;
}

.movie-card h3 {
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.35;
}

.movie-card p {
    display: -webkit-box;
    min-height: 44px;
    margin: 0 0 12px;
    overflow: hidden;
    color: var(--muted);
    font-size: 13px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-card-compact {
    border-radius: 18px;
}

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

.movie-card-compact .tag-list {
    display: none;
}

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

.category-tile,
.category-overview-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 160px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 237, 0.92)),
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.18), transparent 12rem);
    box-shadow: var(--shadow-soft);
}

.category-tile span,
.category-overview-head span {
    color: var(--brand-3);
    font-size: 18px;
    font-weight: 900;
}

.category-tile strong,
.category-overview-head strong {
    color: var(--text);
    font-size: 34px;
    line-height: 1;
}

.category-tile em,
.category-tile small,
.category-overview-card p,
.category-overview-card li {
    color: var(--muted);
    font-style: normal;
    font-size: 13px;
}

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

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

.category-overview-card ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 16px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.hot-section {
    padding-left: 28px;
    padding-right: 28px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(255, 237, 213, 0.78), rgba(254, 243, 199, 0.62));
}

.page-hero {
    margin-top: 42px;
    padding: 56px;
    border-radius: 30px;
    color: var(--text);
    background:
        radial-gradient(circle at top right, rgba(251, 191, 36, 0.38), transparent 22rem),
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 237, 0.9));
    box-shadow: var(--shadow-soft);
}

.small-hero h1 {
    max-width: 900px;
}

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

.rank-row-link {
    display: grid;
    grid-template-columns: 58px 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 8px 20px rgba(146, 64, 14, 0.06);
}

.rank-number {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: white;
    background: linear-gradient(135deg, #d97706, #c2410c);
    font-weight: 900;
}

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

.rank-main em {
    color: var(--muted);
    font-style: normal;
    font-size: 13px;
}

.rank-heat {
    color: var(--brand-3);
    font-weight: 900;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    min-height: 660px;
    color: white;
    background: #111827;
}

.detail-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.72)),
        linear-gradient(0deg, rgba(0, 0, 0, 0.86), transparent 58%);
}

.detail-layout {
    position: relative;
    z-index: 2;
    width: min(100% - 32px, var(--max));
    min-height: 660px;
    margin: 0 auto;
    padding: 80px 0;
    display: grid;
    grid-template-columns: minmax(220px, 330px) 1fr;
    align-items: end;
    gap: 44px;
}

.detail-info h1 {
    margin: 18px 0 14px;
    font-size: clamp(32px, 5vw, 60px);
    line-height: 1.08;
}

.detail-one-line {
    max-width: 820px;
    margin: 0 0 24px;
    color: rgba(255, 247, 237, 0.88);
    font-size: 18px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: rgba(255, 247, 237, 0.75);
    font-size: 14px;
}

.breadcrumbs a:hover {
    color: #fbbf24;
}

.detail-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 860px;
    margin: 0 0 20px;
}

.detail-meta div {
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.detail-meta dt {
    color: rgba(255, 237, 213, 0.7);
    font-size: 12px;
    font-weight: 900;
}

.detail-meta dd {
    margin: 2px 0 0;
    font-weight: 900;
}

.detail-tags {
    margin-bottom: 28px;
}

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

.player-box {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #0f172a;
    box-shadow: var(--shadow);
}

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

.player-start {
    position: absolute;
    inset: 50% auto auto 50%;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border: 0;
    border-radius: 999px;
    color: white;
    background: linear-gradient(135deg, #f59e0b, #dc2626);
    font-size: 18px;
    font-weight: 900;
    transform: translate(-50%, -50%);
    cursor: pointer;
    box-shadow: 0 22px 52px rgba(220, 38, 38, 0.38);
}

.player-box.is-playing .player-start {
    display: none;
}

.player-start span {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #dc2626;
    background: white;
}

.player-message {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 18px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    text-align: center;
    font-size: 13px;
    pointer-events: none;
}

.content-card {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-soft);
}

.content-card h2 {
    margin: 0 0 12px;
    font-size: 26px;
}

.content-card h2:not(:first-child) {
    margin-top: 30px;
}

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

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

.site-footer {
    margin-top: 48px;
    color: #ffedd5;
    background: linear-gradient(90deg, #78350f, #7c2d12, #78350f);
}

.footer-grid {
    width: min(100% - 32px, var(--max));
    margin: 0 auto;
    padding: 48px 0 34px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 34px;
}

.site-footer h2 {
    margin: 0 0 14px;
    color: white;
    font-size: 20px;
}

.site-footer p,
.site-footer a,
.site-footer li {
    color: rgba(255, 237, 213, 0.82);
}

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

.copyright {
    width: min(100% - 32px, var(--max));
    margin: 0 auto;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    text-align: center;
}

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

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

    .filter-panel,
    .filter-panel:has([data-filter-category]) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .mobile-menu-button {
        display: grid;
        place-items: center;
    }

    .nav-links {
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 16px 18px;
        background: rgba(120, 53, 15, 0.98);
    }

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

    .nav-dropdown-panel {
        position: static;
        width: 100%;
        margin-top: 6px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-slider {
        height: 74vh;
        min-height: 520px;
    }

    .hero-content {
        width: min(100% - 28px, var(--max));
        padding-bottom: 76px;
    }

    .hero-arrow {
        display: none;
    }

    .intro-panel,
    .section-heading {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .filter-panel,
    .filter-panel:has([data-filter-category]) {
        grid-template-columns: 1fr;
    }

    .movie-grid,
    .featured-grid,
    .all-movie-grid,
    .related-grid,
    .category-grid,
    .category-overview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

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

    .page-hero {
        padding: 30px 22px;
    }

    .detail-layout {
        min-height: 0;
        padding: 52px 0;
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .detail-layout > div:first-child {
        max-width: 240px;
    }

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

    .rank-row-link {
        grid-template-columns: 46px 1fr;
    }

    .rank-heat {
        grid-column: 2;
    }

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

@media (max-width: 480px) {
    .brand small {
        display: none;
    }

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

    .detail-meta {
        grid-template-columns: 1fr;
    }
}
