:root {
    --bg-start: #eff6ff;
    --bg-middle: #fdf2f8;
    --bg-end: #faf5ff;
    --text: #1f2937;
    --muted: #6b7280;
    --soft: rgba(255, 255, 255, 0.72);
    --card: rgba(255, 255, 255, 0.86);
    --line: rgba(229, 231, 235, 0.86);
    --red: #ef4444;
    --orange: #f97316;
    --pink: #ec4899;
    --purple: #a855f7;
    --blue: #60a5fa;
    --shadow: 0 18px 45px rgba(236, 72, 153, 0.16);
    --shadow-strong: 0 24px 60px rgba(239, 68, 68, 0.22);
    --radius: 26px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(255, 210, 225, 0.7), transparent 32rem),
        radial-gradient(circle at top right, rgba(191, 219, 254, 0.74), transparent 34rem),
        linear-gradient(180deg, var(--bg-start) 0%, var(--bg-middle) 48%, var(--bg-end) 100%);
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.site-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-main {
    flex: 1;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(255, 255, 255, 0.72);
    background: linear-gradient(90deg, rgba(253, 242, 248, 0.94), rgba(239, 246, 255, 0.94), rgba(250, 245, 255, 0.94));
    box-shadow: 0 12px 30px rgba(236, 72, 153, 0.12);
    backdrop-filter: blur(18px);
}

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

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.logo-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--red), var(--orange));
    box-shadow: 0 12px 28px rgba(239, 68, 68, 0.26);
}

.logo-text {
    background: linear-gradient(90deg, var(--red), var(--orange), var(--pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.nav-link,
.nav-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 0;
    border-radius: 999px;
    color: #374151;
    background: transparent;
    transition: 0.24s ease;
}

.nav-link:hover,
.nav-button:hover,
.nav-link.is-active {
    color: var(--pink);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 10px 24px rgba(236, 72, 153, 0.14);
}

.nav-menu {
    position: relative;
}

.nav-menu-panel {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 250px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: 0.22s ease;
}

.nav-menu:hover .nav-menu-panel,
.nav-menu:focus-within .nav-menu-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-menu-item {
    display: block;
    padding: 10px 12px;
    border-radius: 16px;
    transition: 0.22s ease;
}

.nav-menu-item:hover {
    background: linear-gradient(90deg, rgba(253, 242, 248, 0.95), rgba(250, 245, 255, 0.95));
}

.nav-menu-item strong {
    display: block;
    font-size: 14px;
}

.nav-menu-item span {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.78);
    color: #374151;
}

.mobile-nav {
    display: none;
    padding: 0 0 14px;
}

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

.mobile-nav a {
    padding: 12px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.74);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 60px 0 44px;
    background: linear-gradient(135deg, rgba(252, 231, 243, 0.78), rgba(219, 234, 254, 0.78), rgba(243, 232, 255, 0.78));
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 999px;
    filter: blur(46px);
    opacity: 0.48;
    animation: floatBlob 12s ease-in-out infinite;
}

.hero::before {
    top: 34px;
    left: 5%;
    background: #fecdd3;
}

.hero::after {
    right: 7%;
    bottom: 24px;
    background: #bfdbfe;
    animation-delay: -4s;
}

.hero-stage {
    position: relative;
    z-index: 1;
    min-height: 520px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 36px;
    background: rgba(255, 255, 255, 0.58);
    box-shadow: var(--shadow-strong);
    overflow: hidden;
    backdrop-filter: blur(18px);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
    align-items: center;
    gap: 34px;
    padding: 46px;
    opacity: 0;
    pointer-events: none;
    transform: translateX(18px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--pink);
    background: rgba(255, 255, 255, 0.78);
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 10px 22px rgba(236, 72, 153, 0.12);
}

.hero-title {
    margin: 18px 0 14px;
    font-size: clamp(34px, 5.2vw, 62px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.gradient-text {
    background: linear-gradient(90deg, var(--red), var(--orange), var(--pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-desc {
    max-width: 620px;
    margin: 0 0 24px;
    color: #4b5563;
    font-size: 17px;
    line-height: 1.9;
}

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

.chip,
.hero-tags span,
.tag-list span {
    display: inline-flex;
    align-items: center;
    padding: 7px 11px;
    border-radius: 999px;
    color: #be185d;
    background: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    font-weight: 700;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 12px 20px;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    transition: 0.24s ease;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(90deg, var(--red), var(--orange));
    box-shadow: 0 16px 32px rgba(239, 68, 68, 0.22);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.28);
}

.btn-soft {
    color: #374151;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 12px 24px rgba(148, 163, 184, 0.14);
}

.btn-soft:hover {
    color: var(--pink);
    transform: translateY(-2px);
}

.hero-poster-panel {
    position: relative;
    align-self: stretch;
    display: grid;
    place-items: center;
}

.hero-poster-glow {
    position: absolute;
    width: 76%;
    height: 76%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.34), rgba(96, 165, 250, 0.3));
    filter: blur(28px);
}

.hero-poster {
    position: relative;
    width: min(100%, 420px);
    aspect-ratio: 3 / 4;
    border: 10px solid rgba(255, 255, 255, 0.72);
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 28px 60px rgba(31, 41, 55, 0.22);
    transform: rotate(2deg);
}

.hero-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.hero-mini-card {
    position: absolute;
    right: 6px;
    bottom: 34px;
    max-width: 245px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 24px;
    color: #fff;
    background: rgba(17, 24, 39, 0.62);
    box-shadow: 0 16px 40px rgba(31, 41, 55, 0.22);
    backdrop-filter: blur(18px);
}

.hero-mini-card strong {
    display: block;
    margin-bottom: 6px;
}

.hero-mini-card span {
    display: block;
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    line-height: 1.6;
}

.hero-dots {
    position: absolute;
    z-index: 2;
    left: 46px;
    bottom: 32px;
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(236, 72, 153, 0.28);
    transition: 0.22s ease;
}

.hero-dot.is-active {
    width: 32px;
    background: linear-gradient(90deg, var(--red), var(--orange));
}

.search-ribbon {
    position: relative;
    z-index: 2;
    margin-top: -22px;
}

.search-ribbon form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.search-ribbon input,
.search-input,
.filter-select {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(229, 231, 235, 0.9);
    border-radius: 999px;
    outline: 0;
    padding: 0 16px;
    color: #374151;
    background: rgba(255, 255, 255, 0.86);
}

.search-ribbon input:focus,
.search-input:focus,
.filter-select:focus {
    border-color: rgba(236, 72, 153, 0.55);
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.12);
}

.section {
    padding: 44px 0;
}

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

.section-kicker {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--pink);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-title {
    margin: 0;
    font-size: clamp(26px, 3.5vw, 42px);
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.section-desc {
    max-width: 720px;
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.8;
}

.grid {
    display: grid;
    gap: 20px;
}

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

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

.movie-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 24px;
    overflow: hidden;
    background: var(--card);
    box-shadow: 0 12px 28px rgba(148, 163, 184, 0.14);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

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

.poster-wrap {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(252, 231, 243, 0.9), rgba(219, 234, 254, 0.9));
}

.poster-wrap.wide {
    aspect-ratio: 16 / 9;
}

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

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

.poster-wrap::after {
    content: "▶";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 42px;
    background: rgba(17, 24, 39, 0);
    opacity: 0;
    transition: 0.28s ease;
}

.movie-card:hover .poster-wrap::after {
    opacity: 1;
    background: rgba(17, 24, 39, 0.28);
}

.movie-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 16px;
}

.movie-title {
    margin: 10px 0 8px;
    font-size: 17px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-desc {
    flex: 1;
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
}

.badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    padding: 6px 10px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(90deg, var(--pink), var(--purple));
    font-size: 12px;
    font-weight: 800;
}

.category-card {
    min-height: 190px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 12px 30px rgba(148, 163, 184, 0.14);
    transition: 0.28s ease;
}

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

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

.category-card p {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.7;
}

.category-card span {
    color: var(--pink);
    font-weight: 800;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 54px 92px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 10px 22px rgba(148, 163, 184, 0.12);
    transition: 0.24s ease;
}

.rank-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow);
}

.rank-no {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--red), var(--orange));
}

.rank-thumb {
    aspect-ratio: 16 / 10;
    border-radius: 16px;
    overflow: hidden;
}

.rank-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rank-item h3 {
    margin: 0 0 6px;
    font-size: 17px;
}

.rank-item p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.page-hero {
    padding: 54px 0 26px;
}

.page-panel {
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.page-panel h1 {
    margin: 0;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.12;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 14px;
}

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

.filter-panel {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) repeat(4, minmax(120px, 180px));
    gap: 12px;
    margin-bottom: 24px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 12px 28px rgba(148, 163, 184, 0.12);
}

.empty-state {
    display: none;
    padding: 30px;
    border-radius: 24px;
    color: var(--muted);
    text-align: center;
    background: rgba(255, 255, 255, 0.74);
}

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

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(290px, 0.55fr);
    gap: 26px;
    align-items: start;
}

.player-card {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 30px;
    overflow: hidden;
    background: #050505;
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.28);
}

.player-card video {
    width: 100%;
    height: 100%;
    display: block;
    background: #050505;
}

.player-cover {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    border: 0;
    color: #fff;
    background: rgba(15, 23, 42, 0.34);
    transition: 0.22s ease;
}

.player-card.is-playing .player-cover {
    opacity: 0;
    pointer-events: none;
}

.play-circle {
    width: 84px;
    height: 84px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    font-size: 32px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.95), rgba(249, 115, 22, 0.95));
    box-shadow: 0 20px 45px rgba(239, 68, 68, 0.32);
    transform: scale(1);
    transition: 0.22s ease;
}

.player-cover:hover .play-circle {
    transform: scale(1.08);
}

.detail-card {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 14px 30px rgba(148, 163, 184, 0.14);
}

.detail-card h1,
.detail-card h2,
.detail-card h3 {
    margin-top: 0;
}

.detail-card p {
    color: #4b5563;
    line-height: 1.9;
}

.detail-cover {
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    margin-bottom: 18px;
}

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

.meta-table {
    display: grid;
    gap: 9px;
    margin: 18px 0;
}

.meta-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 9px;
    border-bottom: 1px solid rgba(229, 231, 235, 0.88);
    color: var(--muted);
}

.meta-row strong {
    color: #374151;
}

.article-body {
    margin-top: 24px;
}

.article-body h2 {
    margin-top: 28px;
}

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

.sitemap-list {
    columns: 4 220px;
    column-gap: 28px;
    padding: 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 12px 28px rgba(148, 163, 184, 0.12);
}

.sitemap-list a {
    display: block;
    break-inside: avoid;
    padding: 8px 0;
    color: #374151;
    border-bottom: 1px dashed rgba(209, 213, 219, 0.82);
}

.sitemap-list a:hover {
    color: var(--pink);
}

.site-footer {
    margin-top: 48px;
    border-top: 1px solid rgba(229, 231, 235, 0.78);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.74));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr repeat(3, 1fr);
    gap: 28px;
    padding: 42px 0;
}

.footer-grid h3 {
    margin: 0 0 14px;
}

.footer-grid p,
.footer-grid a {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

.footer-grid a {
    display: block;
    margin: 7px 0;
}

.footer-grid a:hover {
    color: var(--pink);
}

.footer-bottom {
    padding: 18px 0 28px;
    color: var(--muted);
    text-align: center;
    font-size: 13px;
}

.back-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 40;
    width: 48px;
    height: 48px;
    display: none;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    box-shadow: var(--shadow);
}

.back-top.is-visible {
    display: block;
}

@keyframes floatBlob {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(20px, -14px, 0) scale(1.08);
    }
}

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

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

    .hero-slide {
        grid-template-columns: 1fr;
        overflow-y: auto;
    }

    .hero-poster-panel {
        display: none;
    }

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

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

    .detail-side {
        display: grid;
        grid-template-columns: 240px 1fr;
        gap: 20px;
    }
}

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

    .primary-nav {
        display: none;
    }

    .mobile-toggle {
        display: grid;
        place-items: center;
    }

    .header-inner {
        height: 64px;
    }

    .logo {
        font-size: 19px;
    }

    .hero {
        padding-top: 28px;
    }

    .hero-stage {
        min-height: 590px;
        border-radius: 28px;
    }

    .hero-slide {
        padding: 28px;
    }

    .hero-dots {
        left: 28px;
        bottom: 24px;
    }

    .search-ribbon form {
        grid-template-columns: 1fr;
    }

    .section-head {
        display: block;
    }

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

    .movie-info {
        padding: 13px;
    }

    .movie-title {
        font-size: 15px;
    }

    .rank-item {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .rank-thumb,
    .rank-action {
        display: none;
    }

    .filter-panel {
        grid-template-columns: 1fr;
    }

    .page-panel {
        padding: 24px;
    }

    .detail-card {
        padding: 18px;
    }

    .detail-side {
        display: block;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        padding: 32px 0;
    }
}

@media (max-width: 480px) {
    .movie-grid,
    .category-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .hero-stage {
        min-height: 660px;
    }

    .hero-title {
        font-size: 34px;
    }
}
