:root {
    --bg: #fff7ed;
    --surface: #ffffff;
    --surface-soft: #fffaf2;
    --text: #111827;
    --muted: #6b7280;
    --line: #e5e7eb;
    --red: #ef4444;
    --orange: #f97316;
    --green: #16a34a;
    --yellow: #f59e0b;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: linear-gradient(135deg, #f0fdf4 0%, #fff7ed 46%, #fff1f2 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.header-inner {
    width: min(1280px, calc(100% - 32px));
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.brand-icon {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border-radius: 16px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--red), var(--orange));
    box-shadow: 0 12px 24px rgba(239, 68, 68, 0.30);
}

.brand-text {
    display: grid;
    line-height: 1.2;
}

.brand-text strong {
    font-size: 20px;
    background: linear-gradient(90deg, #dc2626, #ea580c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-text small {
    color: var(--muted);
    font-size: 12px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-left: auto;
}

.nav-link {
    color: #374151;
    font-weight: 700;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--green);
}

.header-search,
.mobile-search {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-search input,
.mobile-search input,
.filter-bar input,
.filter-bar select {
    border: 1px solid #d1d5db;
    border-radius: 999px;
    background: #ffffff;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input {
    width: 230px;
    padding: 10px 15px;
}

.header-search input:focus,
.mobile-search input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18);
}

.header-search button,
.mobile-search button,
.btn-primary {
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 800;
    background: linear-gradient(135deg, var(--red), var(--orange));
    box-shadow: 0 14px 30px rgba(239, 68, 68, 0.26);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.header-search button:hover,
.mobile-search button:hover,
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(239, 68, 68, 0.34);
}

.menu-toggle {
    display: none;
    margin-left: auto;
    border: 0;
    border-radius: 12px;
    background: #f3f4f6;
    padding: 10px 12px;
}

.mobile-panel {
    display: none;
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 18px;
}

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

.mobile-panel nav,
.mobile-categories {
    display: grid;
    gap: 8px;
    margin-top: 14px;
}

.mobile-panel a {
    padding: 10px 12px;
    border-radius: 12px;
    background: #ffffff;
    color: #374151;
    font-weight: 700;
}

.hero {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: linear-gradient(135deg, #ef4444 0%, #f97316 52%, #db2777 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.28);
}

.hero-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(72px);
    opacity: 0.45;
    animation: pulse 3.6s ease-in-out infinite;
}

.hero-orb-one {
    width: 320px;
    height: 320px;
    top: 88px;
    left: 10%;
    background: #fde047;
}

.hero-orb-two {
    width: 420px;
    height: 420px;
    right: 8%;
    bottom: 40px;
    background: #fb7185;
    animation-delay: 1.2s;
}

.hero-stage {
    position: relative;
    z-index: 2;
    width: min(1280px, calc(100% - 32px));
    min-height: 620px;
    margin: 0 auto;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: center;
    gap: 52px;
    opacity: 0;
    transform: translateY(18px);
    pointer-events: none;
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.hero-kicker,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 14px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(8px);
    font-weight: 800;
    letter-spacing: 0.02em;
}

.section-kicker {
    color: #dc2626;
    background: #fee2e2;
}

.hero-copy h1 {
    margin: 18px 0 18px;
    color: #ffffff;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.hero-copy h1 span {
    display: block;
    margin-top: 8px;
    background: linear-gradient(90deg, #fef3c7, #fed7aa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-copy p {
    max-width: 720px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 20px;
}

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

.hero-tags span,
.tag-row span,
.detail-tags span {
    display: inline-flex;
    border-radius: 999px;
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.22);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

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

.btn-primary,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 28px;
}

.btn-ghost {
    border: 2px solid rgba(255, 255, 255, 0.52);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    font-weight: 800;
    backdrop-filter: blur(8px);
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.30);
    transform: translateY(-2px);
}

.hero-media {
    position: relative;
    overflow: hidden;
    min-height: 460px;
    border-radius: 34px;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.35);
    transform: rotate(1.5deg);
}

.hero-media img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
}

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

.hero-play,
.poster-play,
.player-play-icon {
    position: absolute;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #ef4444;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.26);
}

.hero-play {
    z-index: 2;
    width: 72px;
    height: 72px;
    right: 28px;
    bottom: 28px;
    font-size: 30px;
}

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

.hero-dot {
    width: 34px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.38);
    transition: width 0.2s ease, background 0.2s ease;
}

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

.section-wrap {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 64px 0;
}

.soft-section {
    background: linear-gradient(135deg, rgba(255, 247, 237, 0.85), rgba(240, 253, 244, 0.85));
}

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

.section-title-row.compact {
    align-items: center;
}

.section-title-row h2,
.page-hero h1,
.detail-header h1 {
    margin: 10px 0 4px;
    color: #1f2937;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.1;
}

.section-title-row p,
.page-hero p {
    margin: 0;
    color: var(--muted);
}

.text-link {
    color: #dc2626;
    font-weight: 800;
}

.text-link:hover {
    color: #16a34a;
}

.movie-grid {
    display: grid;
    gap: 24px;
}

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

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

.movie-card {
    min-width: 0;
}

.movie-card-link {
    display: grid;
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.movie-poster {
    position: relative;
    margin: 0;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #fee2e2;
}

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

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

.movie-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.movie-card-link:hover .movie-poster::after {
    opacity: 1;
}

.poster-play {
    z-index: 2;
    top: 50%;
    left: 50%;
    width: 54px;
    height: 54px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.86);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card-link:hover .poster-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.movie-info {
    display: grid;
    gap: 10px;
    padding: 18px;
}

.movie-info h3 {
    display: -webkit-box;
    min-height: 52px;
    margin: 0;
    overflow: hidden;
    color: #1f2937;
    font-size: 18px;
    line-height: 1.45;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.2s ease;
}

.movie-card-link:hover h3 {
    color: var(--green);
}

.movie-info p {
    display: -webkit-box;
    min-height: 44px;
    margin: 0;
    overflow: hidden;
    color: #6b7280;
    font-size: 14px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-meta,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #6b7280;
    font-size: 13px;
}

.movie-meta span,
.detail-meta span {
    border-radius: 999px;
    padding: 3px 8px;
    background: #f3f4f6;
}

.movie-info .tag-row span,
.ranking-row .tag-row span,
.detail-tags span {
    color: #16a34a;
    background: #dcfce7;
}

.genre-line {
    color: #9ca3af;
    font-size: 13px;
}

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

.category-preview-grid,
.category-large-grid {
    display: grid;
    gap: 20px;
}

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

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

.category-preview,
.category-card-large,
.ranking-panel,
.side-box,
.detail-main,
.detail-side {
    border: 1px solid rgba(229, 231, 235, 0.78);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.category-preview,
.category-card-large,
.ranking-panel,
.side-box {
    padding: 22px;
}

.category-preview-head,
.category-card-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.category-preview p,
.category-card-large p {
    margin: 0 0 18px;
    color: var(--muted);
}

.category-badge {
    display: inline-flex;
    width: fit-content;
    border-radius: 999px;
    padding: 7px 12px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
}

.badge-red { background: linear-gradient(135deg, #ef4444, #dc2626); }
.badge-orange { background: linear-gradient(135deg, #fb923c, #ea580c); }
.badge-green { background: linear-gradient(135deg, #22c55e, #16a34a); }
.badge-yellow { background: linear-gradient(135deg, #facc15, #f59e0b); }
.badge-blue { background: linear-gradient(135deg, #60a5fa, #2563eb); }
.badge-pink { background: linear-gradient(135deg, #fb7185, #db2777); }
.badge-purple { background: linear-gradient(135deg, #a78bfa, #7c3aed); }
.badge-cyan { background: linear-gradient(135deg, #22d3ee, #0891b2); }
.badge-slate { background: linear-gradient(135deg, #64748b, #334155); }
.badge-violet { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.badge-emerald { background: linear-gradient(135deg, #34d399, #059669); }

.mini-card-grid {
    display: grid;
    gap: 10px;
}

.mini-card {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 8px;
    border-radius: 14px;
    background: #f9fafb;
    transition: background 0.2s ease, transform 0.2s ease;
}

.mini-card:hover {
    background: #ecfdf5;
    transform: translateX(4px);
}

.mini-card img {
    width: 64px;
    height: 48px;
    border-radius: 10px;
    object-fit: cover;
}

.mini-card span {
    min-width: 0;
}

.mini-card strong,
.mini-card em {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mini-card em {
    color: #6b7280;
    font-size: 12px;
    font-style: normal;
}

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

.rank-list a {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 12px;
    border-radius: 14px;
    background: #f9fafb;
}

.rank-list a:hover {
    background: #fff7ed;
}

.rank-num,
.ranking-number {
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--red), var(--orange));
    font-weight: 900;
}

.rank-num {
    width: 34px;
    height: 34px;
}

.rank-title {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 800;
}

.rank-list em {
    grid-column: 2;
    color: #6b7280;
    font-size: 12px;
    font-style: normal;
}

.page-hero {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 82px max(16px, calc((100% - 1280px) / 2)) 76px;
    color: #ffffff;
    background: linear-gradient(135deg, #ef4444, #f97316, #db2777);
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.22), transparent 34%), rgba(0, 0, 0, 0.20);
}

.page-hero > div {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.page-hero h1 {
    color: #ffffff;
}

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

.filter-bar {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) 180px 160px 150px;
    gap: 12px;
    margin-bottom: 26px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.filter-bar input,
.filter-bar select {
    width: 100%;
    min-height: 46px;
    padding: 0 15px;
}

.detail-layout {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 28px 0 20px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    margin: 0 0 18px;
    color: #6b7280;
    font-size: 14px;
}

.breadcrumb a {
    color: #dc2626;
    font-weight: 700;
}

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

.detail-main {
    overflow: hidden;
}

.player-section {
    padding: 20px;
    background: #111827;
}

.player-frame {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #000000;
    aspect-ratio: 16 / 9;
}

.player-frame video,
.player-overlay,
.player-overlay img {
    width: 100%;
    height: 100%;
}

.player-frame video {
    object-fit: contain;
    background: #000000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    border: 0;
    padding: 0;
    cursor: pointer;
    background: #000000;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-overlay img {
    object-fit: cover;
    opacity: 0.70;
}

.player-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0, rgba(0, 0, 0, 0.35) 58%, rgba(0, 0, 0, 0.64) 100%);
}

.player-play-icon {
    z-index: 3;
    top: 50%;
    left: 50%;
    width: 82px;
    height: 82px;
    font-size: 32px;
    transform: translate(-50%, -50%);
}

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

.detail-header,
.detail-content {
    padding: 28px;
    background: #ffffff;
}

.detail-header p {
    margin: 16px 0;
    color: #4b5563;
    font-size: 18px;
}

.detail-content {
    border-top: 1px solid var(--line);
}

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

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

.detail-content p {
    margin: 0;
    color: #374151;
    font-size: 17px;
}

.detail-tags {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.detail-tags h3 {
    margin: 0 0 10px;
}

.detail-tags p {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.detail-side {
    padding: 18px;
}

.detail-poster {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.side-box {
    margin-top: 18px;
}

.side-box h2 {
    margin: 0 0 14px;
    font-size: 22px;
}

.side-link {
    display: block;
    margin-top: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    color: #16a34a;
    background: #ecfdf5;
    font-weight: 800;
}

.related-wrap {
    padding-top: 32px;
}

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

.ranking-row a {
    display: grid;
    grid-template-columns: 58px 124px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    padding: 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ranking-row a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.ranking-number {
    width: 48px;
    height: 48px;
}

.ranking-row img {
    width: 124px;
    height: 86px;
    border-radius: 14px;
    object-fit: cover;
}

.ranking-copy {
    display: grid;
    gap: 5px;
    min-width: 0;
}

.ranking-copy strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 18px;
}

.ranking-copy em,
.ranking-copy small {
    color: #6b7280;
    font-style: normal;
}

.site-footer {
    margin-top: 40px;
    color: #d1d5db;
    background: linear-gradient(135deg, #111827, #1f2937);
}

.footer-inner {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 48px 0;
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) 1fr 1fr;
    gap: 32px;
}

.footer-logo .brand-text strong {
    color: #ffffff;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

.footer-brand p {
    max-width: 520px;
    color: #9ca3af;
}

.footer-block h3 {
    margin: 0 0 12px;
    color: #ffffff;
}

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

.footer-block a:hover {
    color: #4ade80;
}

.footer-bottom {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    color: #9ca3af;
    font-size: 14px;
}

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

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.42;
    }

    50% {
        transform: scale(1.08);
        opacity: 0.62;
    }
}

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

    .menu-toggle {
        display: inline-flex;
    }

    .hero-slide,
    .detail-grid,
    .two-column-section {
        grid-template-columns: 1fr;
    }

    .hero-stage,
    .hero {
        min-height: 820px;
    }

    .hero-media {
        min-height: 330px;
    }

    .hero-media img {
        min-height: 330px;
    }

    .movie-grid-4,
    .movie-grid-3,
    .category-preview-grid,
    .category-large-grid,
    .footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 720px) {
    .header-inner {
        min-height: 68px;
    }

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

    .hero,
    .hero-stage {
        min-height: 760px;
    }

    .hero-slide {
        gap: 26px;
        padding: 28px 0 72px;
    }

    .hero-copy p {
        font-size: 17px;
    }

    .hero-media {
        min-height: 260px;
        border-radius: 24px;
    }

    .hero-media img {
        min-height: 260px;
    }

    .movie-grid-4,
    .movie-grid-3,
    .category-preview-grid,
    .category-large-grid,
    .detail-tags,
    .footer-inner,
    .filter-bar {
        grid-template-columns: 1fr;
    }

    .section-title-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .ranking-row a {
        grid-template-columns: 46px 88px minmax(0, 1fr);
        gap: 12px;
    }

    .ranking-number {
        width: 40px;
        height: 40px;
    }

    .ranking-row img {
        width: 88px;
        height: 68px;
    }

    .detail-header,
    .detail-content,
    .player-section {
        padding: 16px;
    }
}
