:root {
    --bg: #f8fafc;
    --ink: #0f172a;
    --muted: #64748b;
    --line: #e2e8f0;
    --panel: #ffffff;
    --dark: #0f172a;
    --dark-soft: #1e293b;
    --cyan: #06b6d4;
    --blue: #2563eb;
    --pink: #ec4899;
    --shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
    --radius: 24px;
}

html {
    scroll-behavior: smooth;
}

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

body.is-menu-open {
    overflow: hidden;
}

img {
    display: block;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(15, 23, 42, 0.92);
    color: #ffffff;
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-shell {
    max-width: 1280px;
    margin: 0 auto;
    min-height: 72px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 10px 28px rgba(6, 182, 212, 0.34);
}

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

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

.nav-link,
.mobile-link {
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.78);
    transition: 0.2s ease;
}

.nav-link {
    padding: 9px 14px;
    font-size: 15px;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.11);
}

.header-search {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.header-search input,
.mobile-search input,
.quick-search-card input,
.search-panel input,
.search-panel select,
.local-filter input {
    border: 0;
    outline: 0;
    color: inherit;
    font: inherit;
}

.header-search input {
    width: 210px;
    padding: 9px 10px;
    color: #ffffff;
    background: transparent;
}

.header-search input::placeholder,
.mobile-search input::placeholder {
    color: rgba(255, 255, 255, 0.58);
}

.header-search button,
.mobile-search button,
.quick-search-card button,
.search-panel button {
    border: 0;
    cursor: pointer;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.header-search button:hover,
.mobile-search button:hover,
.quick-search-card button:hover,
.search-panel button:hover,
.primary-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 36px rgba(37, 99, 235, 0.28);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

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

.mobile-panel {
    display: none;
    padding: 0 24px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-panel.is-open {
    display: block;
}

.mobile-panel nav,
.mobile-cats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-width: 1280px;
    margin: 14px auto 0;
}

.mobile-link,
.mobile-cats a {
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.06);
}

.mobile-search {
    max-width: 1280px;
    margin: 18px auto 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.mobile-search input {
    border-radius: 16px;
    padding: 12px 14px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.mobile-search button {
    padding: 0 18px;
}

.home-hero {
    position: relative;
    min-height: 72vh;
    overflow: hidden;
    background: #020617;
}

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

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

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

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    filter: saturate(1.08) contrast(1.08);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 34%, rgba(6, 182, 212, 0.28), transparent 26%),
        linear-gradient(90deg, rgba(2, 6, 23, 0.95) 0%, rgba(15, 23, 42, 0.76) 38%, rgba(15, 23, 42, 0.22) 100%),
        linear-gradient(0deg, rgba(2, 6, 23, 0.78), rgba(2, 6, 23, 0.08));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    min-height: 72vh;
    margin: 0 auto;
    padding: 96px 24px 88px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
}

.eyebrow {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    color: #cffafe;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.35), rgba(37, 99, 235, 0.3));
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 14px;
    font-weight: 700;
}

.hero-content h1 {
    max-width: 760px;
    margin: 20px 0 18px;
    font-size: clamp(42px, 7vw, 82px);
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.hero-content p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(18px, 2.5vw, 24px);
    line-height: 1.65;
}

.hero-meta,
.detail-meta,
.movie-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.hero-meta {
    margin-top: 26px;
}

.hero-meta span,
.detail-meta span,
.movie-meta-line span {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.86);
    padding: 7px 12px;
    font-size: 13px;
}

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

.primary-btn,
.ghost-btn,
.text-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 800;
    transition: 0.2s ease;
}

.primary-btn {
    padding: 13px 24px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.ghost-btn {
    padding: 12px 22px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.ghost-btn.dark {
    color: var(--ink);
    background: #ffffff;
    border-color: var(--line);
}

.ghost-btn:hover {
    background: rgba(255, 255, 255, 0.22);
}

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

.hero-dot {
    width: 38px;
    height: 5px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.34);
}

.hero-dot.is-active {
    background: #ffffff;
}

.quick-search-section,
.content-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 56px 24px;
}

.quick-search-card {
    margin-top: -56px;
    position: relative;
    z-index: 8;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
    padding: 34px;
    display: grid;
    grid-template-columns: 1fr minmax(320px, 520px);
    gap: 24px;
    align-items: center;
    backdrop-filter: blur(16px);
}

.quick-search-card h2 {
    margin: 0 0 8px;
    font-size: 28px;
    font-weight: 900;
}

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

.quick-search-card form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
}

.quick-search-card input,
.local-filter input,
.search-panel input,
.search-panel select {
    width: 100%;
    border-radius: 999px;
    padding: 14px 18px;
    background: #f1f5f9;
    color: var(--ink);
    border: 1px solid var(--line);
}

.quick-search-card button,
.search-panel button {
    padding: 0 22px;
}

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

.section-heading h2 {
    margin: 0 0 8px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.section-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
}

.section-more,
.text-btn {
    color: var(--blue);
    font-weight: 800;
}

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

.category-card,
.category-overview-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    padding: 26px;
    color: #ffffff;
    min-height: 190px;
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.14);
    isolation: isolate;
}

.category-card::before,
.category-overview-card::before,
.category-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.95), rgba(37, 99, 235, 0.95));
}

.category-card::after,
.category-overview-card::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    right: -46px;
    bottom: -64px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
}

.category-card span,
.category-title-link {
    display: inline-block;
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 12px;
}

.category-card p,
.category-overview-card p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    margin: 0 0 18px;
}

.category-samples,
.overview-samples,
.footer-link-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.category-samples a,
.overview-samples a {
    position: relative;
    z-index: 2;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    font-size: 13px;
}

.accent-red::before { background: linear-gradient(135deg, #ef4444, #f97316); }
.accent-blue::before { background: linear-gradient(135deg, #2563eb, #06b6d4); }
.accent-cyan::before { background: linear-gradient(135deg, #0891b2, #2563eb); }
.accent-amber::before { background: linear-gradient(135deg, #f59e0b, #f97316); }
.accent-pink::before { background: linear-gradient(135deg, #ec4899, #be185d); }
.accent-purple::before { background: linear-gradient(135deg, #7c3aed, #2563eb); }
.accent-emerald::before { background: linear-gradient(135deg, #059669, #06b6d4); }
.accent-indigo::before { background: linear-gradient(135deg, #4f46e5, #06b6d4); }
.accent-green::before { background: linear-gradient(135deg, #16a34a, #65a30d); }
.accent-slate::before { background: linear-gradient(135deg, #334155, #0f172a); }
.accent-orange::before { background: linear-gradient(135deg, #ea580c, #f43f5e); }
.accent-teal::before { background: linear-gradient(135deg, #0d9488, #0369a1); }

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

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

.movie-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: var(--panel);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.86);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
}

.movie-poster {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: #0f172a;
}

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

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

.movie-poster::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 55%;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.74), transparent);
}

.poster-play,
.rank-badge {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    font-weight: 900;
}

.poster-play {
    right: 12px;
    bottom: 12px;
    padding: 8px 12px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    font-size: 13px;
}

.rank-badge {
    top: 12px;
    left: 12px;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.movie-meta-line {
    gap: 6px;
    margin-bottom: 10px;
}

.movie-meta-line span {
    color: #475569;
    background: #f1f5f9;
    padding: 5px 8px;
    font-size: 12px;
}

.movie-card h3 {
    margin: 0 0 9px;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 900;
}

.movie-card h3 a:hover {
    color: var(--blue);
}

.movie-card p {
    min-height: 48px;
    margin: 0 0 14px;
    color: var(--muted);
    line-height: 1.55;
    font-size: 14px;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.tag-row span {
    display: inline-flex;
    border-radius: 999px;
    padding: 5px 9px;
    color: #0369a1;
    background: #e0f2fe;
    font-size: 12px;
    font-weight: 700;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 26px;
    align-items: start;
}

.rank-panel {
    position: sticky;
    top: 96px;
    padding: 22px;
    border-radius: var(--radius);
    background: #0f172a;
    color: #ffffff;
    box-shadow: var(--shadow);
}

.rank-panel h2 {
    margin: 0 0 18px;
    font-size: 24px;
    font-weight: 900;
}

.rank-line {
    display: grid;
    grid-template-columns: 34px 54px 1fr;
    gap: 12px;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.rank-line img {
    width: 54px;
    height: 72px;
    object-fit: cover;
    border-radius: 12px;
}

.rank-number {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    font-weight: 900;
}

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

.rank-text strong {
    color: #ffffff;
    font-size: 15px;
}

.rank-text em {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
    font-style: normal;
}

.page-hero {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: #0f172a;
    padding: 72px 24px;
    isolation: isolate;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 18% 8%, rgba(6, 182, 212, 0.38), transparent 30%),
        radial-gradient(circle at 78% 25%, rgba(236, 72, 153, 0.22), transparent 24%);
}

.page-hero > * {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero h1 {
    margin: 18px auto 18px;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.page-hero p {
    max-width: 780px;
    margin-top: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
    font-size: 18px;
}

.category-page-hero {
    min-height: 330px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.local-filter {
    width: min(520px, 100%);
    margin-top: 18px;
}

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

.category-overview-card {
    min-height: 260px;
}

.overview-samples {
    margin-bottom: 20px;
}

.category-overview-card .text-btn {
    position: relative;
    z-index: 3;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    padding: 10px 14px;
}

.ranking-block {
    margin-bottom: 56px;
}

.ranking-block h2 {
    margin: 0 0 20px;
    font-size: 28px;
    font-weight: 900;
}

.detail-main {
    background:
        radial-gradient(circle at top right, rgba(6, 182, 212, 0.13), transparent 26%),
        linear-gradient(180deg, #f8fafc, #ffffff);
}

.breadcrumb {
    max-width: 1280px;
    margin: 0 auto;
    padding: 28px 24px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: 14px;
}

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

.detail-hero {
    max-width: 1280px;
    margin: 0 auto;
    padding: 42px 24px 52px;
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 42px;
    align-items: center;
}

.detail-poster {
    border-radius: 30px;
    overflow: hidden;
    background: #0f172a;
    box-shadow: var(--shadow);
}

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

.detail-info h1 {
    margin: 18px 0;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1.02;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.detail-line {
    max-width: 760px;
    color: #334155;
    font-size: 20px;
    line-height: 1.75;
}

.detail-meta {
    margin-top: 22px;
}

.detail-meta span {
    color: #0f172a;
    background: #ffffff;
    border: 1px solid var(--line);
}

.detail-tags {
    margin-top: 20px;
}

.player-section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px 56px;
}

.player-box {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #020617;
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 9;
}

.player-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #020617;
}

.play-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    border: 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #ffffff;
    background:
        radial-gradient(circle at center, rgba(6, 182, 212, 0.22), transparent 34%),
        linear-gradient(180deg, rgba(2, 6, 23, 0.2), rgba(2, 6, 23, 0.72));
}

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

.play-icon {
    width: 78px;
    height: 78px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 22px 50px rgba(6, 182, 212, 0.35);
    position: relative;
}

.play-icon::before {
    content: "";
    position: absolute;
    left: 31px;
    top: 23px;
    border-left: 24px solid #ffffff;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
}

.play-overlay strong {
    font-size: 20px;
}

.detail-content-grid {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px 42px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.story-card {
    border-radius: var(--radius);
    padding: 30px;
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.story-card h2 {
    margin: 0 0 16px;
    font-size: 26px;
    font-weight: 900;
}

.story-card p {
    margin: 0;
    color: #334155;
    line-height: 1.92;
    font-size: 16px;
}

.detail-neighbors {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.detail-neighbors a {
    border-radius: 18px;
    padding: 18px;
    background: #ffffff;
    border: 1px solid var(--line);
    color: var(--blue);
    font-weight: 800;
}

.related-section {
    padding-top: 30px;
}

.search-panel {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) 180px 180px auto;
    gap: 12px;
    margin-top: 24px;
}

.search-panel button {
    padding: 0 18px;
}

.search-summary {
    margin-bottom: 20px;
    color: var(--muted);
    font-weight: 800;
}

.site-footer {
    color: rgba(255, 255, 255, 0.78);
    background: #0f172a;
    margin-top: 42px;
}

.footer-shell {
    max-width: 1280px;
    margin: 0 auto;
    padding: 54px 24px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 34px;
}

.footer-brand p {
    max-width: 420px;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.8;
}

.footer-links h2 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 900;
}

.footer-link-grid a {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    padding: 18px;
    color: rgba(255, 255, 255, 0.45);
}

.is-filter-hidden {
    display: none !important;
}

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

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

    .quick-search-card,
    .split-section,
    .detail-content-grid,
    .footer-shell {
        grid-template-columns: 1fr;
    }

    .rank-panel {
        position: static;
    }

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

@media (max-width: 760px) {
    .nav-shell {
        min-height: 64px;
        padding: 0 16px;
    }

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

    .home-hero,
    .hero-content {
        min-height: 78vh;
    }

    .hero-content {
        padding: 86px 18px 80px;
    }

    .hero-meta span:nth-child(4) {
        display: none;
    }

    .quick-search-section,
    .content-section,
    .page-hero {
        padding-left: 16px;
        padding-right: 16px;
    }

    .quick-search-card {
        margin-top: -38px;
        padding: 22px;
    }

    .quick-search-card form,
    .search-panel,
    .detail-neighbors {
        grid-template-columns: 1fr;
    }

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

    .section-heading {
        display: block;
    }

    .section-more {
        display: inline-flex;
        margin-top: 14px;
    }

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

    .movie-card p {
        display: none;
    }

    .detail-hero {
        grid-template-columns: 1fr;
        padding: 28px 16px 36px;
        gap: 24px;
    }

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

    .player-section,
    .detail-content-grid,
    .breadcrumb,
    .detail-neighbors {
        padding-left: 16px;
        padding-right: 16px;
    }

    .player-box {
        border-radius: 20px;
    }

    .story-card {
        padding: 22px;
    }

    .footer-shell {
        padding: 42px 16px;
    }
}
