:root {
    --bg: #f6f7fb;
    --surface: #ffffff;
    --surface-soft: #fff7f7;
    --text: #171717;
    --muted: #666b77;
    --line: #e8e8ee;
    --brand: #dc2626;
    --brand-dark: #7f1d1d;
    --brand-soft: #fee2e2;
    --orange: #f97316;
    --shadow: 0 18px 50px rgba(17, 24, 39, 0.12);
    --shadow-soft: 0 10px 30px rgba(17, 24, 39, 0.08);
    --radius: 18px;
    --radius-sm: 12px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(229, 231, 235, 0.9);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

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

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

.brand-mark {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--orange));
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(220, 38, 38, 0.28);
    font-size: 14px;
}

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

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

.nav-link,
.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    border: 0;
    background: transparent;
    color: #374151;
    border-radius: 12px;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.nav-dropdown:hover .dropdown-toggle {
    color: var(--brand);
    background: var(--brand-soft);
}

.nav-dropdown {
    position: relative;
}

.dropdown-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 210px;
    padding: 10px;
    display: grid;
    gap: 4px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-dropdown:hover .dropdown-panel {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-panel a {
    padding: 9px 10px;
    border-radius: 10px;
    color: #374151;
}

.dropdown-panel a:hover {
    color: var(--brand);
    background: var(--brand-soft);
}

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

.header-search input,
.mobile-nav input,
.filter-bar input,
.search-panel input,
.search-panel select {
    width: 230px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 999px;
    padding: 10px 14px;
    outline: none;
    color: var(--text);
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.mobile-nav input:focus,
.filter-bar input:focus,
.search-panel input:focus,
.search-panel select:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.12);
}

.header-search button,
.mobile-nav button,
.search-panel button {
    border: 0;
    border-radius: 999px;
    padding: 10px 16px;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--orange));
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(220, 38, 38, 0.2);
}

.mobile-menu-button {
    display: none;
    margin-left: auto;
    border: 0;
    border-radius: 12px;
    padding: 8px 11px;
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 22px;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
    padding: 12px 0 18px;
    border-top: 1px solid var(--line);
}

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

.mobile-nav a {
    padding: 10px 12px;
    border-radius: 10px;
    background: #fff;
    color: #374151;
}

.mobile-nav form {
    display: flex;
    gap: 8px;
    margin-top: 6px;
}

.mobile-nav input {
    width: 100%;
}

.hero-section {
    width: min(var(--max), calc(100% - 32px));
    margin: 34px auto 0;
    padding: 44px;
    display: grid;
    grid-template-columns: 0.95fr 1.25fr;
    gap: 34px;
    color: #fff;
    background:
        radial-gradient(circle at top left, rgba(249, 115, 22, 0.5), transparent 38%),
        linear-gradient(135deg, #7f1d1d, #dc2626 58%, #f97316);
    border-radius: 30px;
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: -40% auto auto 45%;
    width: 420px;
    height: 420px;
    background: rgba(255, 255, 255, 0.16);
    filter: blur(16px);
    border-radius: 50%;
}

.hero-copy {
    position: relative;
    z-index: 1;
    align-self: center;
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--brand);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-section .eyebrow,
.page-hero .eyebrow,
.detail-hero .eyebrow {
    color: #fee2e2;
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
    margin: 0;
    font-size: clamp(32px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.hero-copy p:not(.eyebrow),
.page-hero p:not(.eyebrow),
.detail-one-line {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
}

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

.primary-button,
.ghost-button,
.section-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--orange));
    box-shadow: 0 16px 30px rgba(127, 29, 29, 0.26);
}

.primary-button.small {
    min-height: 38px;
    padding: 0 15px;
    font-size: 14px;
}

.ghost-button {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.08);
}

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

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: 148px;
    gap: 12px;
}

.hero-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
    isolation: isolate;
    min-height: 0;
}

.hero-feature {
    grid-column: span 3;
    grid-row: span 2;
}

.hero-card:not(.hero-feature) {
    grid-column: span 2;
}

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

.hero-card:hover img {
    transform: scale(1.08);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.76));
    z-index: 1;
}

.hero-content {
    position: absolute;
    z-index: 2;
    left: 16px;
    right: 16px;
    bottom: 14px;
    display: grid;
    gap: 6px;
}

.hero-content strong {
    font-size: 20px;
    line-height: 1.25;
}

.hero-feature .hero-content strong {
    font-size: 28px;
}

.hero-kicker,
.hero-desc,
.hero-tags {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.82);
}

.hero-desc {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.hero-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.hero-tags span {
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
}

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

.white-section {
    width: 100%;
    max-width: none;
    padding-left: max(16px, calc((100vw - var(--max)) / 2));
    padding-right: max(16px, calc((100vw - var(--max)) / 2));
    background: #fff;
}

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

.section-heading h2 {
    margin: 0;
    font-size: 30px;
    letter-spacing: -0.04em;
}

.section-link {
    min-height: 38px;
    color: var(--brand);
    background: var(--brand-soft);
    font-size: 14px;
}

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

.category-card {
    min-height: 180px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(135deg, #ef4444, #991b1b);
    color: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    position: relative;
}

.category-card::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -42px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

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

.category-card p {
    margin: 10px 0 14px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 14px;
}

.category-samples {
    display: grid;
    gap: 4px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
}

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

.movie-card {
    min-width: 0;
    background: var(--surface);
    border: 1px solid rgba(229, 231, 235, 0.85);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.card-link {
    display: grid;
    height: 100%;
}

.poster-shell {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #111827;
}

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

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

.type-badge,
.rank-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 10px;
    border-radius: 999px;
    color: #fff;
    background: rgba(220, 38, 38, 0.92);
    font-size: 12px;
    font-weight: 800;
}

.rank-badge {
    left: auto;
    right: 12px;
    background: rgba(249, 115, 22, 0.94);
}

.movie-info {
    padding: 16px;
}

.movie-meta {
    display: flex;
    gap: 10px;
    color: var(--brand);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
}

.movie-info h2 {
    margin: 0 0 8px;
    color: #111827;
    font-size: 18px;
    line-height: 1.32;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

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

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 13px;
}

.tag-row span {
    padding: 4px 8px;
    border-radius: 999px;
    color: #991b1b;
    background: var(--brand-soft);
    font-size: 12px;
    font-weight: 700;
}

.horizontal-scroller {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 270px;
    gap: 18px;
    overflow-x: auto;
    padding: 4px 4px 18px;
    scroll-snap-type: x proximity;
}

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

.movie-card.compact .poster-shell {
    aspect-ratio: 16 / 9;
}

.movie-card.compact .movie-info h2 {
    font-size: 16px;
}

.rank-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.rank-item {
    display: grid;
    grid-template-columns: 42px 76px 1fr;
    grid-template-areas:
        "num img title"
        "num img meta";
    gap: 0 14px;
    align-items: center;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, border 0.2s ease;
}

.rank-item:hover {
    transform: translateY(-3px);
    border-color: rgba(220, 38, 38, 0.45);
}

.rank-number {
    grid-area: num;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--orange));
    font-weight: 900;
}

.rank-item img {
    grid-area: img;
    width: 76px;
    height: 58px;
    object-fit: cover;
    border-radius: 12px;
}

.rank-title {
    grid-area: title;
    color: #111827;
    font-weight: 800;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-meta {
    grid-area: meta;
    color: var(--muted);
    font-size: 13px;
}

.page-hero,
.detail-hero {
    color: #fff;
    background:
        radial-gradient(circle at 80% 0%, rgba(249, 115, 22, 0.42), transparent 36%),
        linear-gradient(135deg, #7f1d1d, #b91c1c 56%, #ef4444);
}

.page-hero {
    padding: 54px max(16px, calc((100vw - var(--max)) / 2));
}

.compact-hero h1,
.category-hero h1 {
    max-width: 760px;
}

.compact-hero p,
.category-hero p {
    max-width: 720px;
}

.crumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
}

.crumbs a:hover {
    color: #fff;
}

.channel-list {
    display: grid;
    gap: 22px;
}

.channel-panel {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 24px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.channel-cover {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    min-height: 210px;
}

.channel-cover img {
    width: 100%;
    height: 100%;
    min-height: 100px;
    object-fit: cover;
    border-radius: 14px;
}

.channel-content h2 {
    margin: 0 0 8px;
    font-size: 30px;
}

.channel-content p {
    max-width: 720px;
    color: var(--muted);
}

.channel-titles {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0;
}

.channel-titles span {
    padding: 6px 10px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #374151;
    font-size: 13px;
    font-weight: 700;
}

.filter-bar,
.search-panel {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 26px;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.filter-bar input {
    flex: 1 1 280px;
    width: auto;
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-chips button {
    border: 0;
    padding: 8px 12px;
    border-radius: 999px;
    color: #7f1d1d;
    background: var(--brand-soft);
    cursor: pointer;
}

.filter-chips button.active {
    color: #fff;
    background: var(--brand);
}

.empty-state {
    display: none;
    text-align: center;
    padding: 36px;
    color: var(--muted);
    background: #fff;
    border: 1px dashed var(--line);
    border-radius: 18px;
}

.empty-state.show {
    display: block;
}

.podium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.podium-card {
    position: relative;
    min-height: 320px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    color: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.podium-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.35s ease;
}

.podium-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.78));
}

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

.podium-card strong,
.podium-card span {
    position: relative;
    z-index: 2;
}

.podium-card strong {
    font-size: 26px;
    line-height: 1.2;
}

.podium-rank {
    width: max-content;
    margin-bottom: 10px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(220, 38, 38, 0.9);
    font-weight: 900;
}

.wide-rank-grid {
    grid-template-columns: repeat(2, 1fr);
}

.search-panel input {
    flex: 1 1 360px;
    width: auto;
}

.search-panel select {
    width: 220px;
}

.detail-hero {
    padding: 34px max(16px, calc((100vw - var(--max)) / 2)) 46px;
}

.detail-hero-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 34px;
    align-items: end;
}

.detail-poster {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 3 / 4;
    background: #111827;
}

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

.detail-copy h1 {
    max-width: 850px;
}

.detail-one-line {
    max-width: 820px;
}

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

.detail-meta div {
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
}

.detail-meta dt {
    color: rgba(255, 255, 255, 0.66);
    font-size: 12px;
}

.detail-meta dd {
    margin: 4px 0 0;
    color: #fff;
    font-weight: 800;
}

.detail-tags span {
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
}

.player-wrap {
    padding-bottom: 36px;
}

.player-box {
    position: relative;
    width: min(100%, 1080px);
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 26px;
    background: #030712;
    box-shadow: var(--shadow);
}

.movie-player {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #030712;
}

.player-trigger {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    color: #fff;
    background: radial-gradient(circle at center, rgba(220, 38, 38, 0.24), rgba(0, 0, 0, 0.58));
    cursor: pointer;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 3;
}

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

.play-circle {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--orange));
    box-shadow: 0 18px 42px rgba(220, 38, 38, 0.32);
    font-size: 30px;
    padding-left: 4px;
}

.detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}

.detail-content article {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

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

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

.site-footer {
    color: #d1d5db;
    background: #111827;
    margin-top: 30px;
}

.footer-grid {
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
    padding: 42px 0;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 32px;
}

.footer-brand {
    color: #fff;
    font-size: 22px;
}

.site-footer p {
    max-width: 460px;
    color: #9ca3af;
}

.site-footer h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 18px;
}

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

.footer-links a {
    color: #cbd5e1;
}

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

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

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

    .mobile-menu-button {
        display: inline-flex;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 30px;
    }

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

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

    .channel-panel,
    .detail-hero-grid,
    .detail-content {
        grid-template-columns: 1fr;
    }

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

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

    .brand-text {
        font-size: 19px;
    }

    .hero-section {
        width: calc(100% - 24px);
        margin-top: 18px;
        border-radius: 22px;
        padding: 24px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 210px;
    }

    .hero-feature,
    .hero-card:not(.hero-feature) {
        grid-column: auto;
        grid-row: auto;
    }

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

    .category-grid,
    .movie-grid,
    .rank-grid,
    .wide-rank-grid,
    .podium-grid {
        grid-template-columns: 1fr;
    }

    .horizontal-scroller {
        grid-auto-columns: 82%;
    }

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

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

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

    .search-panel select,
    .search-panel button {
        width: 100%;
    }
}
