:root {
    --bg: #0f172a;
    --panel: #111827;
    --paper: #ffffff;
    --ink: #111827;
    --muted: #6b7280;
    --amber: #d97706;
    --amber-deep: #92400e;
    --gold: #fbbf24;
    --cream: #fff7ed;
    --line: rgba(146, 64, 14, 0.18);
    --shadow: 0 24px 80px rgba(15, 23, 42, 0.16);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(120, 53, 15, 0.98), rgba(146, 64, 14, 0.96), rgba(120, 53, 15, 0.98));
    box-shadow: 0 18px 50px rgba(69, 26, 3, 0.24);
    backdrop-filter: blur(16px);
}

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

.site-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fef3c7;
    font-weight: 900;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.site-logo {
    font-size: 24px;
}

.logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #78350f;
    background: radial-gradient(circle at 30% 30%, #fff7ed, #fbbf24 52%, #f59e0b);
    box-shadow: 0 0 24px rgba(251, 191, 36, 0.55);
}

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

.desktop-nav a {
    color: #fffbeb;
    font-weight: 700;
    opacity: 0.86;
    transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: #fde68a;
    opacity: 1;
    transform: translateY(-1px);
}

.header-search {
    display: flex;
    align-items: center;
    min-width: 280px;
    border: 1px solid rgba(253, 230, 138, 0.32);
    border-radius: 999px;
    padding: 4px;
    background: rgba(69, 26, 3, 0.24);
}

.header-search input,
.mobile-panel input,
.page-search input,
.hero-search input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: inherit;
}

.header-search input {
    color: #fff7ed;
    padding: 8px 12px;
}

.header-search input::placeholder,
.mobile-panel input::placeholder {
    color: rgba(254, 243, 199, 0.72);
}

.header-search button,
.mobile-panel button,
.hero-search button,
.page-search button {
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #78350f;
    font-weight: 900;
    padding: 8px 16px;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.25);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    border: 0;
    background: transparent;
    padding: 8px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: #fef3c7;
}

.mobile-panel {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 18px;
    color: #fef3c7;
}

.mobile-panel nav {
    display: grid;
    gap: 12px;
    margin-bottom: 14px;
}

.mobile-panel form {
    display: flex;
    gap: 8px;
    border: 1px solid rgba(253, 230, 138, 0.32);
    border-radius: 18px;
    padding: 8px;
    background: rgba(69, 26, 3, 0.22);
}

.hero-carousel {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    background: #0f172a;
}

.hero-track {
    position: relative;
    min-height: 680px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 420px);
    gap: clamp(28px, 6vw, 76px);
    align-items: center;
    width: 100%;
    padding: 88px max(32px, calc((100vw - 1180px) / 2)) 118px;
    color: #fffbeb;
    opacity: 0;
    transform: scale(1.02);
    pointer-events: none;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    filter: blur(20px) saturate(1.15);
    transform: scale(1.08);
    opacity: 0.36;
}

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

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 42%, rgba(251, 191, 36, 0.25), transparent 30%),
        linear-gradient(120deg, rgba(15, 23, 42, 0.96), rgba(69, 26, 3, 0.88) 48%, rgba(15, 23, 42, 0.70));
}

.hero-content,
.hero-poster {
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d97706;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-content .eyebrow,
.rank-hero .eyebrow,
.player-section .eyebrow {
    color: #fbbf24;
}

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

.hero-content p {
    margin: 0 0 22px;
    color: #fde68a;
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.75;
    max-width: 760px;
}

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

.hero-tags span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 11px;
    background: rgba(251, 191, 36, 0.12);
    color: #92400e;
    font-size: 12px;
    font-weight: 800;
}

.hero-tags span {
    color: #fde68a;
    background: rgba(251, 191, 36, 0.16);
    border: 1px solid rgba(253, 230, 138, 0.2);
}

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

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

.primary-btn {
    color: #78350f;
    background: linear-gradient(135deg, #fde68a, #f59e0b);
    box-shadow: 0 16px 42px rgba(245, 158, 11, 0.34);
}

.ghost-btn {
    color: #fef3c7;
    border: 1px solid rgba(253, 230, 138, 0.34);
    background: rgba(255, 251, 235, 0.08);
}

.primary-btn:hover,
.ghost-btn:hover,
.category-link:hover {
    transform: translateY(-2px);
}

.hero-poster {
    display: block;
    border-radius: 34px;
    padding: 12px;
    background: linear-gradient(145deg, rgba(253, 230, 138, 0.42), rgba(146, 64, 14, 0.28));
    box-shadow: 0 36px 110px rgba(0, 0, 0, 0.42);
}

.hero-poster img {
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 24px;
}

.hero-tools {
    position: absolute;
    left: 50%;
    bottom: 34px;
    z-index: 3;
    transform: translateX(-50%);
    width: min(1180px, calc(100% - 32px));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.hero-search,
.page-search {
    display: flex;
    gap: 8px;
    width: min(560px, 100%);
    border-radius: 999px;
    padding: 8px;
    color: #111827;
    background: rgba(255, 251, 235, 0.94);
    box-shadow: var(--shadow);
}

.hero-search input,
.page-search input {
    padding: 10px 16px;
}

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

.hero-dots button {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 999px;
    background: rgba(254, 243, 199, 0.48);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.is-active {
    width: 34px;
    background: #fbbf24;
}

.section-wrap,
.page-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.section-wrap {
    padding: 72px 0;
}

.no-top {
    padding-top: 0;
}

.quick-entry {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    padding-top: 32px;
    padding-bottom: 22px;
}

.quick-entry a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    border-radius: 20px;
    color: #78350f;
    background: linear-gradient(135deg, #fff7ed, #fde68a);
    border: 1px solid var(--line);
    font-weight: 900;
    box-shadow: 0 18px 44px rgba(146, 64, 14, 0.12);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 30px;
}

.section-heading h2,
.page-hero h1 {
    margin: 10px 0 12px;
    color: #111827;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.1;
    letter-spacing: -0.04em;
    font-weight: 950;
}

.section-heading p,
.page-hero p {
    margin: 0;
    color: #6b7280;
    font-size: 17px;
    line-height: 1.8;
}

.section-heading.light h2,
.section-heading.light p,
.rank-hero h1,
.rank-hero p {
    color: #fffbeb;
}

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

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

.movie-card {
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(146, 64, 14, 0.12);
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.10);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 72px rgba(15, 23, 42, 0.18);
}

.poster-link {
    position: relative;
    display: block;
    overflow: hidden;
    background: #78350f;
}

.poster-link img {
    aspect-ratio: 2 / 3;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

.poster-play {
    position: absolute;
    left: 14px;
    bottom: 14px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #78350f;
    background: rgba(253, 230, 138, 0.94);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.rank-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    min-width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #78350f;
    background: linear-gradient(135deg, #fde68a, #f59e0b);
    font-weight: 950;
}

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

.movie-meta {
    color: #d97706;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 8px;
}

.movie-title {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 900;
    color: #111827;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.compact-grid .movie-card-body {
    padding: 12px;
}

.compact-grid .movie-title {
    font-size: 15px;
}

.compact-grid .movie-card-body p,
.compact-grid .tag-row {
    display: none;
}

.rank-strip {
    width: min(100%, 100%);
    max-width: none;
    padding: 72px max(32px, calc((100vw - 1180px) / 2));
    background:
        radial-gradient(circle at 20% 20%, rgba(251, 191, 36, 0.18), transparent 30%),
        linear-gradient(135deg, #0f172a, #451a03 70%, #78350f);
}

.center-action {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

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

.category-card,
.channel-card {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    border-radius: 28px;
    padding: 28px;
    color: #fffbeb;
    background: #451a03;
    box-shadow: var(--shadow);
}

.category-card::before,
.channel-card::before,
.category-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--cat-image);
    background-size: cover;
    background-position: center;
    opacity: 0.28;
    filter: saturate(1.15);
}

.category-card::after,
.channel-card::after,
.category-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.86), rgba(120, 53, 15, 0.70));
}

.category-card > *,
.channel-card > *,
.category-hero > * {
    position: relative;
    z-index: 2;
}

.category-card h3,
.channel-card h2 {
    margin: 0 0 12px;
    font-size: 28px;
    font-weight: 950;
}

.category-card p,
.channel-card p {
    color: #fde68a;
    line-height: 1.8;
}

.category-samples {
    display: grid;
    gap: 10px;
    margin: 22px 0;
}

.compact-movie {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    border-radius: 14px;
    padding: 8px;
    background: rgba(255, 251, 235, 0.10);
}

.compact-movie img {
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 9px;
}

.compact-movie strong,
.rank-row b {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.compact-movie small,
.rank-row small {
    display: block;
    color: #fde68a;
    font-size: 12px;
    margin-top: 4px;
}

.category-link {
    color: #78350f;
    background: #fde68a;
}

.page-shell {
    padding: 34px 0 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 0 0 20px;
    color: #92400e;
    font-size: 14px;
    font-weight: 800;
}

.page-hero {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    padding: clamp(34px, 6vw, 72px);
    margin-bottom: 44px;
    background: linear-gradient(135deg, #fff7ed, #fde68a);
    box-shadow: var(--shadow);
}

.soft-hero {
    background:
        radial-gradient(circle at top right, rgba(251, 191, 36, 0.34), transparent 32%),
        linear-gradient(135deg, #fff7ed, #ffffff 62%, #fef3c7);
}

.category-hero,
.rank-hero {
    color: #fffbeb;
    background: #451a03;
}

.rank-hero {
    background:
        radial-gradient(circle at 75% 20%, rgba(251, 191, 36, 0.22), transparent 32%),
        linear-gradient(135deg, #0f172a, #451a03 74%, #92400e);
}

.filter-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 0 0 28px;
}

.filter-chip {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 10px 16px;
    color: #92400e;
    background: #fff7ed;
    font-weight: 900;
    cursor: pointer;
}

.filter-chip.is-active {
    color: #78350f;
    background: linear-gradient(135deg, #fde68a, #f59e0b);
}

.empty-state {
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    color: #92400e;
    background: #fff7ed;
    font-weight: 900;
}

.channel-card {
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.channel-card > span {
    color: #fbbf24;
    font-weight: 950;
}

.channel-links {
    display: grid;
    gap: 8px;
    margin: 18px 0;
}

.channel-links a {
    border-radius: 12px;
    padding: 10px 12px;
    background: rgba(255, 251, 235, 0.10);
    color: #fde68a;
}

.rank-layout {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}

.rank-panel {
    position: sticky;
    top: 100px;
    display: grid;
    gap: 10px;
    max-height: calc(100vh - 130px);
    overflow: auto;
    padding-right: 8px;
}

.rank-row {
    display: grid;
    grid-template-columns: 36px 58px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    border-radius: 18px;
    padding: 10px;
    background: #fff7ed;
    border: 1px solid var(--line);
}

.rank-row strong {
    color: #d97706;
    font-size: 20px;
    font-weight: 950;
    text-align: center;
}

.rank-row img {
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 10px;
}

.rank-row small {
    color: #92400e;
}

.slim h2 {
    font-size: 34px;
}

.detail-page {
    background:
        radial-gradient(circle at top right, rgba(251, 191, 36, 0.22), transparent 26%),
        linear-gradient(180deg, #0f172a 0, #451a03 640px, #fff7ed 641px);
    padding-top: 34px;
}

.detail-page .breadcrumb {
    width: min(1180px, calc(100% - 32px));
    margin-left: auto;
    margin-right: auto;
    color: #fde68a;
}

.player-section {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    color: #fffbeb;
}

.player-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.75fr);
    gap: 28px;
    align-items: stretch;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #020617;
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.45);
    min-height: 420px;
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 0;
    color: #fffbeb;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.26), rgba(15, 23, 42, 0.78));
    cursor: pointer;
    font-weight: 950;
    font-size: 20px;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.big-play {
    width: 84px;
    height: 84px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #78350f;
    background: linear-gradient(135deg, #fde68a, #f59e0b);
    box-shadow: 0 18px 50px rgba(245, 158, 11, 0.42);
}

.movie-side-info {
    border-radius: 30px;
    padding: 30px;
    background: rgba(255, 251, 235, 0.09);
    border: 1px solid rgba(253, 230, 138, 0.20);
    backdrop-filter: blur(14px);
}

.movie-side-info h1 {
    margin: 14px 0;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.08;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.movie-side-info p {
    color: #fde68a;
    line-height: 1.8;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.detail-meta span {
    border-radius: 999px;
    padding: 8px 12px;
    color: #fde68a;
    background: rgba(251, 191, 36, 0.13);
}

.detail-tags span {
    color: #fde68a;
    border: 1px solid rgba(253, 230, 138, 0.20);
}

.movie-side-info .ghost-btn {
    margin-top: 24px;
}

.detail-content {
    padding-top: 42px;
}

.article-card {
    border-radius: 30px;
    padding: clamp(26px, 5vw, 56px);
    background: #ffffff;
    box-shadow: var(--shadow);
}

.article-card h2 {
    margin: 0 0 16px;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 950;
    letter-spacing: -0.03em;
}

.article-card h2 + p {
    margin-bottom: 30px;
}

.article-card p {
    color: #374151;
    line-height: 2;
    font-size: 17px;
}

.site-footer {
    margin-top: 72px;
    color: #fde68a;
    background: linear-gradient(135deg, #0f172a, #451a03 70%, #78350f);
}

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

.footer-logo {
    font-size: 22px;
}

.footer-inner p {
    max-width: 440px;
    line-height: 1.8;
}

.footer-links,
.footer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-content: flex-start;
}

.footer-links a,
.footer-tags a {
    border-radius: 999px;
    padding: 8px 12px;
    background: rgba(255, 251, 235, 0.10);
}

.footer-bottom {
    border-top: 1px solid rgba(253, 230, 138, 0.16);
    padding: 18px;
    text-align: center;
    color: #fbbf24;
}

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

    .hero-slide {
        grid-template-columns: 1fr 320px;
    }

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

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

    .rank-layout,
    .player-layout {
        grid-template-columns: 1fr;
    }

    .rank-panel {
        position: static;
        max-height: none;
    }
}

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

    .mobile-toggle {
        display: flex;
        margin-left: auto;
    }

    .header-inner {
        min-height: 66px;
    }

    .hero-carousel,
    .hero-track {
        min-height: 780px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        align-content: center;
        padding-top: 54px;
        padding-bottom: 150px;
    }

    .hero-poster {
        max-width: 260px;
        margin: 0 auto;
        order: -1;
    }

    .hero-tools {
        flex-direction: column;
        align-items: stretch;
    }

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

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

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

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

@media (max-width: 560px) {
    .site-logo {
        font-size: 20px;
    }

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

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-search,
    .page-search {
        border-radius: 22px;
        flex-direction: column;
    }

    .section-wrap {
        padding: 46px 0;
    }

    .movie-grid,
    .compact-grid,
    .category-grid,
    .channel-grid,
    .quick-entry {
        grid-template-columns: 1fr;
    }

    .page-hero {
        border-radius: 24px;
    }

    .player-shell,
    .player-shell video {
        min-height: 260px;
    }
}
