:root {
    color-scheme: light;
    --slate-950: #020617;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;
    --white: #ffffff;
    --blue: #2563eb;
    --cyan: #06b6d4;
    --orange: #f97316;
    --red: #ef4444;
    --purple: #a855f7;
    --pink: #ec4899;
    --green: #10b981;
    --gold: #facc15;
    --shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
    --soft-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
    --radius: 24px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background: linear-gradient(180deg, var(--slate-50), var(--white));
    color: var(--slate-800);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input {
    font: inherit;
}

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

.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    color: var(--white);
    box-shadow: 0 14px 32px rgba(6, 182, 212, 0.25);
}

.brand-text strong {
    display: block;
    font-size: 20px;
    line-height: 1.1;
    font-weight: 800;
    background: linear-gradient(90deg, #60a5fa, #22d3ee);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-text em {
    display: block;
    margin-top: 2px;
    color: #94a3b8;
    font-size: 12px;
    font-style: normal;
}

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

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    border-radius: 999px;
    color: #e2e8f0;
    font-size: 15px;
    transition: 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #67e8f9;
    background: rgba(255, 255, 255, 0.06);
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 190px;
    padding: 10px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.2s ease;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a,
.mobile-nav a,
.site-footer a {
    display: block;
    color: #cbd5e1;
    padding: 9px 12px;
    border-radius: 10px;
    transition: 0.2s ease;
}

.dropdown-menu a:hover,
.mobile-nav a:hover,
.site-footer a:hover {
    color: #67e8f9;
    background: rgba(255, 255, 255, 0.06);
}

.header-search {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 290px;
}

.header-search input,
.mobile-nav input,
.big-search input,
.inline-filter input {
    width: 100%;
    border: 1px solid rgba(148, 163, 184, 0.22);
    outline: 0;
    color: var(--slate-800);
    background: var(--white);
    border-radius: 999px;
    transition: 0.2s ease;
}

.header-search input,
.mobile-nav input {
    background: rgba(51, 65, 85, 0.72);
    color: var(--white);
    padding: 10px 14px;
}

.header-search input::placeholder,
.mobile-nav input::placeholder {
    color: #94a3b8;
}

.header-search input:focus,
.mobile-nav input:focus,
.big-search input:focus,
.inline-filter input:focus {
    border-color: rgba(6, 182, 212, 0.65);
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.12);
}

.header-search button,
.mobile-nav button,
.big-search button {
    border: 0;
    cursor: pointer;
    border-radius: 999px;
    padding: 10px 18px;
    color: var(--white);
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.22);
}

.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    margin-left: auto;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--white);
    border-radius: 99px;
}

.mobile-nav {
    display: none;
    padding: 0 22px 18px;
    background: rgba(15, 23, 42, 0.98);
}

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

.mobile-nav form {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.hero-carousel {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: var(--slate-950);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.72s ease;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 6s ease;
}

.hero-slide.active img {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.88) 0%, rgba(15, 23, 42, 0.62) 45%, rgba(15, 23, 42, 0.08) 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: var(--container);
    height: 100%;
    margin: 0 auto;
    padding: 0 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: var(--white);
}

.hero-content h1,
.page-hero h1 {
    margin: 0 0 18px;
    max-width: 760px;
    font-size: clamp(40px, 6vw, 74px);
    line-height: 1.04;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.hero-content p,
.page-hero p {
    max-width: 680px;
    margin: 0 0 22px;
    color: #e2e8f0;
    font-size: clamp(17px, 2vw, 22px);
}

.hero-kicker,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin: 0 0 12px;
    color: #22d3ee;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

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

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

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

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

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

.hero-tags,
.detail-tags,
.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tags {
    margin-bottom: 28px;
}

.hero-tags span,
.detail-tags span,
.card-tags span {
    display: inline-flex;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: var(--white);
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

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

.primary-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 800;
    transition: 0.2s ease;
}

.primary-button {
    color: var(--white);
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    box-shadow: 0 18px 38px rgba(37, 99, 235, 0.32);
}

.primary-button:hover,
.header-search button:hover,
.big-search button:hover {
    transform: translateY(-2px) scale(1.02);
    filter: brightness(1.05);
}

.ghost-button {
    color: var(--white);
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.ghost-button:hover {
    background: rgba(255, 255, 255, 0.24);
}

.hero-control {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: rgba(15, 23, 42, 0.45);
    cursor: pointer;
    font-size: 34px;
    line-height: 1;
    backdrop-filter: blur(10px);
    transition: 0.2s ease;
}

.hero-control:hover {
    background: rgba(37, 99, 235, 0.72);
}

.hero-control.prev {
    left: 22px;
}

.hero-control.next {
    right: 22px;
}

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

.hero-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.42);
    cursor: pointer;
    transition: 0.2s ease;
}

.hero-dot.active {
    width: 30px;
    background: #22d3ee;
}

.content-section {
    max-width: var(--container);
    margin: 0 auto;
    padding: 62px 22px;
}

.content-section.wide {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: center;
}

.intro-search {
    margin-top: -44px;
    position: relative;
    z-index: 10;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
}

.intro-search h2,
.section-heading h2,
.detail-card h1,
.side-card h2,
.category-overview-card h2 {
    margin: 0;
    color: var(--slate-800);
    line-height: 1.15;
}

.intro-search h2,
.section-heading h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 900;
    letter-spacing: -0.035em;
}

.intro-search p,
.category-overview-card p {
    color: var(--slate-600);
    margin: 12px 0 0;
}

.big-search {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: var(--slate-100);
    border-radius: 999px;
}

.big-search input {
    padding: 14px 18px;
    background: var(--white);
}

.big-search button {
    white-space: nowrap;
    border: 0;
    cursor: pointer;
    padding: 0 24px;
}

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

.section-heading.centered {
    justify-content: center;
    text-align: center;
}

.section-heading.light h2 {
    color: var(--white);
}

.section-heading.light a {
    color: #67e8f9;
}

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

.soft-panel,
.dark-panel {
    border-radius: 32px;
    padding: 44px;
}

.soft-panel {
    background: linear-gradient(135deg, #eff6ff, #ecfeff);
}

.dark-panel {
    background: linear-gradient(135deg, var(--slate-950), var(--slate-800));
    box-shadow: var(--shadow);
}

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

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

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

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

.scroll-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 280px;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 14px;
    scroll-snap-type: x mandatory;
}

.scroll-row .movie-card {
    scroll-snap-align: start;
}

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

.card-link {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--soft-shadow);
    transition: 0.25s ease;
}

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

.poster-wrap {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--slate-900);
}

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

.card-link:hover .poster-wrap img,
.category-card:hover img,
.related-card:hover img {
    transform: scale(1.08);
}

.year-badge,
.rank-badge {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
}

.year-badge {
    right: 12px;
    bottom: 12px;
    padding: 5px 10px;
    background: rgba(2, 6, 23, 0.78);
}

.rank-badge {
    top: 12px;
    left: 12px;
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--orange), var(--red));
    box-shadow: 0 12px 24px rgba(239, 68, 68, 0.25);
}

.card-body {
    flex: 1;
    padding: 18px;
}

.card-tags {
    margin-bottom: 10px;
}

.card-tags span {
    background: var(--slate-100);
    color: var(--slate-600);
    font-size: 12px;
    padding: 4px 9px;
}

.card-body h3 {
    margin: 0 0 9px;
    color: var(--slate-800);
    font-size: 18px;
    line-height: 1.35;
    font-weight: 850;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-body p {
    margin: 0 0 12px;
    color: var(--slate-600);
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.movie-card.overlay .poster-wrap {
    aspect-ratio: 3 / 4;
}

.movie-card.horizontal .card-link {
    display: grid;
    grid-template-columns: 44% 1fr;
}

.movie-card.horizontal .poster-wrap {
    aspect-ratio: auto;
    min-height: 210px;
}

.movie-card.compact .poster-wrap {
    aspect-ratio: 4 / 5;
}

.dark-panel .card-link {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.dark-panel .card-body h3 {
    color: var(--white);
}

.dark-panel .card-body p,
.dark-panel .card-meta {
    color: #cbd5e1;
}

.dark-panel .card-tags span {
    color: #dbeafe;
    background: rgba(255, 255, 255, 0.12);
}

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

.category-card {
    position: relative;
    min-height: 210px;
    overflow: hidden;
    border-radius: 24px;
    background: var(--slate-900);
    box-shadow: var(--soft-shadow);
}

.category-card img {
    width: 100%;
    height: 100%;
    min-height: 210px;
    object-fit: cover;
    opacity: 0.7;
    transition: 0.35s ease;
}

.category-card span {
    position: absolute;
    inset: auto 18px 18px;
    color: var(--white);
}

.category-card strong,
.category-card em {
    display: block;
}

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

.category-card em {
    margin-top: 6px;
    color: #e2e8f0;
    font-size: 13px;
    font-style: normal;
}

.page-hero {
    min-height: 410px;
    display: flex;
    align-items: center;
    background-position: center;
    background-size: cover;
    color: var(--white);
}

.page-hero > div {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 74px 22px;
}

.page-hero.slim {
    min-height: 320px;
    background: radial-gradient(circle at 20% 10%, rgba(6, 182, 212, 0.28), transparent 32%), linear-gradient(135deg, var(--slate-950), var(--slate-800));
}

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

.category-overview-card a {
    display: grid;
    grid-template-columns: 42% 1fr;
    gap: 22px;
    align-items: center;
    min-height: 250px;
    padding: 24px;
    border-radius: 28px;
    background: var(--white);
    box-shadow: var(--soft-shadow);
    transition: 0.24s ease;
}

.category-overview-card a:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.category-cover-stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.category-cover-stack img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 14px;
}

.category-overview-card span {
    display: inline-flex;
    margin-top: 18px;
    color: var(--blue);
    font-weight: 800;
}

.inline-filter {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--slate-600);
    font-weight: 800;
}

.inline-filter input {
    width: min(320px, 52vw);
    padding: 12px 16px;
}

.empty-filter {
    display: none;
    padding: 28px;
    text-align: center;
    color: var(--slate-500);
    border-radius: 18px;
    background: var(--slate-100);
}

.empty-filter.is-visible {
    display: block;
}

.watch-layout {
    max-width: var(--container);
    margin: 0 auto;
    padding: 30px 22px 70px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin: 0 0 18px;
    color: var(--slate-500);
    font-size: 14px;
}

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

.player-card,
.detail-card,
.side-card {
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--soft-shadow);
}

.player-card {
    padding: 10px;
    background: var(--slate-950);
    margin-bottom: 22px;
}

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

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

.play-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    color: var(--white);
    background: radial-gradient(circle, rgba(2, 6, 23, 0.2), rgba(2, 6, 23, 0.68));
    cursor: pointer;
    transition: 0.25s ease;
}

.play-overlay span {
    width: 76px;
    height: 76px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 4px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 20px 50px rgba(6, 182, 212, 0.35);
    font-size: 30px;
}

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

.play-overlay:hover {
    background: radial-gradient(circle, rgba(37, 99, 235, 0.12), rgba(2, 6, 23, 0.76));
}

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

.detail-card {
    padding: 28px;
}

.detail-tags span {
    background: var(--slate-100);
    color: var(--slate-700);
}

.detail-card h1 {
    margin-top: 14px;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 900;
    letter-spacing: -0.035em;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 18px 0 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--slate-200);
    color: var(--slate-500);
    font-weight: 700;
}

.detail-card section + section {
    margin-top: 26px;
}

.detail-card h2,
.side-card h2 {
    margin: 0 0 12px;
    color: var(--slate-800);
    font-size: 22px;
    font-weight: 900;
}

.detail-card p {
    margin: 0;
    color: var(--slate-700);
    white-space: pre-line;
}

.watch-side {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.side-card {
    padding: 20px;
}

.poster-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 18px;
}

.primary-button.full {
    width: 100%;
}

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

.related-card {
    display: grid;
    grid-template-columns: 116px 1fr;
    gap: 12px;
    align-items: center;
}

.related-card img {
    width: 116px;
    height: 74px;
    object-fit: cover;
    border-radius: 12px;
    transition: 0.25s ease;
}

.related-card strong,
.related-card em {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-card strong {
    -webkit-line-clamp: 2;
    color: var(--slate-800);
    font-size: 14px;
    line-height: 1.4;
}

.related-card em {
    -webkit-line-clamp: 1;
    margin-top: 6px;
    color: var(--slate-500);
    font-size: 12px;
    font-style: normal;
}

.site-footer {
    background: var(--slate-950);
    color: var(--slate-300);
}

.footer-grid {
    max-width: var(--container);
    margin: 0 auto;
    padding: 48px 22px 30px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 32px;
}

.footer-brand {
    color: var(--white);
    font-size: 20px;
    font-weight: 900;
}

.site-footer p {
    max-width: 420px;
    margin: 16px 0 0;
    color: #94a3b8;
}

.site-footer h2 {
    margin: 0 0 12px;
    color: var(--white);
    font-size: 18px;
}

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

.footer-bottom p {
    margin: 0 auto;
}

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

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

    .watch-layout {
        grid-template-columns: 1fr;
    }

    .watch-side {
        display: grid;
        grid-template-columns: 280px 1fr;
    }
}

@media (max-width: 860px) {
    .desktop-nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-carousel {
        height: 540px;
    }

    .hero-content h1,
    .page-hero h1 {
        font-size: clamp(34px, 12vw, 52px);
    }

    .hero-control {
        display: none;
    }

    .content-section,
    .soft-panel,
    .dark-panel {
        padding: 42px 18px;
    }

    .content-section.wide,
    .movie-grid.two,
    .movie-grid.three,
    .movie-grid.four,
    .category-grid,
    .category-overview-grid,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .category-overview-card a,
    .movie-card.horizontal .card-link {
        grid-template-columns: 1fr;
    }

    .big-search {
        border-radius: 24px;
        flex-direction: column;
    }

    .big-search button {
        min-height: 48px;
    }

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

    .watch-side {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .header-inner {
        padding: 12px 16px;
    }

    .brand-text em {
        display: none;
    }

    .hero-carousel {
        height: 500px;
    }

    .hero-content {
        padding: 0 18px;
    }

    .hero-tags span,
    .detail-tags span {
        font-size: 12px;
        padding: 5px 9px;
    }

    .content-section.wide,
    .movie-grid.two,
    .movie-grid.three,
    .movie-grid.four,
    .category-grid,
    .category-overview-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .intro-search {
        margin-top: 0;
        border-radius: 0;
    }

    .scroll-row {
        grid-auto-columns: 82%;
    }

    .soft-panel,
    .dark-panel {
        border-radius: 0;
        margin-left: -18px;
        margin-right: -18px;
    }

    .inline-filter {
        width: 100%;
        align-items: flex-start;
        flex-direction: column;
    }

    .inline-filter input {
        width: 100%;
    }

    .watch-layout {
        padding: 20px 14px 48px;
    }

    .detail-card,
    .side-card {
        padding: 20px;
    }

    .related-card {
        grid-template-columns: 100px 1fr;
    }

    .related-card img {
        width: 100px;
        height: 66px;
    }
}
