* {
    box-sizing: border-box;
}

:root {
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-400: #f59e0b;
    --amber-500: #f97316;
    --amber-600: #ea580c;
    --green-500: #10b981;
    --red-500: #ef4444;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    --soft-shadow: 0 10px 30px rgba(15, 23, 42, 0.10);
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 12px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    color: var(--slate-900);
    background: linear-gradient(180deg, var(--amber-50) 0%, #ffffff 38%, var(--slate-50) 100%);
    line-height: 1.6;
}

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

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

button,
input {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(255, 251, 235, 0.96), rgba(255, 237, 213, 0.96));
    border-bottom: 1px solid var(--amber-200);
    box-shadow: 0 5px 20px rgba(217, 119, 6, 0.08);
    backdrop-filter: blur(16px);
}

.header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
    box-shadow: 0 10px 22px rgba(249, 115, 22, 0.26);
    font-size: 18px;
}

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

.brand-text strong {
    font-size: 22px;
    color: #78350f;
}

.brand-text em {
    font-size: 12px;
    color: #b45309;
    font-style: normal;
}

.header-search {
    flex: 1;
    max-width: 420px;
    display: flex;
    align-items: center;
    border: 1px solid #fcd34d;
    border-radius: 999px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(217, 119, 6, 0.08);
}

.header-search input,
.mobile-search input,
.page-search input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 12px 16px;
    color: var(--slate-800);
}

.header-search button,
.mobile-search button,
.page-search button {
    border: 0;
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
    padding: 11px 18px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-search button:hover,
.mobile-search button:hover,
.page-search button:hover,
.primary-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.22);
}

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

.nav-link {
    padding: 9px 13px;
    border-radius: 999px;
    color: #7c2d12;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 12px;
    background: #fff7ed;
    cursor: pointer;
}

.mobile-toggle span {
    width: 20px;
    height: 2px;
    background: #9a3412;
    border-radius: 999px;
}

.mobile-panel {
    display: none;
    padding: 0 16px 16px;
}

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

.mobile-search {
    display: flex;
    margin-bottom: 12px;
    border: 1px solid #fcd34d;
    border-radius: 999px;
    overflow: hidden;
    background: #ffffff;
}

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

.mobile-link {
    padding: 11px 14px;
    border-radius: 12px;
    color: #7c2d12;
    background: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.mobile-link.active,
.mobile-link:hover {
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
}

.home-page {
    min-height: 80vh;
}

.hero-carousel {
    padding: 32px 0 28px;
}

.hero-frame {
    position: relative;
}

.hero-stage {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.28);
    background: var(--slate-900);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.02);
    transition: opacity 0.6s ease, visibility 0.6s ease, transform 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.hero-slide img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(15, 23, 42, 0.58) 52%, rgba(15, 23, 42, 0.18)), linear-gradient(0deg, rgba(0, 0, 0, 0.45), transparent 48%);
}

.hero-content {
    position: absolute;
    left: clamp(24px, 7vw, 86px);
    bottom: clamp(34px, 7vw, 80px);
    max-width: 680px;
    color: #ffffff;
}

.hero-kicker,
.hero-meta,
.detail-meta,
.meta-line,
.tag-row,
.detail-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-kicker span,
.hero-meta span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 13px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
}

.hero-kicker span:first-child {
    background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
}

.hero-content h1,
.hero-content h2 {
    margin: 16px 0 8px;
    font-size: clamp(34px, 6vw, 62px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.hero-content h2 + h2 {
    margin-top: 0;
    font-size: clamp(25px, 4vw, 44px);
}

.hero-content p {
    margin: 0 0 18px;
    color: #e2e8f0;
    font-size: 17px;
    max-width: 620px;
}

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

.primary-btn,
.ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
}

.ghost-btn {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

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

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 52px;
    height: 52px;
    transform: translateY(-50%);
    border: 0;
    border-radius: 50%;
    color: var(--slate-900);
    background: rgba(255, 255, 255, 0.9);
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
    box-shadow: var(--soft-shadow);
    transition: transform 0.2s ease, background 0.2s ease;
}

.hero-arrow:hover {
    transform: translateY(-50%) scale(1.08);
    background: #ffffff;
}

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

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

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

.hero-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.active {
    width: 34px;
    background: var(--amber-400);
}

.section-block {
    margin-top: 54px;
    margin-bottom: 54px;
}

.section-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.section-heading h2 {
    margin: 0;
    font-size: 28px;
    line-height: 1.2;
}

.section-heading p {
    margin: 3px 0 0;
    color: var(--slate-600);
    font-size: 14px;
}

.section-heading > a {
    margin-left: auto;
    color: var(--amber-600);
    font-weight: 700;
}

.section-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-weight: 800;
    box-shadow: var(--soft-shadow);
}

.section-icon.red {
    background: linear-gradient(135deg, var(--red-500), var(--amber-600));
}

.section-icon.green {
    background: linear-gradient(135deg, var(--green-500), #059669);
}

.section-icon.amber {
    background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
}

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

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

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

.movie-card {
    min-width: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

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

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.42));
    opacity: 0.78;
}

.year-badge,
.category-badge,
.rank-badge {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 9px;
    background: rgba(15, 23, 42, 0.68);
    backdrop-filter: blur(10px);
}

.year-badge {
    top: 12px;
    right: 12px;
}

.category-badge {
    left: 12px;
    bottom: 12px;
    background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
}

.rank-badge {
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #ef4444, #f97316);
}

.play-bubble {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 54px;
    height: 54px;
    z-index: 3;
    display: grid;
    place-items: center;
    transform: translate(-50%, -50%) scale(0.84);
    border-radius: 50%;
    color: #ffffff;
    background: var(--amber-500);
    opacity: 0;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.movie-card:hover .play-bubble {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

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

.movie-card-body h3 {
    min-height: 48px;
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.movie-card:hover h3 {
    color: var(--amber-600);
}

.movie-card-body p {
    min-height: 44px;
    margin: 0 0 12px;
    color: var(--slate-600);
    font-size: 14px;
}

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

.meta-line span + span::before {
    content: "·";
    margin-right: 8px;
    color: var(--slate-400);
}

.tag-row {
    margin-top: 10px;
}

.tag-row span,
.detail-tags a {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 5px 9px;
    color: #92400e;
    background: #ffedd5;
    font-size: 12px;
    font-weight: 600;
}

.warm-band {
    padding: 10px 0;
    background: linear-gradient(135deg, #fef3c7, #fff7ed);
}

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

.horizontal-card {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    padding: 12px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.horizontal-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--soft-shadow);
}

.horizontal-card img {
    width: 112px;
    height: 72px;
    flex-shrink: 0;
    border-radius: 12px;
    object-fit: cover;
    background: var(--slate-200);
}

.horizontal-card span {
    display: grid;
    min-width: 0;
}

.horizontal-card strong {
    overflow: hidden;
    color: var(--slate-900);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.horizontal-card em {
    overflow: hidden;
    color: var(--slate-500);
    font-size: 12px;
    font-style: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

.category-tile,
.category-overview-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 22px;
    background: linear-gradient(135deg, #ffffff, #fff7ed);
    box-shadow: var(--soft-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile::after,
.category-overview-card::after {
    content: "";
    position: absolute;
    right: -24px;
    bottom: -24px;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.12);
}

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

.category-tile span,
.category-overview-card h2 {
    position: relative;
    z-index: 1;
    display: block;
    margin: 0 0 8px;
    color: #7c2d12;
    font-size: 20px;
    font-weight: 800;
}

.category-tile em,
.category-overview-card p {
    position: relative;
    z-index: 1;
    display: block;
    color: var(--slate-600);
    font-size: 14px;
    font-style: normal;
}

.ranking-panel {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 24px;
    align-items: center;
    border-radius: 28px;
    padding: 28px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--slate-900), var(--slate-700));
    box-shadow: var(--shadow);
}

.ranking-copy h2 {
    margin: 0 0 12px;
    font-size: 34px;
}

.ranking-copy p {
    margin: 0 0 22px;
    color: #cbd5e1;
}

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

.page-hero {
    padding: 70px 0;
    color: #ffffff;
    background: radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.32), transparent 30%), linear-gradient(135deg, var(--slate-900), var(--slate-700));
}

.slim-hero {
    padding: 64px 0;
}

.category-hero {
    background: radial-gradient(circle at 20% 0%, rgba(245, 158, 11, 0.32), transparent 35%), linear-gradient(135deg, #7c2d12, #0f172a);
}

.ranking-hero {
    background: radial-gradient(circle at 25% 10%, rgba(239, 68, 68, 0.30), transparent 36%), linear-gradient(135deg, #111827, #7c2d12);
}

.page-hero h1 {
    margin: 14px 0 10px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.1;
}

.page-hero p {
    max-width: 720px;
    margin: 0;
    color: #e2e8f0;
    font-size: 17px;
}

.crumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: #92400e;
    font-size: 14px;
    font-weight: 700;
}

.crumbs a:hover {
    color: var(--amber-600);
}

.crumbs.dark {
    color: #fbbf24;
    margin-bottom: 18px;
}

.page-hero .crumbs {
    color: #fbbf24;
}

.page-search {
    display: flex;
    max-width: 560px;
    margin-top: 24px;
    overflow: hidden;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
}

.category-overview-card a {
    display: block;
    position: relative;
    z-index: 1;
}

.overview-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    border-radius: 13px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
}

.sample-links {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 6px;
    margin-top: 16px;
}

.sample-links a {
    overflow: hidden;
    color: var(--slate-600);
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sample-links a:hover {
    color: var(--amber-600);
}

.ranking-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
    gap: 26px;
}

.side-panel {
    position: sticky;
    top: 98px;
    display: grid;
    gap: 12px;
    border-radius: 22px;
    padding: 18px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
}

.side-panel h2 {
    margin: 0 0 6px;
    font-size: 20px;
}

.detail-page {
    color: #e2e8f0;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 40%, #0f172a 100%);
}

.player-section {
    padding: 36px 0 12px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    aspect-ratio: 16 / 9;
    background: #000000;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.44);
}

.player-shell video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000000;
    cursor: pointer;
}

.player-layer {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    border: 0;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.18), rgba(15, 23, 42, 0.66));
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-play-icon {
    display: grid;
    place-items: center;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    padding-left: 5px;
    background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
    box-shadow: 0 24px 44px rgba(249, 115, 22, 0.34);
    font-size: 36px;
}

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

.detail-main,
.detail-side {
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.92), rgba(51, 65, 85, 0.86));
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.20);
}

.detail-main {
    padding: 30px;
}

.detail-main h1 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
}

.detail-main h2 {
    margin: 28px 0 10px;
    color: #ffffff;
    font-size: 24px;
}

.detail-main p {
    color: #cbd5e1;
    font-size: 16px;
}

.lead-text {
    padding: 18px;
    border-left: 4px solid var(--amber-400);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
}

.detail-meta span {
    border-radius: 999px;
    padding: 6px 12px;
    color: #fed7aa;
    background: rgba(249, 115, 22, 0.13);
    font-size: 13px;
    font-weight: 700;
}

.detail-tags {
    margin-top: 24px;
}

.detail-tags a {
    color: #ffffff;
    background: rgba(245, 158, 11, 0.18);
}

.detail-side {
    overflow: hidden;
    align-self: start;
}

.detail-side img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: var(--slate-700);
}

.side-info {
    display: grid;
    gap: 10px;
    padding: 18px;
}

.side-info strong {
    color: #ffffff;
    font-size: 20px;
}

.side-info span {
    color: #cbd5e1;
}

.light-on-dark h2 {
    color: #ffffff;
}

.light-on-dark p {
    color: #cbd5e1;
}

.compact-card .movie-card-body h3 {
    min-height: auto;
}

.related-grid {
    padding-bottom: 40px;
}

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

.site-footer {
    margin-top: 70px;
    color: #cbd5e1;
    background: linear-gradient(135deg, var(--slate-900), var(--slate-800));
}

.detail-page .site-footer {
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 28px;
    padding: 42px 0;
}

.footer-grid h2 {
    margin: 0 0 12px;
    color: #fbbf24;
    font-size: 18px;
}

.footer-grid p {
    margin: 0;
    color: #94a3b8;
    font-size: 14px;
}

.footer-grid a {
    display: block;
    margin: 8px 0;
    color: #cbd5e1;
    font-size: 14px;
}

.footer-grid a:hover {
    color: #fbbf24;
}

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.22);
    padding: 16px;
    color: #94a3b8;
    text-align: center;
    font-size: 13px;
}

@media (max-width: 1080px) {
    .four-cols {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

    .side-panel {
        position: static;
    }
}

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

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

    .hero-stage,
    .hero-slide img {
        min-height: 560px;
    }

    .hero-content {
        left: 24px;
        right: 24px;
        bottom: 58px;
    }

    .hero-arrow {
        width: 42px;
        height: 42px;
        font-size: 28px;
    }

    .hero-arrow.prev {
        left: 12px;
    }

    .hero-arrow.next {
        right: 12px;
    }

    .four-cols,
    .three-cols,
    .latest-grid,
    .category-grid,
    .overview-grid {
        grid-template-columns: 1fr;
    }

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

    .section-heading > a {
        margin-left: 0;
    }

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

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

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

    .brand-text em {
        display: none;
    }

    .hero-carousel {
        padding-top: 18px;
    }

    .hero-stage {
        border-radius: 20px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-actions,
    .page-search {
        flex-direction: column;
        align-items: stretch;
        border-radius: 18px;
    }

    .page-search button {
        border-radius: 0;
    }

    .movie-card-body h3,
    .movie-card-body p {
        min-height: auto;
    }

    .player-shell {
        border-radius: 16px;
    }

    .player-play-icon {
        width: 72px;
        height: 72px;
        font-size: 28px;
    }

    .detail-main {
        padding: 22px;
    }
}
