:root {
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --orange-600: #ea580c;
    --orange-700: #c2410c;
    --brown-900: #451a03;
    --ink: #111827;
    --muted: #6b7280;
    --line: #f1e7d0;
    --card: #ffffff;
    --shadow: 0 18px 45px rgba(120, 53, 15, 0.15);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: linear-gradient(180deg, #fff7ed 0%, #fff 22%, #fff7ed 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.65;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 251, 235, 0.9);
    border-bottom: 1px solid rgba(245, 158, 11, 0.18);
    backdrop-filter: blur(18px);
}

.nav-shell {
    height: 68px;
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.brand-icon {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
    border-radius: 12px;
    box-shadow: 0 10px 22px rgba(217, 119, 6, 0.35);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-text strong {
    font-size: 20px;
    font-weight: 900;
    background: linear-gradient(90deg, #92400e, var(--orange-700));
    -webkit-background-clip: text;
    color: transparent;
}

.brand-text em {
    font-size: 12px;
    color: var(--amber-600);
    font-style: normal;
}

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

.nav-link,
.nav-dropdown button {
    border: 0;
    background: transparent;
    color: #4b5563;
    font-weight: 700;
    cursor: pointer;
    padding: 8px 0;
}

.nav-link:hover,
.nav-link.active,
.nav-dropdown button:hover {
    color: var(--amber-600);
}

.nav-dropdown {
    position: relative;
}

.dropdown-panel {
    position: absolute;
    top: 36px;
    right: 0;
    min-width: 160px;
    display: none;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}

.nav-dropdown:hover .dropdown-panel {
    display: grid;
    gap: 4px;
}

.dropdown-panel a {
    padding: 8px 12px;
    border-radius: 12px;
    color: #4b5563;
}

.dropdown-panel a:hover {
    color: var(--orange-700);
    background: var(--amber-50);
}

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

.header-search input,
.mobile-panel input,
.big-search input,
.local-filter input,
.local-filter select,
.quick-search-card input {
    height: 40px;
    border: 1px solid #f3d28d;
    border-radius: 999px;
    outline: 0;
    background: rgba(255, 255, 255, 0.88);
    padding: 0 16px;
    color: #3f2b0f;
}

.header-search input:focus,
.mobile-panel input:focus,
.big-search input:focus,
.local-filter input:focus,
.local-filter select:focus,
.quick-search-card input:focus {
    border-color: var(--amber-500);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15);
}

.header-search button,
.mobile-panel button,
.big-search button,
.quick-search-card button {
    height: 40px;
    border: 0;
    padding: 0 18px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
    cursor: pointer;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(217, 119, 6, 0.25);
}

.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 12px;
    background: #fff7ed;
    color: var(--orange-700);
    font-size: 22px;
}

.mobile-panel {
    display: none;
    padding: 0 16px 16px;
    border-top: 1px solid var(--line);
}

.mobile-panel.open {
    display: grid;
    gap: 10px;
}

.mobile-panel a {
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.72);
    font-weight: 700;
}

.mobile-panel form {
    display: flex;
    gap: 8px;
}

.mobile-panel input {
    flex: 1;
}

.hero-carousel {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: linear-gradient(90deg, #78350f, #9a3412, #78350f);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 800ms ease;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-bg,
.category-bg,
.detail-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.22;
    filter: saturate(1.2) contrast(1.05);
}

.hero-shade,
.category-mask,
.detail-mask {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 35%, rgba(245, 158, 11, 0.28), transparent 32%),
        linear-gradient(90deg, rgba(69, 26, 3, 0.96), rgba(124, 45, 18, 0.78), rgba(69, 26, 3, 0.62)),
        linear-gradient(0deg, rgba(0, 0, 0, 0.55), transparent);
}

.hero-content {
    position: relative;
    min-height: 620px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 56px;
    align-items: center;
}

.hero-copy {
    color: #fff;
    max-width: 700px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fde68a;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 7px 14px;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.hero-copy h1,
.page-hero h1,
.category-hero h1,
.detail-copy h1 {
    margin: 18px 0 18px;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.04;
    letter-spacing: -0.05em;
}

.hero-copy p,
.page-hero p,
.category-hero p,
.detail-one-line {
    font-size: 20px;
    color: #ffedd5;
    margin: 0 0 24px;
}

.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: 5px 10px;
    color: #92400e;
    background: #fff7ed;
    font-size: 13px;
    font-weight: 800;
}

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

.primary-btn,
.ghost-btn,
.section-more,
.wide-link,
.category-preview > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-btn {
    min-height: 48px;
    padding: 0 24px;
    color: #fff;
    background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
    box-shadow: 0 14px 28px rgba(245, 158, 11, 0.35);
}

.ghost-btn {
    min-height: 48px;
    padding: 0 24px;
    color: #fff7ed;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
}

.primary-btn:hover,
.ghost-btn:hover,
.section-more:hover,
.wide-link:hover,
.category-preview > a:hover {
    transform: translateY(-2px);
}

.hero-poster {
    display: block;
    aspect-ratio: 3 / 4;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
    transform: rotate(2deg);
    border: 1px solid rgba(255, 255, 255, 0.28);
}

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

.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 26px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 14px;
    transform: translateX(-50%);
}

.hero-prev,
.hero-next,
.hero-dot {
    border: 0;
    cursor: pointer;
}

.hero-prev,
.hero-next {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 32px;
    line-height: 1;
    backdrop-filter: blur(10px);
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
}

.hero-dot.active {
    width: 34px;
    background: #fbbf24;
}

.hero-underbar {
    margin-top: -36px;
    position: relative;
    z-index: 8;
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 18px;
    align-items: stretch;
}

.quick-search-card,
.channel-pills,
.side-panel,
.content-section,
.poster-strip,
.channel-board,
.ranking-shell,
.detail-article,
.detail-side,
.player-section {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(245, 158, 11, 0.16);
    box-shadow: var(--shadow);
    border-radius: 28px;
}

.quick-search-card {
    padding: 20px;
}

.quick-search-card strong {
    display: block;
    margin-bottom: 12px;
    font-size: 18px;
}

.quick-search-card form {
    display: flex;
    gap: 8px;
}

.quick-search-card input {
    min-width: 0;
    flex: 1;
}

.channel-pills {
    padding: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.channel-pills a {
    padding: 10px 15px;
    border-radius: 999px;
    background: #fff7ed;
    color: #9a3412;
    font-weight: 800;
}

.content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 26px;
    margin-top: 40px;
}

.content-section,
.poster-strip,
.channel-board,
.ranking-shell,
.player-section {
    padding: 28px;
    margin-top: 28px;
}

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

.section-title-row h2,
.side-panel h2,
.detail-article h2,
.detail-side h2 {
    margin: 0 0 6px;
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.section-title-row p,
.side-panel p,
.page-hero p,
.category-hero p {
    margin: 0;
    color: var(--muted);
}

.section-more,
.wide-link,
.category-preview > a {
    min-height: 40px;
    padding: 0 16px;
    color: var(--orange-700);
    background: #fff7ed;
    border: 1px solid #fed7aa;
}

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

.movie-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(120, 53, 15, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.12);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.movie-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 44px rgba(120, 53, 15, 0.18);
}

.poster-wrap {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #fef3c7;
}

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

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

.poster-badge,
.poster-score {
    position: absolute;
    top: 12px;
    border-radius: 999px;
    padding: 4px 9px;
    font-size: 12px;
    font-weight: 900;
}

.poster-badge {
    left: 12px;
    color: #fff;
    background: rgba(0, 0, 0, 0.55);
}

.poster-score {
    right: 12px;
    color: #78350f;
    background: #fef3c7;
}

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

.movie-card-body strong {
    font-size: 18px;
    line-height: 1.35;
}

.movie-card-body em,
.ranking-info em,
.rank-item em {
    color: var(--muted);
    font-style: normal;
    font-size: 13px;
}

.card-desc {
    color: #4b5563;
    font-size: 14px;
}

.movie-card.compact {
    display: grid;
    grid-template-columns: 82px 1fr;
    min-height: 120px;
}

.movie-card.compact .poster-wrap {
    aspect-ratio: auto;
    height: 100%;
}

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

.movie-card.compact .card-desc,
.movie-card.compact .tag-row,
.movie-card.compact .poster-score {
    display: none;
}

.side-panel {
    padding: 24px;
    align-self: start;
    position: sticky;
    top: 96px;
}

.rank-list {
    display: grid;
    gap: 12px;
    margin: 18px 0;
}

.rank-item {
    display: grid;
    grid-template-columns: 36px 58px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 18px;
    background: #fff7ed;
    transition: transform 180ms ease, background 180ms ease;
}

.rank-item:hover {
    transform: translateX(4px);
    background: #ffedd5;
}

.rank-num {
    color: var(--orange-700);
    font-weight: 900;
}

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

.rank-item span:not(.rank-num) {
    display: flex;
    flex-direction: column;
}

.rank-item b {
    color: var(--amber-600);
}

.strip-scroll {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 180px;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
}

.strip-scroll a {
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    aspect-ratio: 3 / 4;
    box-shadow: 0 16px 28px rgba(120, 53, 15, 0.16);
}

.strip-scroll img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.strip-scroll span {
    position: absolute;
    inset: auto 0 0;
    color: #fff;
    font-weight: 900;
    padding: 38px 14px 14px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent);
}

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

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

.channel-card {
    display: flex;
    min-height: 160px;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    padding: 22px;
    border-radius: 24px;
    color: #fff;
    background:
        radial-gradient(circle at right top, rgba(254, 243, 199, 0.35), transparent 30%),
        linear-gradient(135deg, #92400e, #c2410c);
    box-shadow: 0 16px 32px rgba(120, 53, 15, 0.18);
}

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

.channel-card span,
.channel-card em {
    color: #ffedd5;
    font-style: normal;
}

.page-main {
    padding-bottom: 56px;
}

.page-hero,
.category-hero {
    position: relative;
    margin-top: 26px;
    overflow: hidden;
    border-radius: 34px;
}

.page-hero {
    padding: 64px;
    color: #fff;
    background:
        radial-gradient(circle at right top, rgba(251, 191, 36, 0.42), transparent 35%),
        linear-gradient(135deg, #78350f, #9a3412);
    box-shadow: var(--shadow);
}

.simple-hero p,
.rank-hero p,
.search-hero p {
    color: #ffedd5;
}

.page-channel-board {
    margin-top: 28px;
}

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

.category-preview {
    border-radius: 24px;
    padding: 18px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
}

.category-preview h3 {
    margin: 0 0 14px;
    font-size: 22px;
}

.category-preview > div {
    display: grid;
    gap: 12px;
}

.category-preview > a {
    margin-top: 14px;
}

.category-hero {
    min-height: 400px;
    color: #fff;
    background: #78350f;
}

.category-hero-content {
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 820px;
}

.filter-row {
    align-items: center;
}

.local-filter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.local-filter select {
    min-width: 130px;
}

.empty-result {
    display: none;
    margin: 28px 0 0;
    padding: 28px;
    text-align: center;
    color: var(--muted);
    border-radius: 24px;
    background: #fff7ed;
}

.big-search {
    display: flex;
    gap: 10px;
    width: min(640px, 100%);
    margin-top: 28px;
}

.big-search input {
    flex: 1;
}

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

.ranking-card {
    display: grid;
    grid-template-columns: 58px 96px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 14px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(245, 158, 11, 0.14);
    box-shadow: 0 8px 20px rgba(120, 53, 15, 0.08);
}

.ranking-number {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 16px;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
}

.ranking-card img {
    width: 96px;
    height: 128px;
    object-fit: cover;
    border-radius: 16px;
}

.ranking-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ranking-info strong {
    font-size: 20px;
}

.ranking-info span {
    color: #4b5563;
}

.ranking-card b {
    font-size: 22px;
    color: var(--amber-600);
}

.detail-main {
    padding-bottom: 64px;
}

.detail-hero {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: #78350f;
}

.detail-layout {
    position: relative;
    min-height: 620px;
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 48px;
    align-items: center;
    color: #fff;
}

.detail-poster {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.42);
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.detail-poster span {
    position: absolute;
    inset: auto 20px 20px;
    display: grid;
    place-items: center;
    height: 48px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
    color: #fff;
    font-weight: 900;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    color: #fde68a;
    margin-bottom: 14px;
}

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

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

.detail-meta span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.player-section {
    margin-top: -60px;
    position: relative;
    z-index: 4;
    padding: 18px;
}

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

.movie-player {
    width: 100%;
    height: 100%;
    display: block;
    background: #0f172a;
    object-fit: contain;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    color: #fff;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.58));
    cursor: pointer;
}

.play-overlay span {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    font-size: 34px;
    padding-left: 5px;
}

.play-overlay.hide {
    display: none;
}

.detail-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 26px;
    margin-top: 28px;
}

.detail-article,
.detail-side {
    padding: 28px;
}

.detail-article p {
    color: #374151;
    font-size: 17px;
}

.info-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.info-list li {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 16px;
    background: #fff7ed;
}

.info-list strong {
    color: #92400e;
}

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

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

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

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

    .side-panel {
        position: static;
    }

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

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

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

    .brand-text strong {
        font-size: 18px;
    }

    .hero-content,
    .detail-layout {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 64px 0 92px;
    }

    .hero-poster,
    .detail-poster {
        width: min(300px, 78vw);
        margin: 0 auto;
        transform: none;
    }

    .hero-underbar {
        grid-template-columns: 1fr;
    }

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

    .channel-grid,
    .channel-grid.large,
    .category-preview-grid {
        grid-template-columns: 1fr;
    }

    .section-title-row,
    .filter-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .local-filter {
        width: 100%;
        justify-content: stretch;
    }

    .local-filter input,
    .local-filter select {
        flex: 1;
    }

    .ranking-card {
        grid-template-columns: 44px 72px 1fr;
    }

    .ranking-card img {
        width: 72px;
        height: 96px;
    }

    .ranking-card b {
        grid-column: 2 / -1;
    }

    .page-hero {
        padding: 42px 24px;
    }
}

@media (max-width: 520px) {
    .container {
        width: min(100% - 22px, 1180px);
    }

    .nav-shell {
        height: 62px;
    }

    .brand-icon {
        width: 34px;
        height: 34px;
    }

    .brand-text em {
        display: none;
    }

    .hero-carousel,
    .hero-content,
    .detail-hero,
    .detail-layout {
        min-height: 680px;
    }

    .hero-copy h1,
    .page-hero h1,
    .category-hero h1,
    .detail-copy h1 {
        font-size: 38px;
    }

    .hero-copy p,
    .page-hero p,
    .category-hero p,
    .detail-one-line {
        font-size: 17px;
    }

    .quick-search-card form,
    .big-search,
    .mobile-panel form {
        flex-direction: column;
    }

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

    .content-section,
    .poster-strip,
    .channel-board,
    .ranking-shell,
    .detail-article,
    .detail-side,
    .player-section {
        padding: 18px;
        border-radius: 22px;
    }

    .rank-item {
        grid-template-columns: 32px 52px 1fr;
    }

    .rank-item b {
        display: none;
    }

    .info-list li {
        grid-template-columns: 1fr;
    }
}
