:root {
    --bg: #fffbeb;
    --paper: #ffffff;
    --ink: #111827;
    --muted: #6b7280;
    --line: #e5e7eb;
    --orange: #f97316;
    --orange-dark: #ea580c;
    --red: #ef4444;
    --green: #16a34a;
    --black: #111827;
    --shadow: 0 20px 45px rgba(17, 24, 39, 0.12);
    --soft-shadow: 0 12px 28px rgba(17, 24, 39, 0.09);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

img,
video {
    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: 80;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(229, 231, 235, 0.8);
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 68px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.brand-mark {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 12px;
    color: white;
    background: linear-gradient(135deg, var(--orange), var(--red));
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.35);
    font-size: 15px;
}

.brand-text {
    transition: color 0.2s ease;
}

.brand:hover .brand-text,
.desktop-nav a:hover,
.mobile-nav a:hover,
.text-link:hover {
    color: var(--orange-dark);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #374151;
    font-size: 15px;
    font-weight: 700;
}

.desktop-nav a {
    transition: color 0.2s ease;
    white-space: nowrap;
}

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    background: #f3f4f6;
    cursor: pointer;
}

.menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: #111827;
    border-radius: 999px;
}

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

.mobile-nav a {
    display: block;
    padding: 12px 16px;
    border-radius: 14px;
    color: #374151;
    font-weight: 700;
}

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

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    color: #ffffff;
    background: linear-gradient(135deg, #fb923c 0%, #f97316 45%, #ef4444 100%);
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.22), transparent 30%),
        radial-gradient(circle at 82% 24%, rgba(255, 255, 255, 0.16), transparent 28%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.14));
}

.hero-glow {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 999px;
    filter: blur(16px);
    opacity: 0.32;
    pointer-events: none;
}

.hero-glow-one {
    left: -90px;
    top: 60px;
    background: rgba(255, 255, 255, 0.42);
}

.hero-glow-two {
    right: -120px;
    bottom: -90px;
    background: rgba(127, 29, 29, 0.55);
}

.hero-container {
    position: relative;
    z-index: 2;
    padding: 76px 0 62px;
}

.hero-slider {
    position: relative;
    min-height: 420px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.72fr);
    gap: 42px;
    align-items: center;
    opacity: 0;
    transform: translateY(18px);
    pointer-events: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.hero-copy {
    max-width: 760px;
}

.hero-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #fb923c;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-kicker {
    color: #ffedd5;
}

.hero-copy h1 {
    margin: 0 0 10px;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.04;
    letter-spacing: -0.06em;
}

.hero-copy h2 {
    margin: 0 0 18px;
    font-size: clamp(28px, 3.2vw, 48px);
    line-height: 1.12;
}

.hero-copy p {
    max-width: 650px;
    margin: 0 0 26px;
    color: #fff7ed;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.55;
}

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

.hero-tags span,
.tag-row span,
.detail-tags span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.hero-tags span {
    padding: 8px 13px;
    color: white;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    font-weight: 900;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: white;
    background: linear-gradient(135deg, var(--orange), var(--red));
    box-shadow: 0 14px 30px rgba(239, 68, 68, 0.26);
}

.btn-ghost {
    color: white;
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.34);
    backdrop-filter: blur(10px);
}

.btn-dark {
    color: white;
    background: #111827;
}

.btn.full {
    width: 100%;
}

.hero-cover {
    position: relative;
    overflow: hidden;
    min-height: 408px;
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(255, 237, 213, 0.44), rgba(127, 29, 29, 0.2));
    box-shadow: 0 28px 70px rgba(127, 29, 29, 0.36);
    transform: rotate(1.5deg);
}

.hero-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.52));
}

.hero-cover img {
    width: 100%;
    height: 100%;
    min-height: 408px;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.2s ease;
}

.hero-cover:hover img {
    transform: scale(1.06);
}

.hero-cover span {
    position: absolute;
    right: 22px;
    bottom: 22px;
    z-index: 2;
    padding: 8px 14px;
    border-radius: 999px;
    color: white;
    background: rgba(17, 24, 39, 0.78);
    font-weight: 900;
}

.hero-dots {
    position: absolute;
    left: 0;
    bottom: -12px;
    display: flex;
    gap: 10px;
}

.hero-dots button {
    width: 28px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.is-active {
    width: 54px;
    background: white;
}

.home-search-wrap {
    position: relative;
    z-index: 5;
    margin-top: -34px;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) 180px 180px;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(229, 231, 235, 0.8);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--soft-shadow);
    backdrop-filter: blur(14px);
}

.filter-panel label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.filter-panel input,
.filter-panel select {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    color: var(--ink);
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    outline: none;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.filter-panel input:focus,
.filter-panel select:focus {
    border-color: #fdba74;
    box-shadow: 0 0 0 4px rgba(251, 146, 60, 0.18);
}

.section-block {
    padding: 56px 0;
}

.pale-section {
    background: rgba(255, 255, 255, 0.48);
}

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

.section-heading.align-left {
    align-items: center;
}

.section-heading h2,
.page-hero h1,
.detail-info h1,
.text-card h2,
.ranking-panel h2,
.overview-body h2 {
    margin: 0;
    color: var(--ink);
    line-height: 1.16;
    letter-spacing: -0.045em;
}

.section-heading h2 {
    font-size: clamp(26px, 3vw, 38px);
}

.text-link {
    color: #9a3412;
    font-weight: 900;
}

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

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

.category-movie-grid {
    margin-top: 22px;
}

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

.card-link {
    display: grid;
    height: 100%;
    overflow: hidden;
    background: var(--paper);
    border: 1px solid rgba(229, 231, 235, 0.86);
    border-radius: var(--radius);
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card-link:hover {
    transform: translateY(-5px);
    border-color: #fdba74;
    box-shadow: var(--shadow);
}

.poster-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, #fed7aa, #fecaca);
}

.poster-frame::before,
.overview-cover::before,
.detail-poster::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.55), transparent 34%),
        linear-gradient(135deg, #fed7aa, #fecaca);
}

.poster-frame img,
.overview-cover img,
.detail-poster img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease, opacity 0.2s ease;
}

.card-link:hover .poster-frame img {
    transform: scale(1.06);
}

.year-badge,
.rank-badge {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    border-radius: 999px;
    color: white;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.18);
}

.year-badge {
    right: 12px;
    top: 12px;
    padding: 0 10px;
    background: rgba(17, 24, 39, 0.72);
    backdrop-filter: blur(8px);
}

.rank-badge {
    left: 12px;
    top: 12px;
    width: 34px;
    background: linear-gradient(135deg, var(--orange), var(--red));
}

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

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.card-meta span + span::before {
    content: "•";
    margin-right: 8px;
    color: #d1d5db;
}

.card-content h3 {
    display: -webkit-box;
    min-height: 2.4em;
    margin: 0;
    overflow: hidden;
    color: var(--ink);
    font-size: 17px;
    line-height: 1.2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-content p {
    display: -webkit-box;
    min-height: 4.5em;
    margin: 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.tag-row span {
    padding: 5px 9px;
    color: #9a3412;
    background: #ffedd5;
}

.split-feature {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    align-items: start;
}

.ranking-panel {
    position: sticky;
    top: 92px;
    display: grid;
    gap: 16px;
    padding: 22px;
    color: white;
    background: #111827;
    border-radius: 26px;
    box-shadow: var(--shadow);
}

.ranking-panel-head span {
    color: #fb923c;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ranking-panel h2 {
    margin-top: 4px;
    color: white;
}

.rank-list {
    display: grid;
    gap: 8px;
}

.rank-row {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    transition: background 0.2s ease;
}

.rank-row:hover {
    background: rgba(249, 115, 22, 0.18);
}

.rank-row span {
    grid-row: span 2;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--orange), var(--red));
    font-weight: 900;
}

.rank-row strong,
.rank-row em {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-row em {
    color: #d1d5db;
    font-size: 12px;
    font-style: normal;
}

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

.category-card {
    position: relative;
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 18px;
    overflow: hidden;
    padding: 14px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-card img {
    width: 140px;
    height: 180px;
    object-fit: cover;
    border-radius: 18px;
    background: linear-gradient(135deg, #fed7aa, #fecaca);
}

.category-card strong {
    display: block;
    margin: 6px 0 8px;
    font-size: 21px;
    letter-spacing: -0.04em;
}

.category-card p {
    margin: 0 0 14px;
    color: var(--muted);
    line-height: 1.6;
}

.mini-title-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mini-title-row span {
    padding: 6px 9px;
    border-radius: 999px;
    color: #9a3412;
    background: #ffedd5;
    font-size: 12px;
    font-weight: 800;
}

.page-hero {
    color: white;
    background: linear-gradient(135deg, #fb923c 0%, #f97316 52%, #ef4444 100%);
}

.page-hero-inner {
    padding: 70px 0;
}

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

.page-hero h1 {
    max-width: 850px;
    color: white;
    font-size: clamp(38px, 5vw, 62px);
}

.page-hero p {
    max-width: 780px;
    margin: 18px 0 0;
    color: #fff7ed;
    font-size: 18px;
    line-height: 1.7;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 800;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb strong {
    color: white;
}

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

.overview-card {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 22px;
    overflow: hidden;
    padding: 18px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.overview-cover {
    position: relative;
    overflow: hidden;
    min-height: 270px;
    border-radius: 22px;
    background: linear-gradient(135deg, #fed7aa, #fecaca);
}

.overview-body {
    display: grid;
    align-content: center;
    gap: 12px;
}

.overview-body h2 {
    font-size: 28px;
}

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

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

.overview-links a {
    color: #374151;
    font-size: 14px;
    font-weight: 800;
}

.overview-links a:hover {
    color: var(--orange-dark);
}

.ranking-table {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.ranking-table-row {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) 120px 160px;
    gap: 14px;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: white;
    box-shadow: 0 10px 22px rgba(17, 24, 39, 0.05);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.ranking-table-row:hover {
    transform: translateX(4px);
    border-color: #fdba74;
}

.ranking-number {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 14px;
    color: white;
    background: linear-gradient(135deg, var(--orange), var(--red));
    font-weight: 900;
}

.ranking-table-row strong,
.ranking-table-row em,
.ranking-table-row small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ranking-table-row em {
    color: var(--muted);
    font-style: normal;
    font-weight: 800;
}

.ranking-table-row small {
    color: #9ca3af;
    font-weight: 800;
}

.detail-hero {
    padding: 42px 0 58px;
    color: white;
    background:
        radial-gradient(circle at 15% 20%, rgba(251, 146, 60, 0.35), transparent 30%),
        linear-gradient(135deg, #111827 0%, #1f2937 45%, #7c2d12 100%);
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
    gap: 28px;
    align-items: start;
}

.player-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    background: #020617;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.video-shell {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #020617;
    cursor: pointer;
}

.video-shell video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #020617;
}

.player-start {
    position: absolute;
    inset: auto auto 34px 34px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding: 0 22px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    color: white;
    background: rgba(17, 24, 39, 0.72);
    backdrop-filter: blur(14px);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.player-start:hover {
    transform: translateY(-2px);
    background: rgba(249, 115, 22, 0.88);
}

.play-icon {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--orange), var(--red));
    font-size: 14px;
}

.video-shell.is-playing .player-start {
    opacity: 0;
    pointer-events: none;
}

.detail-info-card {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 30px;
    backdrop-filter: blur(18px);
}

.detail-poster {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #fed7aa, #fecaca);
}

.detail-info {
    padding: 22px;
}

.detail-info h1 {
    color: white;
    font-size: clamp(28px, 3vw, 42px);
}

.detail-info p {
    color: #e5e7eb;
    line-height: 1.7;
}

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

.info-list li {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
}

.info-list span {
    color: #d1d5db;
}

.info-list strong {
    color: white;
    text-align: right;
}

.detail-tags span {
    padding: 7px 10px;
    color: #ffedd5;
    background: rgba(249, 115, 22, 0.24);
}

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

.text-card {
    padding: 28px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--soft-shadow);
}

.text-card h2 {
    font-size: 30px;
}

.text-card p {
    margin: 16px 0 0;
    color: #374151;
    font-size: 17px;
    line-height: 1.9;
}

.site-footer {
    padding: 54px 0;
    color: #d1d5db;
    background: #111827;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
    gap: 36px;
}

.site-footer h2,
.site-footer h3 {
    margin: 0 0 14px;
    color: white;
}

.site-footer p {
    margin: 0;
    color: #9ca3af;
    line-height: 1.7;
}

.site-footer ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer a {
    color: #d1d5db;
}

.site-footer a:hover {
    color: #fb923c;
}

.is-hidden-by-filter {
    display: none !important;
}

.empty-filter {
    display: none;
    padding: 22px;
    border: 1px dashed #fdba74;
    border-radius: 20px;
    color: #9a3412;
    background: #ffedd5;
    font-weight: 900;
    text-align: center;
}

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

@media (max-width: 1100px) {
    .desktop-nav {
        gap: 12px;
        font-size: 13px;
    }

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

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

    .ranking-panel {
        position: static;
    }
}

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

    .menu-button {
        display: block;
    }

    .hero-section {
        min-height: 760px;
    }

    .hero-slider {
        min-height: 640px;
    }

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

    .hero-cover,
    .hero-cover img {
        min-height: 300px;
    }

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

    .movie-grid,
    .compact-grid,
    .category-grid,
    .overview-grid,
    .detail-text-grid {
        grid-template-columns: 1fr 1fr;
    }

    .overview-card,
    .category-card {
        grid-template-columns: 1fr;
    }

    .category-card img,
    .overview-cover {
        width: 100%;
        min-height: 250px;
    }

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

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

    .ranking-table-row em,
    .ranking-table-row small {
        display: none;
    }
}

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

    .brand {
        font-size: 20px;
    }

    .hero-container {
        padding-top: 52px;
    }

    .hero-section {
        min-height: 730px;
    }

    .hero-slider {
        min-height: 650px;
    }

    .hero-copy p {
        font-size: 16px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-dots {
        bottom: -2px;
    }

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

    .movie-grid,
    .compact-grid,
    .category-grid,
    .overview-grid,
    .detail-text-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .player-start {
        left: 18px;
        bottom: 18px;
        min-height: 50px;
        padding: 0 16px;
    }

    .text-card {
        padding: 22px;
    }
}
