body {
    min-height: 100vh;
    background: #f6f7fb;
    color: #111827;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

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

main {
    overflow: hidden;
}

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: background 0.28s ease, box-shadow 0.28s ease, backdrop-filter 0.28s ease;
}

.site-header.is-scrolled,
.inner-page .site-header,
.detail-page .site-header {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(18px);
}

.nav-shell {
    width: min(1240px, calc(100% - 32px));
    height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 23px;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981, #14b8a6);
    box-shadow: 0 15px 28px rgba(16, 185, 129, 0.32);
}

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

.brand-text strong {
    font-size: 20px;
    font-weight: 850;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.brand-text small {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
}

.site-header.is-scrolled .brand-text strong,
.inner-page .brand-text strong,
.detail-page .brand-text strong {
    color: #111827;
}

.site-header.is-scrolled .brand-text small,
.inner-page .brand-text small,
.detail-page .brand-text small {
    color: #64748b;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.nav-links a {
    padding: 10px 12px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-1px);
}

.site-header.is-scrolled .nav-links a,
.inner-page .nav-links a,
.detail-page .nav-links a {
    color: #334155;
}

.site-header.is-scrolled .nav-links a:hover,
.site-header.is-scrolled .nav-links a.active,
.inner-page .nav-links a:hover,
.inner-page .nav-links a.active,
.detail-page .nav-links a:hover,
.detail-page .nav-links a.active {
    color: #ffffff;
    background: #10b981;
}

.nav-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.nav-search input {
    width: 180px;
    background: transparent;
    outline: none;
    color: #ffffff;
    padding: 8px 6px 8px 12px;
    font-size: 14px;
}

.nav-search input::placeholder {
    color: rgba(255, 255, 255, 0.72);
}

.nav-search button,
.big-search button,
.inline-search button {
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #10b981, #14b8a6);
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(16, 185, 129, 0.28);
}

.nav-search button {
    padding: 8px 14px;
    font-size: 13px;
}

.site-header.is-scrolled .nav-search,
.inner-page .nav-search,
.detail-page .nav-search {
    background: #f1f5f9;
    border-color: #e2e8f0;
}

.site-header.is-scrolled .nav-search input,
.inner-page .nav-search input,
.detail-page .nav-search input {
    color: #111827;
}

.site-header.is-scrolled .nav-search input::placeholder,
.inner-page .nav-search input::placeholder,
.detail-page .nav-search input::placeholder {
    color: #94a3b8;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
}

.site-header.is-scrolled .menu-toggle,
.inner-page .menu-toggle,
.detail-page .menu-toggle {
    background: #f1f5f9;
}

.site-header.is-scrolled .menu-toggle span,
.inner-page .menu-toggle span,
.detail-page .menu-toggle span {
    background: #0f172a;
}

.mobile-menu {
    display: none;
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto 12px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.18);
}

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

.mobile-menu a {
    padding: 12px 14px;
    border-radius: 12px;
    color: #334155;
    font-weight: 800;
}

.mobile-menu a.active,
.mobile-menu a:hover {
    color: #ffffff;
    background: #10b981;
}

.hero-section {
    position: relative;
    min-height: 720px;
    background: #020617;
}

.hero-track,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-bg,
.detail-bg,
.page-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 72% 28%, rgba(16, 185, 129, 0.38), transparent 34%), linear-gradient(90deg, rgba(2, 6, 23, 0.98) 0%, rgba(2, 6, 23, 0.78) 42%, rgba(2, 6, 23, 0.34) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    min-height: 720px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 0 86px;
    max-width: 760px;
    margin-left: max(16px, calc((100vw - 1180px) / 2));
}

.eyebrow {
    display: inline-flex;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow.dark {
    color: #047857;
    background: #d1fae5;
    border-color: #a7f3d0;
}

.hero-content h1 {
    margin: 20px 0 18px;
    color: #ffffff;
    font-size: clamp(44px, 7vw, 86px);
    line-height: 0.96;
    font-weight: 900;
    letter-spacing: -0.07em;
    text-shadow: 0 28px 60px rgba(0, 0, 0, 0.4);
}

.hero-content p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(17px, 2.2vw, 23px);
    line-height: 1.75;
}

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

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

.hero-tags span,
.tag-list span,
.meta-pills span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.hero-tags span {
    padding: 8px 12px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 900;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, #10b981, #14b8a6);
    box-shadow: 0 20px 38px rgba(16, 185, 129, 0.32);
}

.btn-ghost {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
}

.hero-poster {
    position: absolute;
    z-index: 3;
    right: max(28px, calc((100vw - 1180px) / 2));
    bottom: 78px;
    width: min(280px, 22vw);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 38px 90px rgba(0, 0, 0, 0.55);
    transform: rotate(3deg);
    transition: transform 0.28s ease;
}

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

.hero-poster img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
}

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

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

.hero-dots button.active {
    width: 58px;
    background: #10b981;
}

.search-panel {
    position: relative;
    z-index: 9;
    margin-top: -64px;
    padding: 28px;
    border-radius: 30px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    gap: 26px;
    align-items: center;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.16);
    backdrop-filter: blur(20px);
}

.search-panel h2,
.section-heading h2,
.story-panel h2 {
    margin: 12px 0 8px;
    font-size: clamp(26px, 4vw, 44px);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #0f172a;
}

.search-panel p,
.story-panel p,
.page-hero p,
.detail-copy .lead {
    color: #64748b;
    line-height: 1.8;
}

.big-search,
.inline-search {
    display: flex;
    gap: 10px;
    padding: 8px;
    border-radius: 999px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
}

.big-search input,
.inline-search input,
.local-filter input {
    width: 100%;
    border: 0;
    outline: none;
    background: transparent;
    color: #0f172a;
    font-size: 15px;
}

.big-search input,
.inline-search input {
    padding: 0 16px;
}

.big-search button,
.inline-search button {
    padding: 13px 20px;
    white-space: nowrap;
}

.section-block,
.split-section,
.detail-content,
.player-section {
    padding: 76px 0 0;
}

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

.section-heading.compact {
    display: block;
}

.section-heading.light h2 {
    color: #ffffff;
}

.section-heading a {
    color: #059669;
    font-weight: 900;
}

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

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

.movie-card {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.82);
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-7px);
    border-color: rgba(16, 185, 129, 0.45);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.14);
}

.poster-link {
    position: relative;
    display: block;
    overflow: hidden;
    background: #0f172a;
}

.poster-link img {
    width: 100%;
    aspect-ratio: 16 / 22;
    object-fit: cover;
    transition: transform 0.38s ease, filter 0.38s ease;
}

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

.poster-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(2, 6, 23, 0.74));
}

.card-year,
.rank-badge {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
}

.card-year {
    top: 14px;
    left: 14px;
    padding: 7px 10px;
    background: rgba(15, 23, 42, 0.62);
    backdrop-filter: blur(12px);
}

.rank-badge {
    right: 14px;
    top: 14px;
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    box-shadow: 0 14px 30px rgba(239, 68, 68, 0.32);
}

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

.card-meta {
    display: flex;
    gap: 10px;
    color: #059669;
    font-size: 12px;
    font-weight: 900;
}

.movie-card h3 {
    margin: 9px 0 8px;
    color: #0f172a;
    font-size: 19px;
    line-height: 1.25;
    font-weight: 900;
}

.movie-card p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
    min-height: 48px;
}

.tag-list {
    margin-top: 14px;
}

.tag-list span,
.meta-pills span {
    padding: 6px 9px;
    color: #047857;
    background: #d1fae5;
}

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

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

.movie-card-compact p {
    font-size: 13px;
}

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

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

.category-card {
    position: relative;
    min-height: 220px;
    padding: 24px;
    overflow: hidden;
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    color: #ffffff;
    box-shadow: 0 22px 58px rgba(15, 23, 42, 0.15);
    isolation: isolate;
}

.category-card img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.category-mask {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.82));
}

.category-card strong {
    font-size: 24px;
    font-weight: 900;
}

.category-card em {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-style: normal;
    line-height: 1.65;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 24px;
    padding-bottom: 86px;
}

.section-panel {
    padding: 28px;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.dark-panel {
    background: linear-gradient(150deg, #0f172a, #064e3b);
    border: 0;
}

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

.dark-panel .movie-card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

.dark-panel .movie-card h3,
.dark-panel .movie-card p {
    color: #ffffff;
}

.page-hero,
.detail-hero {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: center;
    color: #ffffff;
    background: #020617;
    padding-top: 96px;
    isolation: isolate;
}

.page-hero.slim {
    min-height: 390px;
    background: radial-gradient(circle at 72% 24%, rgba(16, 185, 129, 0.42), transparent 34%), linear-gradient(135deg, #020617, #064e3b);
}

.page-hero-mask,
.detail-mask {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.94), rgba(2, 6, 23, 0.66), rgba(2, 6, 23, 0.38));
}

.page-hero-bg,
.detail-bg {
    z-index: -2;
    filter: saturate(1.05);
}

.page-hero h1,
.detail-copy h1 {
    max-width: 900px;
    margin: 18px 0;
    font-size: clamp(40px, 6vw, 74px);
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.06em;
}

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

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
}

.breadcrumb a {
    color: #a7f3d0;
    font-weight: 800;
}

.inline-search {
    max-width: 560px;
    margin-top: 28px;
}

.local-filter {
    width: min(360px, 100%);
    padding: 13px 16px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
}

.local-filter.large {
    max-width: 640px;
    width: 100%;
    margin-top: 28px;
    background: rgba(255, 255, 255, 0.96);
}

.detail-hero {
    min-height: 620px;
}

.detail-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 58px;
    align-items: center;
}

.detail-copy .lead {
    max-width: 780px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 20px;
}

.detail-poster {
    display: block;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 36px 80px rgba(0, 0, 0, 0.44);
    transform: rotate(2deg);
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
}

.meta-pills {
    margin: 26px 0 4px;
}

.player-section {
    margin-top: -90px;
    position: relative;
    z-index: 3;
}

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

.player-shell video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #020617;
    cursor: pointer;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: #ffffff;
    border: 0;
    cursor: pointer;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.18), rgba(2, 6, 23, 0.34));
    transition: opacity 0.24s ease, visibility 0.24s ease;
}

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

.play-icon {
    width: 86px;
    height: 86px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 6px;
    color: #ffffff;
    font-size: 34px;
    background: linear-gradient(135deg, #10b981, #14b8a6);
    box-shadow: 0 18px 40px rgba(16, 185, 129, 0.42);
}

.player-overlay span:last-child {
    font-size: 18px;
    font-weight: 900;
}

.detail-content {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
    gap: 24px;
}

.story-panel {
    padding: 30px;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.accent-panel {
    background: linear-gradient(180deg, #ecfdf5, #ffffff);
}

.site-footer {
    margin-top: 90px;
    color: #cbd5e1;
    background: linear-gradient(135deg, #020617, #0f172a 52%, #064e3b);
}

.footer-grid {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 56px 0;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) 1fr 1fr;
    gap: 46px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 900;
}

.site-footer p {
    margin-top: 18px;
    max-width: 520px;
    line-height: 1.8;
}

.site-footer h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 14px;
}

.site-footer ul {
    display: grid;
    gap: 10px;
}

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

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

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

    .menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .hero-poster {
        display: none;
    }

    .hero-content {
        max-width: none;
        margin-left: auto;
    }

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

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

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

    .detail-poster {
        max-width: 280px;
    }
}

@media (max-width: 760px) {
    .nav-shell {
        height: 68px;
    }

    .brand-mark {
        width: 40px;
        height: 40px;
    }

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

    .hero-section,
    .hero-content {
        min-height: 640px;
    }

    .hero-content {
        padding-top: 104px;
    }

    .hero-content h1,
    .page-hero h1,
    .detail-copy h1 {
        letter-spacing: -0.04em;
    }

    .search-panel {
        margin-top: -34px;
        border-radius: 24px;
        padding: 22px;
    }

    .big-search,
    .inline-search {
        flex-direction: column;
        border-radius: 22px;
    }

    .big-search input,
    .inline-search input {
        min-height: 44px;
    }

    .movie-grid,
    .compact-grid,
    .category-grid,
    .category-grid-large,
    .dark-panel .rank-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

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

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

    .movie-card p {
        font-size: 13px;
        min-height: 0;
    }

    .section-heading {
        display: block;
    }

    .local-filter {
        margin-top: 14px;
        width: 100%;
    }

    .section-block,
    .split-section,
    .detail-content,
    .player-section {
        padding-top: 52px;
    }

    .page-hero,
    .detail-hero {
        min-height: 510px;
    }

    .detail-poster {
        display: none;
    }

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

    .player-shell {
        border-radius: 22px;
    }

    .play-icon {
        width: 68px;
        height: 68px;
        font-size: 28px;
    }

    .story-panel,
    .section-panel {
        padding: 22px;
        border-radius: 24px;
    }

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

@media (max-width: 480px) {
    .page-shell,
    .nav-shell,
    .mobile-menu,
    .footer-grid {
        width: min(100% - 22px, 1180px);
    }

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

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}
