:root {
    --color-bg: #f6f8fb;
    --color-bg-soft: #eef5ff;
    --color-card: #ffffff;
    --color-text: #101827;
    --color-muted: #64748b;
    --color-line: #e2e8f0;
    --color-blue: #2563eb;
    --color-blue-dark: #1e3a8a;
    --color-cyan: #06b6d4;
    --color-green: #10b981;
    --shadow-card: 0 18px 50px rgba(15, 23, 42, 0.12);
    --shadow-soft: 0 12px 30px rgba(37, 99, 235, 0.14);
    --radius-lg: 26px;
    --radius-md: 18px;
    --radius-sm: 12px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--color-text);
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 38%, #f6f8fb 100%);
    min-width: 320px;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    color: #ffffff;
    background: linear-gradient(90deg, #0f172a 0%, #1e3a8a 48%, #0f172a 100%);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.28);
}

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

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
}

.brand-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #ffffff;
    font-size: 24px;
    background: linear-gradient(135deg, #60a5fa, #22d3ee);
    box-shadow: 0 12px 24px rgba(34, 211, 238, 0.25);
    transition: transform 0.3s ease;
}

.brand:hover .brand-mark {
    transform: scale(1.08) rotate(-3deg);
}

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

.brand-text strong {
    font-size: 19px;
    letter-spacing: 0.02em;
    background: linear-gradient(90deg, #dbeafe, #a5f3fc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-text em {
    margin-top: 5px;
    color: #93c5fd;
    font-size: 12px;
    font-style: normal;
}

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

.nav-link {
    padding: 10px 16px;
    border-radius: 12px;
    color: #dbeafe;
    font-weight: 700;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
    background: rgba(37, 99, 235, 0.78);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    border-radius: 2px;
    background: #ffffff;
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 16px;
}

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

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

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

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

.hero-backdrop,
.hero-layer {
    position: absolute;
    inset: 0;
}

.hero-backdrop {
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    filter: saturate(1.15);
}

.hero-layer {
    background:
        radial-gradient(circle at 18% 28%, rgba(34, 211, 238, 0.34), transparent 30%),
        linear-gradient(90deg, rgba(15, 23, 42, 0.94) 0%, rgba(30, 58, 138, 0.82) 52%, rgba(15, 23, 42, 0.52) 100%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.45), rgba(15, 23, 42, 0.92));
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    min-height: 720px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) 360px;
    gap: 58px;
    align-items: center;
    padding: 80px 0 100px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    color: #cffafe;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
}

.eyebrow.dark {
    color: var(--color-blue-dark);
    background: #dbeafe;
    border-color: #bfdbfe;
}

.hero-copy h1 {
    margin: 0;
    font-size: clamp(40px, 6vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.05em;
    max-width: 880px;
    background: linear-gradient(90deg, #dbeafe, #a5f3fc, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.hero-copy p {
    max-width: 760px;
    margin: 0 0 24px;
    color: #dbeafe;
    font-size: 19px;
    line-height: 1.9;
}

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

.tag {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    color: #1e3a8a;
    background: #dbeafe;
    font-size: 12px;
    font-weight: 800;
}

.hero-tags .tag {
    color: #ffffff;
    background: rgba(37, 99, 235, 0.55);
    border: 1px solid rgba(147, 197, 253, 0.45);
}

.hero-actions,
.page-actions,
.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.primary-btn,
.ghost-btn,
.card-link,
.panel-more,
.home-search button,
.search-page-box button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 14px;
    border: 0;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.primary-btn,
.card-link,
.home-search button,
.search-page-box button {
    color: #ffffff;
    background: linear-gradient(90deg, var(--color-blue), var(--color-cyan));
    box-shadow: 0 16px 34px rgba(37, 99, 235, 0.28);
}

.primary-btn:hover,
.card-link:hover,
.home-search button:hover,
.search-page-box button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(37, 99, 235, 0.34);
}

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

.ghost-btn.dark {
    color: var(--color-blue-dark);
    background: #eff6ff;
    border-color: #bfdbfe;
}

.hero-poster {
    position: relative;
    display: block;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.38);
    transform: perspective(900px) rotateY(-7deg) rotateX(2deg);
    transition: transform 0.35s ease;
}

.hero-poster:hover {
    transform: perspective(900px) rotateY(0deg) translateY(-6px);
}

.hero-poster img {
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.hero-poster span {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 9px 14px;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 800;
    background: rgba(37, 99, 235, 0.85);
    backdrop-filter: blur(10px);
}

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

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

.hero-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 30px;
    line-height: 1;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
}

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

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

.hero-dot.active {
    width: 32px;
    background: #22d3ee;
}

.search-band,
.section-block,
.page-main,
.breadcrumb {
    width: min(1180px, calc(100% - 32px));
    margin-left: auto;
    margin-right: auto;
}

.search-band {
    margin-top: -48px;
    position: relative;
    z-index: 8;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    gap: 24px;
    align-items: center;
    padding: 28px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(20px);
}

.search-band h2,
.section-heading h2,
.panel-title h2,
.page-hero h1,
.detail-info h1,
.detail-content h2 {
    margin: 0;
    color: var(--color-text);
    line-height: 1.16;
    letter-spacing: -0.03em;
}

.search-band h2 {
    font-size: clamp(24px, 3vw, 36px);
}

.home-search,
.search-page-box,
.filter-bar {
    display: flex;
    gap: 12px;
}

.home-search input,
.search-page-box input,
.search-page-box select,
.filter-bar input,
.filter-bar select {
    min-height: 52px;
    width: 100%;
    border: 1px solid var(--color-line);
    border-radius: 16px;
    padding: 0 16px;
    color: var(--color-text);
    background: #ffffff;
    outline: none;
    transition: border 0.25s ease, box-shadow 0.25s ease;
}

.home-search input:focus,
.search-page-box input:focus,
.search-page-box select:focus,
.filter-bar input:focus,
.filter-bar select:focus {
    border-color: #93c5fd;
    box-shadow: 0 0 0 4px #dbeafe;
}

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

.section-block.no-top {
    padding-top: 30px;
}

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

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

.section-heading h2,
.panel-title h2 {
    font-size: clamp(28px, 4vw, 44px);
}

.section-heading a,
.panel-more {
    color: var(--color-blue);
    font-weight: 800;
}

.category-grid,
.category-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: 22px;
    background: linear-gradient(135deg, #ffffff, #eff6ff);
    border: 1px solid #dbeafe;
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile {
    min-height: 168px;
    padding: 24px;
}

.category-tile::after,
.category-overview-card::after {
    content: "";
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(6, 182, 212, 0.22));
}

.category-tile:hover,
.category-overview-card:hover,
.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 58px rgba(37, 99, 235, 0.18);
}

.category-tile span,
.category-overview-main span {
    display: block;
    color: #0f172a;
    font-size: 22px;
    font-weight: 900;
}

.category-tile em,
.category-overview-main em {
    display: block;
    margin-top: 12px;
    color: var(--color-muted);
    font-style: normal;
    line-height: 1.7;
}

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

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

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

.movie-card {
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--color-card);
    border: 1px solid var(--color-line);
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.poster-wrap {
    position: relative;
    display: block;
    overflow: hidden;
    background: #dbeafe;
}

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

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

.poster-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    background: rgba(37, 99, 235, 0.88);
    backdrop-filter: blur(10px);
}

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

.meta-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--color-blue);
    font-size: 12px;
    font-weight: 800;
}

.movie-card h2 {
    min-height: 52px;
    margin: 10px 0 8px;
    font-size: 18px;
    line-height: 1.35;
}

.movie-card h2 a:hover {
    color: var(--color-blue);
}

.movie-card p {
    min-height: 66px;
    margin: 0 0 14px;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.62;
}

.card-link {
    width: 100%;
    margin-top: 16px;
    min-height: 42px;
}

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

.ranking-panel {
    position: sticky;
    top: 96px;
    padding: 22px;
    border-radius: var(--radius-lg);
    background: #ffffff;
    border: 1px solid var(--color-line);
    box-shadow: var(--shadow-card);
}

.compact-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.compact-card {
    display: grid;
    grid-template-columns: auto 66px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: transform 0.25s ease, background 0.25s ease;
}

.compact-card:hover {
    transform: translateX(4px);
    background: #eff6ff;
}

.rank-no {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
}

.compact-card img {
    width: 66px;
    height: 88px;
    border-radius: 12px;
    object-fit: cover;
}

.compact-card strong,
.compact-card em {
    display: block;
}

.compact-card strong {
    font-size: 15px;
    line-height: 1.35;
}

.compact-card em {
    margin-top: 6px;
    color: var(--color-muted);
    font-size: 12px;
    font-style: normal;
    line-height: 1.45;
}

.panel-more {
    width: 100%;
    margin-top: 18px;
    background: #eff6ff;
}

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

.page-hero {
    margin-top: 36px;
    padding: 72px;
    border-radius: 34px;
    color: #ffffff;
    background:
        radial-gradient(circle at 14% 28%, rgba(34, 211, 238, 0.36), transparent 26%),
        linear-gradient(135deg, #0f172a, #1e3a8a 55%, #0f172a);
    box-shadow: var(--shadow-card);
}

.page-hero.slim {
    padding: 58px;
}

.page-hero h1 {
    max-width: 880px;
    color: #ffffff;
    font-size: clamp(34px, 5vw, 58px);
}

.page-hero p {
    max-width: 850px;
    margin: 18px 0 0;
    color: #dbeafe;
    font-size: 18px;
    line-height: 1.85;
}

.filter-bar,
.search-page-box {
    margin: 28px 0 0;
    padding: 18px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-line);
}

.filter-bar select,
.search-page-box select {
    max-width: 220px;
}

.category-overview-card {
    padding: 24px;
}

.category-overview-main,
.category-samples {
    position: relative;
    z-index: 2;
}

.category-samples {
    display: grid;
    gap: 8px;
    margin-top: 20px;
}

.category-samples a {
    color: var(--color-blue-dark);
    font-weight: 700;
}

.search-page-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px 120px;
    width: min(1180px, calc(100% - 32px));
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    padding: 28px 0 0;
    color: var(--color-muted);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--color-blue);
    font-weight: 800;
}

.detail-hero {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 38px;
    align-items: center;
    margin-top: 24px;
    padding: 32px;
    border-radius: 34px;
    background: #ffffff;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-line);
}

.detail-cover {
    overflow: hidden;
    border-radius: 26px;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18);
}

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

.detail-info h1 {
    font-size: clamp(34px, 5vw, 62px);
}

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

.detail-meta span {
    padding: 8px 12px;
    border-radius: 12px;
    color: #1e3a8a;
    background: #eff6ff;
    font-weight: 800;
}

.detail-one-line {
    color: var(--color-muted);
    font-size: 18px;
    line-height: 1.85;
}

.watch-section,
.detail-content,
.detail-neighbor {
    margin-top: 34px;
}

.video-shell {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    background: #020617;
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.35);
}

.video-shell video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #020617;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 12px;
    border: 0;
    color: #ffffff;
    cursor: pointer;
    background:
        radial-gradient(circle at center, rgba(37, 99, 235, 0.2), transparent 35%),
        linear-gradient(180deg, rgba(2, 6, 23, 0.38), rgba(2, 6, 23, 0.76));
}

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

.play-icon {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    padding-left: 4px;
    color: #ffffff;
    font-size: 30px;
    background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.42);
}

.play-overlay strong {
    font-size: clamp(24px, 4vw, 44px);
}

.play-overlay em {
    color: #bfdbfe;
    font-style: normal;
    font-weight: 800;
}

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

.detail-content article {
    padding: 28px;
    border-radius: var(--radius-lg);
    background: #ffffff;
    border: 1px solid var(--color-line);
    box-shadow: var(--shadow-soft);
}

.detail-content h2 {
    font-size: 26px;
}

.detail-content p {
    margin: 18px 0 0;
    color: #334155;
    font-size: 17px;
    line-height: 1.95;
}

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

.detail-neighbor a {
    padding: 18px 20px;
    border-radius: 18px;
    color: var(--color-blue-dark);
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    font-weight: 800;
}

.related-block {
    width: 100%;
}

.site-footer {
    margin-top: 80px;
    color: #cbd5e1;
    background: linear-gradient(135deg, #0f172a, #111827);
}

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

.footer-brand {
    color: #ffffff;
    font-size: 24px;
}

.footer-about p {
    max-width: 460px;
    margin: 16px 0 0;
    line-height: 1.8;
}

.footer-links h2 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: 18px;
}

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

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

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

@media (max-width: 1120px) {
    .movie-grid,
    .archive-grid,
    .category-movie-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

    .ranking-panel {
        position: static;
    }
}

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

    .menu-toggle {
        display: block;
    }

    .hero-content,
    .search-band,
    .detail-hero,
    .footer-inner,
    .search-page-box {
        grid-template-columns: 1fr;
    }

    .hero-content {
        gap: 32px;
        padding-top: 52px;
    }

    .hero-poster {
        max-width: 320px;
        margin: 0 auto;
    }

    .movie-grid,
    .recommended-grid,
    .related-grid,
    .ranking-grid,
    .archive-grid,
    .category-movie-grid,
    .category-grid,
    .category-overview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section-heading,
    .detail-neighbor,
    .filter-bar,
    .home-search {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-bar select,
    .search-page-box select {
        max-width: none;
    }

    .page-hero,
    .page-hero.slim,
    .detail-hero {
        padding: 28px;
        border-radius: 26px;
    }
}

@media (max-width: 560px) {
    .header-inner {
        width: min(100% - 20px, 1180px);
        height: 66px;
    }

    .brand-mark {
        width: 40px;
        height: 40px;
    }

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

    .brand-text em {
        display: none;
    }

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

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

    .hero-actions,
    .page-actions,
    .detail-actions {
        display: grid;
    }

    .movie-grid,
    .recommended-grid,
    .related-grid,
    .ranking-grid,
    .archive-grid,
    .category-movie-grid,
    .category-grid,
    .category-overview-grid {
        grid-template-columns: 1fr;
    }

    .compact-card {
        grid-template-columns: auto 58px minmax(0, 1fr);
    }

    .compact-card img {
        width: 58px;
        height: 78px;
    }

    .search-band,
    .filter-bar,
    .search-page-box {
        padding: 16px;
        border-radius: 20px;
    }
}
