:root {
    --color-pink: #ec4899;
    --color-rose: #f43f5e;
    --color-orange: #f97316;
    --color-amber: #f59e0b;
    --color-yellow: #eab308;
    --color-ink: #1f2937;
    --color-muted: #6b7280;
    --color-line: rgba(236, 72, 153, 0.16);
    --color-card: rgba(255, 255, 255, 0.88);
    --shadow-soft: 0 24px 70px rgba(236, 72, 153, 0.12);
    --shadow-card: 0 16px 45px rgba(249, 115, 22, 0.12);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--color-ink);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    background:
        radial-gradient(circle at 12% 8%, rgba(236, 72, 153, 0.17), transparent 30%),
        radial-gradient(circle at 88% 12%, rgba(250, 204, 21, 0.22), transparent 28%),
        linear-gradient(135deg, #fff1f7 0%, #fff7ed 48%, #fefce8 100%);
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--color-line);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 10px 35px rgba(236, 72, 153, 0.08);
    backdrop-filter: blur(18px);
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: min(1240px, calc(100% - 32px));
    min-height: 72px;
    margin: 0 auto;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    font-size: clamp(20px, 2.1vw, 28px);
    font-weight: 900;
    letter-spacing: -0.04em;
}

.brand-mark {
    position: relative;
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(135deg, var(--color-pink), var(--color-orange), var(--color-yellow));
    box-shadow: 0 12px 30px rgba(236, 72, 153, 0.38);
}

.brand-mark::after {
    position: absolute;
    inset: -8px;
    z-index: -1;
    border-radius: 20px;
    background: rgba(236, 72, 153, 0.28);
    filter: blur(18px);
    content: "";
}

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

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

.nav-links a {
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    position: absolute;
    right: 0;
    bottom: 1px;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--color-pink), var(--color-orange));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
    content: "";
}

.nav-links a:hover,
.nav-links a.is-active {
    color: var(--color-pink);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
    transform: scaleX(1);
}

.header-search {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 1 280px;
    padding: 6px;
    border: 1px solid rgba(236, 72, 153, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
}

.header-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    color: var(--color-ink);
    background: transparent;
    padding: 8px 10px;
}

.header-search button,
.primary-button,
.secondary-button,
.filter-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.header-search button,
.primary-button,
.filter-button {
    color: #fff;
    background: linear-gradient(135deg, var(--color-pink), var(--color-orange));
    box-shadow: 0 12px 28px rgba(236, 72, 153, 0.25);
}

.header-search button {
    padding: 8px 16px;
}

.primary-button,
.secondary-button {
    min-height: 46px;
    padding: 0 22px;
}

.secondary-button {
    color: var(--color-pink);
    border: 1px solid rgba(236, 72, 153, 0.25);
    background: rgba(255, 255, 255, 0.78);
}

.primary-button:hover,
.secondary-button:hover,
.filter-button:hover,
.header-search button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(249, 115, 22, 0.28);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    color: var(--color-pink);
    background: rgba(236, 72, 153, 0.1);
    cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
    display: block;
    width: 20px;
    height: 2px;
    margin: auto;
    border-radius: 999px;
    background: currentColor;
    content: "";
}

.menu-toggle span::before {
    transform: translateY(-7px);
}

.menu-toggle span::after {
    transform: translateY(5px);
}

.page-main {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
}

.hero-carousel {
    position: relative;
    width: min(1360px, calc(100% - 32px));
    min-height: clamp(620px, 78vh, 840px);
    margin: 28px auto 48px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.46);
    border-radius: 36px;
    background: #111827;
    box-shadow: var(--shadow-soft);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
    align-items: center;
    gap: clamp(24px, 5vw, 64px);
    padding: clamp(32px, 6vw, 80px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.7s ease, transform 0.7s ease;
    transform: scale(1.02);
}

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

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 68% 38%, rgba(236, 72, 153, 0.24), transparent 34%),
        linear-gradient(135deg, rgba(17, 24, 39, 0.72), rgba(136, 19, 55, 0.55));
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.36;
    filter: saturate(1.1) blur(1px);
}

.hero-background::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.92) 0%, rgba(17, 24, 39, 0.66) 44%, rgba(17, 24, 39, 0.42) 100%),
        linear-gradient(0deg, rgba(17, 24, 39, 0.76), rgba(17, 24, 39, 0.04));
    content: "";
}

.hero-content,
.hero-poster-link {
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    color: #fff7ed;
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(16px);
    font-size: 14px;
    font-weight: 800;
}

.hero-title {
    max-width: 780px;
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(42px, 7vw, 82px);
    font-weight: 950;
    line-height: 0.95;
    letter-spacing: -0.07em;
}

.hero-title span {
    background: linear-gradient(90deg, #f9a8d4, #fdba74, #fde68a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-movie-title {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 900;
    letter-spacing: -0.04em;
}

.hero-summary {
    max-width: 700px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.85;
}

.hero-actions,
.detail-actions,
.section-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.hero-tags,
.meta-chips,
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0 26px;
}

.hero-tags span,
.meta-chips span,
.tag-list span,
.card-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.hero-tags span {
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
}

.meta-chips span,
.tag-list span,
.card-tags span {
    color: #be185d;
    background: rgba(252, 231, 243, 0.9);
}

.hero-poster-link {
    justify-self: center;
    width: min(380px, 100%);
    transform: rotate(2deg);
    transition: transform 0.35s ease;
}

.hero-poster-link:hover {
    transform: rotate(0deg) translateY(-8px);
}

.hero-poster {
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border: 10px solid rgba(255, 255, 255, 0.18);
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.44), rgba(249, 115, 22, 0.34));
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.36);
}

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

.hero-dots {
    position: absolute;
    right: clamp(22px, 5vw, 70px);
    bottom: clamp(22px, 5vw, 54px);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.hero-dots button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dots button.is-active {
    width: 34px;
    background: linear-gradient(90deg, var(--color-pink), var(--color-orange));
}

.section-block {
    margin: 44px 0;
}

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

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

.section-title,
.page-title {
    margin: 0;
    color: #111827;
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 950;
    line-height: 1.05;
    letter-spacing: -0.06em;
}

.section-desc,
.page-desc {
    max-width: 760px;
    margin: 10px 0 0;
    color: var(--color-muted);
    font-size: 16px;
    line-height: 1.8;
}

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

.movie-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(236, 72, 153, 0.12);
    border-radius: var(--radius-lg);
    background: var(--color-card);
    box-shadow: var(--shadow-card);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
    border-color: rgba(236, 72, 153, 0.28);
    transform: translateY(-7px);
    box-shadow: 0 28px 60px rgba(236, 72, 153, 0.18);
}

.poster-wrap {
    position: relative;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.28), rgba(249, 115, 22, 0.22), rgba(250, 204, 21, 0.2));
}

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

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

.poster-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    display: inline-flex;
    padding: 5px 9px;
    border-radius: 999px;
    color: #fff;
    background: rgba(17, 24, 39, 0.68);
    backdrop-filter: blur(12px);
    font-size: 12px;
    font-weight: 900;
}

.card-body {
    padding: 16px;
}

.card-title {
    display: -webkit-box;
    min-height: 48px;
    margin: 0 0 8px;
    overflow: hidden;
    color: #111827;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.32;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-title a:hover {
    color: var(--color-pink);
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 700;
}

.card-desc {
    display: -webkit-box;
    min-height: 66px;
    margin: 0 0 12px;
    overflow: hidden;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.58;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-top: 10px;
    border-top: 1px solid rgba(236, 72, 153, 0.11);
}

.card-link {
    color: var(--color-pink);
    font-size: 14px;
    font-weight: 900;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

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

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 178px;
    padding: 24px;
    border: 1px solid rgba(236, 72, 153, 0.14);
    border-radius: 26px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 237, 0.76)),
        radial-gradient(circle at 84% 16%, rgba(236, 72, 153, 0.22), transparent 42%);
    box-shadow: var(--shadow-card);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(249, 115, 22, 0.16);
}

.category-card h2,
.category-card h3 {
    margin: 0 0 10px;
    color: #111827;
    font-size: 24px;
    font-weight: 950;
    letter-spacing: -0.04em;
}

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

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

.page-hero {
    margin: 34px 0 30px;
    padding: clamp(28px, 5vw, 56px);
    border: 1px solid rgba(236, 72, 153, 0.14);
    border-radius: 32px;
    background:
        radial-gradient(circle at 12% 12%, rgba(236, 72, 153, 0.18), transparent 38%),
        radial-gradient(circle at 88% 24%, rgba(249, 115, 22, 0.16), transparent 36%),
        rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-soft);
}

.filter-panel {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, minmax(150px, 0.5fr));
    gap: 12px;
    margin: 24px 0 28px;
    padding: 14px;
    border: 1px solid rgba(236, 72, 153, 0.14);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 16px 45px rgba(236, 72, 153, 0.08);
}

.filter-panel input,
.filter-panel select {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(236, 72, 153, 0.16);
    border-radius: 999px;
    outline: 0;
    color: var(--color-ink);
    background: #fff;
    padding: 0 16px;
}

.filter-button {
    min-height: 46px;
    padding: 0 18px;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 76px 112px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 14px;
    border: 1px solid rgba(236, 72, 153, 0.12);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-card);
}

.rank-number {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--color-pink), var(--color-orange));
    font-size: 22px;
    font-weight: 950;
    box-shadow: 0 15px 30px rgba(236, 72, 153, 0.25);
}

.rank-cover {
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.24), rgba(249, 115, 22, 0.22));
}

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

.rank-content h2,
.rank-content h3 {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 950;
    letter-spacing: -0.03em;
}

.rank-content p {
    margin: 0;
    color: var(--color-muted);
    line-height: 1.65;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 28px;
    align-items: start;
    margin: 34px 0 48px;
}

.watch-panel,
.detail-card,
.detail-side,
.related-section {
    border: 1px solid rgba(236, 72, 153, 0.14);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow-card);
}

.watch-panel {
    overflow: hidden;
    margin-bottom: 24px;
    background: #111827;
}

.video-shell {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #0f172a;
}

.video-shell video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #0f172a;
}

.play-layer {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    color: #fff;
    background:
        radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.22), transparent 34%),
        linear-gradient(135deg, rgba(17, 24, 39, 0.42), rgba(17, 24, 39, 0.74));
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.play-layer.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.play-layer-inner {
    display: grid;
    gap: 12px;
    justify-items: center;
    text-align: center;
}

.play-circle {
    display: grid;
    width: 86px;
    height: 86px;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--color-pink), var(--color-orange));
    box-shadow: 0 25px 60px rgba(236, 72, 153, 0.38);
    font-size: 34px;
    transform: translateZ(0);
}

.play-layer strong {
    font-size: 20px;
    font-weight: 950;
    letter-spacing: 0.02em;
}

.detail-card {
    padding: clamp(24px, 4vw, 42px);
}

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

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

.detail-title {
    margin: 0;
    color: #111827;
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 950;
    line-height: 1.05;
    letter-spacing: -0.06em;
}

.detail-lead {
    margin: 20px 0 24px;
    color: #374151;
    font-size: 19px;
    line-height: 1.9;
}

.detail-text h2,
.related-section h2,
.detail-side h2 {
    margin: 28px 0 12px;
    color: #111827;
    font-size: 26px;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.detail-text p {
    margin: 0 0 16px;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.95;
    white-space: pre-line;
}

.detail-side {
    padding: 18px;
}

.detail-poster {
    overflow: hidden;
    aspect-ratio: 2 / 3;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.25), rgba(249, 115, 22, 0.24));
}

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

.side-list {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.side-list a {
    display: block;
    padding: 12px;
    border-radius: 14px;
    color: #4b5563;
    background: rgba(252, 231, 243, 0.52);
    font-weight: 800;
}

.side-list a:hover {
    color: var(--color-pink);
    background: rgba(252, 231, 243, 0.92);
}

.related-section {
    margin: 26px 0 0;
    padding: clamp(20px, 4vw, 34px);
}

.related-section h2 {
    margin-top: 0;
}

.empty-state {
    display: none;
    padding: 28px;
    border-radius: 22px;
    color: var(--color-muted);
    background: rgba(255, 255, 255, 0.82);
    text-align: center;
    font-weight: 800;
}

.site-footer {
    margin-top: 70px;
    border-top: 1px solid rgba(236, 72, 153, 0.18);
    background: linear-gradient(90deg, rgba(252, 231, 243, 0.82), rgba(255, 237, 213, 0.82), rgba(254, 249, 195, 0.82));
}

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

.footer-inner h2,
.footer-inner h3 {
    margin: 0 0 12px;
    color: #111827;
    font-weight: 950;
}

.footer-inner p,
.footer-inner a {
    color: #6b7280;
    line-height: 1.8;
}

.footer-links {
    display: grid;
    gap: 8px;
}

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

.copyright {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 28px;
    border-top: 1px solid rgba(236, 72, 153, 0.15);
    color: #6b7280;
    text-align: center;
    font-size: 14px;
}

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

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

@media (max-width: 920px) {
    .site-nav {
        min-height: 66px;
    }

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

    .nav-links {
        position: fixed;
        top: 66px;
        right: 16px;
        left: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px;
        border: 1px solid rgba(236, 72, 153, 0.16);
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 28px 60px rgba(236, 72, 153, 0.18);
    }

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

    .nav-links a {
        padding: 13px 14px;
        border-radius: 14px;
    }

    .nav-links a:hover,
    .nav-links a.is-active {
        background: rgba(252, 231, 243, 0.72);
    }

    .nav-links a::after {
        display: none;
    }

    .header-search {
        display: none;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        align-content: center;
        padding: 30px;
    }

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

    .hero-carousel {
        min-height: 680px;
        border-radius: 28px;
    }

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

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

    .detail-side {
        order: -1;
    }

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

@media (max-width: 720px) {
    .page-main,
    .site-nav,
    .footer-inner,
    .copyright,
    .hero-carousel {
        width: min(100% - 20px, 1240px);
    }

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

    .hero-carousel {
        margin-top: 16px;
        min-height: 620px;
    }

    .hero-title {
        font-size: clamp(38px, 12vw, 58px);
    }

    .hero-movie-title {
        font-size: 28px;
    }

    .section-header {
        display: block;
    }

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

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

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

    .rank-item {
        grid-template-columns: 54px 76px minmax(0, 1fr);
        gap: 12px;
    }

    .rank-number {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        font-size: 18px;
    }

    .rank-item .primary-button {
        grid-column: 1 / -1;
    }

    .card-body {
        padding: 12px;
    }

    .card-title {
        min-height: 42px;
        font-size: 16px;
    }

    .card-desc {
        min-height: 60px;
        font-size: 13px;
    }

    .play-circle {
        width: 72px;
        height: 72px;
        font-size: 28px;
    }
}
