:root {
    --rose-50: #fff1f2;
    --rose-100: #ffe4e6;
    --rose-500: #f43f5e;
    --rose-600: #e11d48;
    --pink-500: #ec4899;
    --orange-400: #fb923c;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --gray-900: #111827;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --white: #ffffff;
    --shadow-sm: 0 10px 25px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 18px 45px rgba(15, 23, 42, 0.14);
    --shadow-lg: 0 28px 70px rgba(15, 23, 42, 0.22);
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--gray-900);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #fff1f2 0%, #fdf2f8 45%, #fff7ed 100%);
}

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

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

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    color: var(--white);
    background: linear-gradient(90deg, var(--rose-500), var(--pink-500), var(--orange-400));
    box-shadow: 0 12px 30px rgba(225, 29, 72, 0.22);
}

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

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

.brand-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--rose-600);
    background: var(--white);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.25);
}

.brand-name {
    font-size: 22px;
}

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

.nav-link {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #fef3c7;
    transform: translateY(-1px);
}

.header-search {
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.header-search input,
.mobile-search input,
.hero-search-inline input,
.hero-search-large input,
.list-toolbar input {
    border: 0;
    outline: 0;
}

.header-search input {
    width: 210px;
    padding: 10px 14px;
    color: var(--white);
    background: transparent;
}

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

.header-search button,
.mobile-search button,
.hero-search-inline button,
.hero-search-large button {
    border: 0;
    color: var(--rose-600);
    background: var(--white);
    font-weight: 800;
    padding: 10px 16px;
}

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

.menu-button span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--white);
}

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

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

.mobile-search {
    display: flex;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    margin-bottom: 12px;
}

.mobile-search input {
    flex: 1;
    color: var(--white);
    background: transparent;
    padding: 12px 14px;
}

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

.mobile-nav .nav-link {
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
}

.page-shell {
    min-height: 70vh;
}

.hero-section {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.28), transparent 30%), linear-gradient(120deg, var(--rose-600), var(--pink-500), var(--orange-500));
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image: radial-gradient(circle, #ffffff 1px, transparent 1px);
    background-size: 24px 24px;
}

.hero-stage {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    min-height: 580px;
    margin: 0 auto;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
    gap: 48px;
    align-items: center;
    padding: 64px 0 86px;
    opacity: 0;
    transform: translateX(32px);
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.eyebrow {
    margin: 0 0 14px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fef3c7;
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
    margin: 0;
    font-size: clamp(36px, 6vw, 68px);
    line-height: 1.06;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.hero-copy p {
    max-width: 680px;
    margin: 24px 0 0;
    font-size: clamp(17px, 2vw, 23px);
    color: rgba(255, 255, 255, 0.92);
}

.hero-tags,
.detail-meta-grid,
.movie-meta,
.compact-meta,
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

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

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

.hero-tags span {
    color: var(--white);
    background: rgba(255, 255, 255, 0.18);
    padding: 8px 13px;
    backdrop-filter: blur(10px);
}

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

.primary-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
    color: var(--rose-600);
    background: var(--white);
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.18);
}

.primary-button:hover,
.ghost-button:hover,
.movie-card:hover,
.category-card:hover,
.category-overview-card:hover,
.compact-card:hover {
    transform: translateY(-3px);
}

.ghost-button {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.12);
}

.ghost-button.dark {
    color: var(--rose-600);
    border-color: rgba(225, 29, 72, 0.18);
    background: var(--rose-50);
}

.hero-poster {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.18);
}

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

.hero-controls {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    margin: -74px auto 0;
    padding-bottom: 26px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-controls button {
    border: 0;
    color: var(--white);
    background: rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    min-width: 42px;
    height: 42px;
    font-size: 28px;
    line-height: 1;
}

.hero-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-dots .hero-dot {
    min-width: 10px;
    width: 10px;
    height: 10px;
    padding: 0;
    background: rgba(255, 255, 255, 0.45);
}

.hero-dots .hero-dot.active {
    width: 30px;
    background: var(--white);
}

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

.soft-panel {
    width: min(1180px, calc(100% - 32px));
    margin-top: 16px;
    padding: 36px;
    border-radius: var(--radius-xl);
    background: linear-gradient(120deg, rgba(255, 237, 213, 0.88), rgba(255, 228, 230, 0.9), rgba(252, 231, 243, 0.9));
    box-shadow: var(--shadow-sm);
}

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

.section-heading h2 {
    margin: 0;
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 950;
    letter-spacing: -0.03em;
}

.section-heading p {
    margin: 8px 0 0;
    color: var(--gray-600);
}

.section-link {
    white-space: nowrap;
    color: var(--rose-600);
    font-weight: 900;
}

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

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

.movie-card {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.movie-card:hover {
    box-shadow: var(--shadow-md);
}

.movie-poster {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: var(--rose-100);
}

.movie-card-large .movie-poster {
    aspect-ratio: 16 / 10;
}

.movie-poster img,
.compact-poster img,
.category-card img,
.category-cover img,
.detail-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.movie-card:hover .movie-poster img,
.compact-card:hover img,
.category-card:hover img,
.category-overview-card:hover img {
    transform: scale(1.08);
}

.movie-badge,
.movie-year {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    color: var(--white);
    font-size: 12px;
    font-weight: 900;
    padding: 6px 10px;
}

.movie-badge {
    top: 12px;
    right: 12px;
    background: var(--rose-500);
}

.movie-year {
    left: 12px;
    bottom: 12px;
    background: rgba(15, 23, 42, 0.74);
    backdrop-filter: blur(8px);
}

.movie-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 54px;
    opacity: 0;
    background: rgba(15, 23, 42, 0.16);
    transition: opacity 0.2s ease;
}

.movie-card:hover .movie-play {
    opacity: 1;
}

.movie-info {
    padding: 18px;
}

.movie-info h3,
.movie-info h2,
.compact-card h3 {
    margin: 0 0 9px;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 900;
}

.movie-card h3 a:hover,
.movie-card h2 a:hover,
.compact-card h3 a:hover {
    color: var(--rose-600);
}

.movie-info p,
.compact-card p {
    margin: 0 0 14px;
    color: var(--gray-600);
    font-size: 14px;
}

.movie-meta span {
    color: var(--orange-600);
    background: #ffedd5;
    padding: 5px 9px;
}

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

.tag-list span {
    color: var(--rose-600);
    background: var(--rose-50);
    padding: 5px 9px;
}

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

.category-card {
    position: relative;
    min-height: 210px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--slate-900);
    color: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card img {
    position: absolute;
    inset: 0;
    opacity: 0.42;
}

.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.2));
}

.category-card div {
    position: absolute;
    inset: auto 20px 20px;
    z-index: 2;
}

.category-card h3 {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 950;
}

.category-card p {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.84);
}

.category-card span {
    display: inline-flex;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    padding: 6px 10px;
    font-weight: 900;
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    gap: 32px;
    align-items: stretch;
}

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

.compact-card {
    display: grid;
    grid-template-columns: auto 86px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 12px;
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.compact-card:hover {
    box-shadow: var(--shadow-md);
}

.rank-num {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(135deg, var(--rose-500), var(--orange-500));
    font-weight: 950;
}

.compact-poster {
    display: block;
    width: 86px;
    height: 86px;
    overflow: hidden;
    border-radius: 16px;
    background: var(--rose-100);
}

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

.compact-card p {
    margin-bottom: 6px;
}

.compact-meta {
    color: var(--gray-500);
    font-size: 13px;
}

.callout-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 340px;
    padding: 36px;
    border-radius: var(--radius-xl);
    color: var(--white);
    background: linear-gradient(135deg, var(--rose-600), var(--orange-500));
    box-shadow: var(--shadow-md);
}

.callout-card h2 {
    margin: 0 0 12px;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.08;
    font-weight: 950;
}

.callout-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
}

.page-hero,
.detail-hero {
    width: min(1180px, calc(100% - 32px));
    margin: 34px auto 0;
    border-radius: var(--radius-xl);
    color: var(--white);
    background: radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.25), transparent 28%), linear-gradient(120deg, var(--rose-600), var(--pink-500), var(--orange-500));
    box-shadow: var(--shadow-md);
}

.page-hero {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    padding: 42px;
}

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

.hero-search-inline,
.hero-search-large {
    display: flex;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-width: min(420px, 100%);
}

.hero-search-inline input,
.hero-search-large input {
    flex: 1;
    min-width: 0;
    padding: 14px 16px;
    color: var(--white);
    background: transparent;
}

.hero-search-inline input::placeholder,
.hero-search-large input::placeholder {
    color: rgba(255, 255, 255, 0.74);
}

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

.list-toolbar label {
    display: grid;
    gap: 8px;
    font-weight: 900;
    color: var(--gray-700);
    flex: 1;
    max-width: 540px;
}

.list-toolbar input {
    width: 100%;
    border-radius: 999px;
    padding: 13px 18px;
    color: var(--gray-900);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

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

.category-overview-card {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 20px;
    padding: 18px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-cover {
    display: block;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 18px;
    background: var(--rose-100);
}

.category-overview-card h2 {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 950;
}

.category-overview-card p {
    margin: 0 0 12px;
    color: var(--gray-600);
}

.category-count {
    display: inline-flex;
    margin-bottom: 12px;
    border-radius: 999px;
    padding: 6px 10px;
    color: var(--rose-600);
    background: var(--rose-50);
    font-weight: 900;
}

.category-samples {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.category-samples a {
    color: var(--orange-600);
    font-size: 13px;
    font-weight: 800;
}

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

.search-card {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.search-card img {
    width: 120px;
    height: 168px;
    object-fit: cover;
    background: var(--rose-100);
}

.search-card div {
    padding: 16px;
}

.search-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 950;
}

.search-card p {
    margin: 0 0 10px;
    color: var(--gray-600);
    font-size: 14px;
}

.search-card span {
    color: var(--rose-600);
    font-weight: 900;
    font-size: 13px;
}

.breadcrumb {
    width: min(1180px, calc(100% - 32px));
    margin: 26px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    color: var(--gray-600);
    font-weight: 800;
}

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

.detail-hero {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 34px;
    align-items: center;
    padding: 34px;
}

.detail-poster {
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 2 / 3;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: var(--shadow-lg);
}

.detail-copy h1 {
    color: var(--white);
}

.detail-one-line {
    margin: 22px 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 20px;
}

.detail-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 22px 0;
}

.detail-meta-grid span {
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.14);
    padding: 12px;
}

.detail-meta-grid strong {
    display: block;
    color: var(--white);
    margin-bottom: 3px;
}

.detail-copy .tag-list span {
    color: var(--white);
    background: rgba(255, 255, 255, 0.16);
}

.player-section,
.detail-content {
    width: min(1180px, calc(100% - 32px));
    margin: 34px auto 0;
}

.player-section h2 {
    margin: 0 0 18px;
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 950;
}

.video-frame {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: #020617;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16 / 9;
}

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

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    color: var(--white);
    background: radial-gradient(circle, rgba(15, 23, 42, 0.2), rgba(15, 23, 42, 0.52));
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.play-overlay span {
    width: 92px;
    height: 92px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--rose-500), var(--orange-500));
    font-size: 42px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
}

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

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

.article-card {
    padding: 28px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.article-card h2 {
    margin: 0 0 14px;
    font-size: 26px;
    font-weight: 950;
}

.article-card p {
    margin: 0;
    color: var(--gray-700);
    font-size: 17px;
}

.site-footer {
    margin-top: 64px;
    color: #d1d5db;
    background: linear-gradient(135deg, var(--slate-900), var(--slate-800), #111827);
}

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 52px 0;
    display: grid;
    grid-template-columns: 1.4fr 0.7fr 0.9fr;
    gap: 34px;
}

.footer-brand h2,
.footer-links h3 {
    margin: 0 0 14px;
    color: var(--white);
}

.footer-brand p {
    margin: 0;
    max-width: 520px;
}

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

.footer-links a:hover {
    color: #fda4af;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    text-align: center;
    color: #9ca3af;
}

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

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

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

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

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

    .hero-poster {
        max-width: 360px;
        margin: 0 auto;
        width: 100%;
    }

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

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

@media (max-width: 720px) {
    .brand-name {
        font-size: 18px;
    }

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

    .hero-slide {
        gap: 28px;
        padding-top: 44px;
    }

    .hero-controls {
        margin-top: -62px;
    }

    .page-hero {
        display: grid;
        padding: 28px;
    }

    .hero-search-inline,
    .hero-search-large {
        min-width: 0;
        width: 100%;
    }

    .content-section,
    .soft-panel,
    .player-section,
    .detail-content {
        padding-left: 0;
        padding-right: 0;
    }

    .soft-panel {
        padding: 24px;
    }

    .section-heading,
    .list-toolbar {
        display: grid;
        align-items: start;
    }

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

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

    .category-cover {
        aspect-ratio: 16 / 10;
    }

    .compact-card {
        grid-template-columns: auto 72px minmax(0, 1fr);
    }

    .compact-poster {
        width: 72px;
        height: 72px;
    }

    .search-card {
        grid-template-columns: 96px minmax(0, 1fr);
    }

    .search-card img {
        width: 96px;
        height: 140px;
    }

    .detail-hero {
        padding: 24px;
    }

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

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