/* Static movie site styles generated from the uploaded jelly/glass visual system. */

:root {
    --site-max-width: 1280px;
    --site-radius: 28px;
    --site-purple: #7c3aed;
    --site-pink: #ec4899;
    --site-blue: #2563eb;
    --site-text: #253047;
    --site-muted: #64748b;
    --site-card: rgba(255, 255, 255, 0.82);
    --site-border: rgba(255, 255, 255, 0.36);
    --site-shadow: 0 22px 70px rgba(31, 38, 135, 0.20);
}

body {
    overflow-x: hidden;
}

body.mobile-nav-open {
    overflow: hidden;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-container {
    width: min(100% - 32px, var(--site-max-width));
    margin: 0 auto;
}

.page-main {
    padding-top: 112px;
    padding-bottom: 64px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

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

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

.brand-orb {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 24px;
    background: linear-gradient(135deg, #a78bfa, #f9a8d4);
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.24);
}

.brand-name {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 800;
    letter-spacing: 0.02em;
}

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

.nav-link,
.desktop-nav a,
.mobile-nav a,
.mobile-category-list a {
    color: #374151;
    font-weight: 700;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.desktop-nav a:hover,
.mobile-nav a:hover,
.mobile-category-list a:hover {
    color: var(--site-purple);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown > button {
    border: 0;
    background: transparent;
    padding: 0;
}

.dropdown-panel {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    width: 280px;
    transform: translateX(-50%) translateY(8px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 16px;
    border-radius: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
}

.dropdown-panel a {
    padding: 10px 12px;
    border-radius: 16px;
    font-size: 14px;
}

.dropdown-panel a:hover {
    background: rgba(255, 255, 255, 0.56);
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.site-search {
    display: flex;
    align-items: center;
    gap: 8px;
    width: min(300px, 26vw);
}

.site-search input,
.mobile-search input,
.home-search input,
.filter-field input,
.filter-field select,
.search-page-form input,
.search-filter-row select {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    padding: 12px 16px;
    outline: none;
    color: var(--site-text);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.52);
    transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-search input:focus,
.mobile-search input:focus,
.home-search input:focus,
.filter-field input:focus,
.filter-field select:focus,
.search-page-form input:focus,
.search-filter-row select:focus {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.18);
}

.site-search button,
.mobile-search button {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.75);
}

.mobile-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.72);
    font-size: 22px;
}

.mobile-nav {
    display: none;
    width: min(100% - 32px, var(--site-max-width));
    margin: 0 auto 16px;
    padding: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.26);
}

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

.mobile-nav > a,
.mobile-category-list a {
    display: block;
    padding: 12px 14px;
    border-radius: 16px;
}

.mobile-nav > a:hover,
.mobile-category-list a:hover {
    background: rgba(255, 255, 255, 0.52);
}

.mobile-search {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.mobile-search button {
    width: auto;
    padding: 0 18px;
    border-radius: 999px;
}

.mobile-category-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    margin-top: 10px;
}

.hero-carousel {
    position: relative;
    min-height: 540px;
    margin-bottom: 42px;
    isolation: isolate;
}

.hero-track,
.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);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 22% 24%, rgba(255, 255, 255, 0.22), transparent 28%),
        linear-gradient(90deg, rgba(31, 18, 69, 0.92), rgba(31, 18, 69, 0.58) 45%, rgba(31, 18, 69, 0.10)),
        linear-gradient(0deg, rgba(0, 0, 0, 0.42), transparent 60%);
}

.hero-content {
    position: absolute;
    left: clamp(24px, 6vw, 72px);
    right: clamp(24px, 6vw, 72px);
    bottom: clamp(34px, 8vw, 76px);
    max-width: 780px;
    color: white;
}

.hero-badge,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-kicker {
    color: var(--site-purple);
}

.hero-content h1 {
    margin: 0 0 16px;
    font-size: clamp(34px, 7vw, 72px);
    line-height: 0.98;
    font-weight: 900;
    text-shadow: 0 8px 34px rgba(0, 0, 0, 0.24);
}

.hero-content p {
    max-width: 720px;
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.90);
    font-size: clamp(16px, 2.2vw, 21px);
    line-height: 1.7;
}

.hero-meta,
.detail-meta,
.movie-card-meta,
.movie-card-tags,
.category-stats,
.search-card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-meta span,
.detail-meta span,
.movie-card-tags span,
.category-stats span,
.search-card-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.20);
    color: inherit;
    backdrop-filter: blur(16px);
}

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

.hero-primary {
    color: white;
    background: linear-gradient(135deg, #7c3aed, #ec4899) !important;
}

.hero-secondary {
    color: white;
}

.hero-controls {
    position: absolute;
    left: clamp(18px, 4vw, 48px);
    right: clamp(18px, 4vw, 48px);
    bottom: 20px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.hero-arrow,
.hero-dot {
    border: 0;
    background: rgba(255, 255, 255, 0.78);
    color: var(--site-purple);
    backdrop-filter: blur(20px);
}

.hero-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 30px;
    line-height: 1;
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 99px;
    padding: 0;
    opacity: 0.58;
    transition: width 0.25s ease, opacity 0.25s ease;
}

.hero-dot.is-active {
    width: 34px;
    opacity: 1;
}

.home-search,
.filter-panel,
.search-page-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
    gap: 24px;
    align-items: center;
    padding: 26px;
    margin-bottom: 42px;
}

.home-search form,
.search-page-form {
    display: flex;
    gap: 12px;
}

.home-search h2,
.page-hero h1,
.section-heading h2,
.ranking-panel h2,
.content-block h2,
.player-heading h2,
.info-card h2,
.ranking-table h2 {
    margin: 0;
    font-weight: 900;
    line-height: 1.1;
}

.home-search h2,
.section-heading h2,
.ranking-panel h2,
.ranking-table h2 {
    font-size: clamp(24px, 4vw, 38px);
}

.content-section {
    margin-top: 54px;
}

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

.section-link {
    color: var(--site-purple);
    font-weight: 800;
}

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

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

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

.movie-card {
    display: block;
}

.movie-card a {
    display: flex;
    height: 100%;
    flex-direction: column;
}

.movie-card-wide a {
    flex-direction: row;
}

.movie-card-small {
    width: 260px;
    flex: 0 0 260px;
}

.poster-wrap {
    position: relative;
    aspect-ratio: 3 / 4;
    background:
        linear-gradient(135deg, rgba(124, 58, 237, 0.28), rgba(236, 72, 153, 0.22)),
        rgba(255, 255, 255, 0.4);
}

.movie-card-small .poster-wrap,
.movie-card-wide .poster-wrap {
    aspect-ratio: 16 / 10;
}

.movie-card-wide .poster-wrap {
    width: 44%;
    min-height: 210px;
    flex: 0 0 44%;
}

.poster-wrap img,
.category-cover img,
.detail-poster img,
.player-frame video,
.search-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.poster-wrap img.image-missing,
.category-cover img.image-missing,
.detail-poster img.image-missing,
.hero-bg.image-missing,
.search-card-cover img.image-missing {
    display: none;
}

.poster-wrap:has(img.image-missing)::after,
.category-cover:has(img.image-missing)::after,
.detail-poster:has(img.image-missing)::after,
.search-card-cover:has(img.image-missing)::after {
    content: '日韩影视';
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 900;
    background: linear-gradient(135deg, #7c3aed, #ec4899, #38bdf8);
}

.duration-badge,
.play-badge {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.58);
    color: white;
    backdrop-filter: blur(18px);
}

.duration-badge {
    top: 12px;
    right: 12px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 800;
}

.play-badge {
    left: 50%;
    top: 50%;
    width: 56px;
    height: 56px;
    transform: translate(-50%, -50%) scale(0.92);
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.88);
    color: var(--site-purple);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.movie-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
}

.movie-card-body h3 {
    margin: 0;
    color: #1f2937;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-card-body p {
    margin: 0;
    color: var(--site-muted);
    font-size: 14px;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-card-meta {
    margin-top: auto;
    justify-content: space-between;
    color: #6b7280;
    font-size: 13px;
    font-weight: 700;
}

.movie-card-tags {
    color: #6d28d9;
    font-size: 12px;
    font-weight: 800;
}

.movie-card-tags span {
    background: rgba(124, 58, 237, 0.10);
}

.horizontal-scroll {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 8px 4px 18px;
}

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

.ranking-panel,
.ranking-table,
.page-hero,
.content-block,
.info-card {
    padding: 28px;
}

.rank-list,
.ranking-rows {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.rank-item,
.ranking-row {
    display: grid;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.48);
    transition: background 0.25s ease, transform 0.25s ease;
}

.rank-item {
    grid-template-columns: 38px minmax(0, 1fr) auto;
}

.ranking-row {
    grid-template-columns: 44px minmax(0, 1.2fr) minmax(0, 0.8fr) 80px 120px;
}

.rank-item:hover,
.ranking-row:hover {
    background: rgba(255, 255, 255, 0.82);
    transform: translateX(4px);
}

.rank-number,
.ranking-index {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    color: white;
    font-weight: 900;
}

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

.rank-views {
    color: var(--site-purple);
    font-weight: 900;
}

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

.category-card,
.category-overview-card a,
.info-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 170px;
    padding: 24px;
}

.category-emoji {
    font-size: 36px;
}

.category-emoji.large {
    display: inline-flex;
    margin-bottom: 10px;
    font-size: 56px;
}

.category-card strong,
.category-overview-body h2 {
    color: #1f2937;
    font-size: 20px;
    font-weight: 900;
}

.category-card small,
.category-stats {
    color: var(--site-purple);
    font-weight: 800;
}

.category-card p,
.category-overview-body p,
.page-hero p,
.info-card p,
.footer-inner p,
.related-text {
    margin: 0;
    color: var(--site-muted);
    line-height: 1.75;
}

.category-overview-card a {
    padding: 0;
    overflow: hidden;
}

.category-cover {
    position: relative;
    height: 190px;
    overflow: hidden;
    background: linear-gradient(135deg, #7c3aed, #ec4899);
}

.category-cover span {
    position: absolute;
    right: 18px;
    bottom: 12px;
    font-size: 52px;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.26));
}

.category-overview-body {
    display: grid;
    gap: 10px;
    padding: 22px;
}

.page-hero {
    margin-bottom: 34px;
}

.page-hero h1 {
    margin-bottom: 14px;
    font-size: clamp(34px, 6vw, 64px);
}

.category-page-hero {
    position: relative;
    overflow: hidden;
}

.filter-panel {
    grid-template-columns: minmax(220px, 1fr) repeat(3, minmax(150px, 190px)) auto;
    align-items: end;
}

.filter-field {
    display: grid;
    gap: 8px;
}

.filter-field label {
    color: #374151;
    font-size: 13px;
    font-weight: 900;
}

.filter-reset {
    align-self: end;
    border: 0;
}

.filter-count,
.search-status {
    grid-column: 1 / -1;
    margin: 0;
    color: var(--site-muted);
    font-weight: 700;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 800;
}

.breadcrumb a {
    color: white;
}

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

.detail-poster {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    box-shadow: var(--site-shadow);
}

.detail-info {
    align-self: center;
}

.detail-info h1 {
    margin: 0 0 16px;
    font-size: clamp(34px, 6vw, 62px);
    font-weight: 900;
    line-height: 1.05;
}

.detail-one-line {
    margin: 0 0 18px;
    color: #4b5563;
    font-size: 19px;
    line-height: 1.8;
}

.detail-meta {
    color: #4b5563;
    font-weight: 800;
}

.detail-meta span {
    background: rgba(124, 58, 237, 0.10);
}

.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.detail-tags span {
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(236, 72, 153, 0.12);
    color: #be185d;
    font-size: 13px;
    font-weight: 900;
}

.player-section {
    padding: 24px;
    margin-bottom: 34px;
}

.player-heading {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    margin-bottom: 18px;
}

.player-heading > span {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(124, 58, 237, 0.12);
    color: var(--site-purple);
    font-weight: 900;
}

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

.player-frame video {
    background: #111827;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 10px;
    border: 0;
    color: white;
    background:
        radial-gradient(circle at center, rgba(124, 58, 237, 0.20), rgba(17, 24, 39, 0.78)),
        rgba(0, 0, 0, 0.35);
    text-align: center;
}

.player-overlay span {
    width: 84px;
    height: 84px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--site-purple);
    font-size: 34px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.26);
}

.player-overlay strong {
    font-size: 24px;
}

.player-overlay small {
    color: rgba(255, 255, 255, 0.78);
}

.player-section.is-playing .player-overlay {
    display: none;
}

.player-message {
    margin: 14px 0 0;
    color: var(--site-muted);
    font-weight: 700;
}

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

.content-block p {
    margin-top: 14px;
    color: #475569;
    line-height: 1.9;
}

.detail-side-card dl {
    display: grid;
    gap: 12px;
    margin: 16px 0 0;
}

.detail-side-card div {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(124, 58, 237, 0.12);
}

.detail-side-card dt {
    color: var(--site-muted);
    font-weight: 800;
}

.detail-side-card dd {
    margin: 0;
    color: #1f2937;
    font-weight: 900;
}

.related-text {
    margin-bottom: 18px;
}

.related-text a {
    color: var(--site-purple);
    font-weight: 800;
}

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

.search-page-form {
    width: 100%;
}

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

.search-card {
    overflow: hidden;
}

.search-card a {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    height: 100%;
}

.search-card-cover {
    position: relative;
    min-height: 190px;
    background: linear-gradient(135deg, #7c3aed, #ec4899);
}

.search-card-body {
    display: grid;
    gap: 10px;
    padding: 16px;
}

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

.search-card-body p {
    margin: 0;
    color: var(--site-muted);
    line-height: 1.7;
}

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

.site-footer {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.footer-inner {
    width: min(100% - 32px, var(--site-max-width));
    margin: 0 auto;
    padding: 42px 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
}

.footer-brand {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 900;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px;
}

.footer-links a {
    color: #374151;
    font-weight: 800;
}

.footer-meta {
    grid-column: 1 / -1;
    font-size: 14px;
}

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

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

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

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

    .detail-side-card {
        grid-column: 1 / -1;
    }
}

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

    .mobile-menu-button {
        display: inline-grid;
        place-items: center;
        margin-left: auto;
    }

    .hero-carousel {
        min-height: 500px;
    }

    .home-search,
    .filter-panel,
    .split-section,
    .detail-hero,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .filter-panel {
        align-items: stretch;
    }

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

    .ranking-row {
        grid-template-columns: 44px minmax(0, 1fr);
    }

    .ranking-row span:nth-child(n + 3) {
        grid-column: 2;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 720px) {
    .page-main {
        padding-top: 98px;
    }

    .site-header-inner {
        min-height: 68px;
    }

    .brand-orb {
        width: 42px;
        height: 42px;
    }

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

    .hero-carousel {
        min-height: 560px;
        border-radius: 24px;
    }

    .hero-content {
        left: 22px;
        right: 22px;
        bottom: 78px;
    }

    .hero-meta span {
        min-height: 24px;
        font-size: 12px;
    }

    .hero-controls {
        justify-content: center;
    }

    .movie-grid,
    .compact-grid,
    .wide-grid,
    .category-grid,
    .category-overview-grid,
    .about-grid,
    .detail-content-grid,
    .search-filter-row {
        grid-template-columns: 1fr;
    }

    .movie-card-wide a,
    .search-card a {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .movie-card-wide .poster-wrap {
        width: 100%;
        min-height: auto;
        flex-basis: auto;
        aspect-ratio: 16 / 10;
    }

    .home-search form,
    .search-page-form {
        flex-direction: column;
    }

    .section-heading,
    .player-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .detail-hero,
    .player-section,
    .ranking-panel,
    .ranking-table,
    .page-hero,
    .content-block,
    .info-card,
    .filter-panel,
    .home-search,
    .search-page-panel {
        padding: 20px;
    }

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