:root {
    --primary: #0284c7;
    --primary-dark: #0369a1;
    --primary-soft: #f0f9ff;
    --secondary-soft: #f0fdf4;
    --accent: #f97316;
    --dark: #111827;
    --muted: #6b7280;
    --line: #e5e7eb;
    --page: #f9fafb;
    --card: #ffffff;
    --shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    --shadow-strong: 0 22px 45px rgba(15, 23, 42, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--page);
    color: var(--dark);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
}

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

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

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(14px);
}

.site-nav {
    width: min(100% - 32px, 1280px);
    height: 64px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #111827;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.logo-icon {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.logo-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.logo-play {
    fill: #ffffff;
}

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

.nav-link {
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: #f3f4f6;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-button span {
    width: 18px;
    height: 2px;
    background: #374151;
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    border-top: 1px solid var(--line);
    padding: 10px 16px 16px;
    background: #ffffff;
}

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

.mobile-link {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    color: #374151;
}

.mobile-link:hover,
.mobile-link.active {
    background: var(--primary-soft);
    color: var(--primary);
}

.home-wrap,
.content-wrap,
.detail-wrap {
    width: min(100% - 32px, 1280px);
    margin: 0 auto;
}

.home-wrap {
    padding: 32px 0 0;
    display: grid;
    gap: 64px;
}

.hero-slider {
    position: relative;
    height: 70vh;
    min-height: 520px;
    overflow: hidden;
    border-radius: 24px;
    background: #020617;
    box-shadow: var(--shadow-strong);
}

.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-slide img,
.feature-banner img,
.top-rank-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.05));
}

.hero-content {
    position: absolute;
    left: clamp(24px, 5vw, 56px);
    right: clamp(24px, 5vw, 56px);
    bottom: clamp(34px, 7vw, 76px);
    max-width: 760px;
    color: #ffffff;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    width: max-content;
    padding: 5px 12px;
    border-radius: 999px;
    background: var(--primary);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.eyebrow.accent {
    background: var(--accent);
}

.hero-content h1 {
    margin: 14px 0 16px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.05;
    font-weight: 850;
    letter-spacing: -0.04em;
}

.hero-content p {
    max-width: 680px;
    margin: 0 0 22px;
    color: #e5e7eb;
    font-size: 18px;
}

.hero-meta,
.detail-meta,
.meta-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-meta {
    color: #e5e7eb;
    margin-bottom: 26px;
}

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

.primary-button,
.ghost-button,
.section-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.primary-button {
    min-height: 46px;
    padding: 0 28px;
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(2, 132, 199, 0.25);
}

.primary-button:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.ghost-button {
    min-height: 46px;
    padding: 0 24px;
    background: rgba(0, 0, 0, 0.48);
    color: #ffffff;
}

.ghost-button:hover {
    background: rgba(0, 0, 0, 0.68);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.48);
    color: #ffffff;
    font-size: 32px;
    line-height: 1;
    transform: translateY(-50%);
    transition: background 0.2s ease;
}

.hero-arrow:hover {
    background: rgba(0, 0, 0, 0.72);
}

.hero-prev {
    left: 16px;
}

.hero-next {
    right: 16px;
}

.hero-dots {
    position: absolute;
    right: 28px;
    bottom: 26px;
    display: flex;
    gap: 8px;
}

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

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

.search-panel {
    padding: 24px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.search-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 18px;
    min-height: 52px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #ffffff;
}

.search-box span {
    color: var(--primary);
    font-size: 24px;
    line-height: 1;
}

.search-box input {
    width: 100%;
    border: 0;
    outline: 0;
    color: #111827;
    background: transparent;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.filter-chip {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 14px;
    background: #ffffff;
    color: #374151;
    transition: all 0.2s ease;
}

.filter-chip:hover,
.filter-chip.active {
    border-color: var(--primary);
    background: var(--primary-soft);
    color: var(--primary-dark);
}

.section-block {
    display: grid;
    gap: 24px;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}

.section-head h2 {
    margin: 0;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-head p {
    margin: 8px 0 0;
    color: var(--muted);
}

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

.section-more {
    padding: 8px 16px;
    color: var(--primary);
    background: var(--primary-soft);
}

.section-more:hover {
    background: #e0f2fe;
}

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

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

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

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

.movie-card[hidden] {
    display: none;
}

.movie-card-link {
    display: block;
    overflow: hidden;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: var(--shadow);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

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

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

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

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

.poster-glow {
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.62), transparent 62%);
    transition: opacity 0.32s ease;
}

.movie-card-link:hover .poster-glow {
    opacity: 1;
}

.score,
.category-badge,
.rank-badge {
    position: absolute;
    z-index: 2;
    border-radius: 8px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
}

.score {
    top: 10px;
    right: 10px;
    padding: 5px 8px;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(8px);
}

.score span {
    color: #facc15;
    margin-right: 3px;
}

.category-badge {
    left: 10px;
    bottom: 10px;
    padding: 4px 8px;
    background: var(--primary);
}

.rank-badge {
    left: 10px;
    top: 10px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    background: var(--accent);
    box-shadow: 0 8px 18px rgba(249, 115, 22, 0.35);
}

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

.movie-card-body h3 {
    min-height: 44px;
    margin: 0 0 8px;
    color: #111827;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 750;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.movie-card-link:hover h3 {
    color: var(--primary);
}

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

.movie-card.compact .movie-card-body p {
    display: none;
}

.meta-line {
    color: var(--muted);
    font-size: 13px;
    gap: 8px;
}

.feature-banner {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 24px;
    background: #020617;
    box-shadow: var(--shadow-strong);
}

.feature-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6), transparent);
}

.feature-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 720px;
    padding: 48px 64px;
    color: #ffffff;
}

.feature-content h2 {
    margin: 18px 0;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.feature-content p {
    margin: 0 0 28px;
    color: #e5e7eb;
    font-size: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.soft-panel {
    padding: 32px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--primary-soft), var(--secondary-soft));
}

.pill-text {
    color: var(--primary);
    font-weight: 800;
}

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

.category-tile,
.category-overview-card {
    border-radius: 20px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.category-tile {
    padding: 24px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-tile strong {
    display: block;
    margin-bottom: 10px;
    font-size: 20px;
}

.category-tile span {
    color: var(--muted);
    font-size: 14px;
}

.rank-section {
    margin-bottom: 16px;
}

.rank-card {
    padding: 32px;
    border-radius: 24px;
    background: #111827;
    color: #ffffff;
    box-shadow: var(--shadow-strong);
}

.rank-card .section-head p {
    color: #d1d5db;
}

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

.rank-list a {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 13px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    transition: background 0.2s ease, transform 0.2s ease;
}

.rank-list a:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(4px);
}

.rank-list span {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--primary);
    font-weight: 800;
}

.rank-list strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-list em {
    color: #facc15;
    font-style: normal;
    font-weight: 800;
}

.page-hero {
    width: min(100% - 32px, 1280px);
    margin: 32px auto 32px;
    padding: clamp(34px, 6vw, 70px);
    border-radius: 28px;
    background: radial-gradient(circle at top left, rgba(2, 132, 199, 0.16), transparent 34%), linear-gradient(135deg, #ffffff, #f8fafc);
    box-shadow: var(--shadow);
}

.page-hero h1 {
    max-width: 820px;
    margin: 18px 0 12px;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.page-hero p {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
    font-size: 18px;
}

.content-wrap {
    display: grid;
    gap: 32px;
}

.listing-grid {
    margin-bottom: 18px;
}

.category-overview-card {
    padding: 22px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-overview-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.category-overview-head h2 {
    margin: 0 0 8px;
}

.category-overview-head p {
    margin: 0;
    color: var(--muted);
}

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

.small-card {
    display: flex;
    gap: 10px;
    align-items: center;
    min-width: 0;
    padding: 8px;
    border-radius: 12px;
    background: #f9fafb;
    transition: background 0.2s ease;
}

.small-card:hover {
    background: var(--primary-soft);
}

.small-card img {
    width: 48px;
    height: 64px;
    flex: 0 0 auto;
    object-fit: cover;
    border-radius: 8px;
}

.small-card div {
    min-width: 0;
}

.small-card strong,
.small-card span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.small-card strong {
    font-size: 14px;
}

.small-card span {
    color: var(--muted);
    font-size: 12px;
}

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

.top-rank-card {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: var(--shadow-strong);
    color: #ffffff;
}

.top-rank-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.88), transparent 70%);
}

.top-rank-card div {
    position: absolute;
    z-index: 2;
    left: 22px;
    right: 22px;
    bottom: 22px;
}

.top-rank-card span {
    color: #facc15;
    font-weight: 900;
}

.top-rank-card strong {
    display: block;
    margin: 8px 0;
    font-size: 24px;
}

.top-rank-card p {
    margin: 0 0 10px;
    color: #e5e7eb;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.top-rank-card em {
    font-style: normal;
    font-weight: 850;
}

.detail-wrap {
    padding-top: 24px;
    display: grid;
    gap: 32px;
}

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

.breadcrumb a {
    color: var(--primary);
}

.player-card {
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.player-stage {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.player-stage video {
    width: 100%;
    height: 100%;
    background: #000000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 0;
    color: #ffffff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.18));
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.player-overlay.hidden,
.player-loading.hidden,
.player-error.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.play-circle {
    width: 74px;
    height: 74px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--primary);
    box-shadow: 0 18px 38px rgba(2, 132, 199, 0.35);
    font-size: 28px;
    text-indent: 4px;
}

.player-overlay strong {
    max-width: min(90%, 680px);
    font-size: clamp(20px, 3vw, 36px);
    text-align: center;
}

.player-loading,
.player-error {
    position: absolute;
    z-index: 4;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 12px;
    padding: 12px 16px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.64);
}

.player-loading {
    opacity: 0;
    visibility: hidden;
}

.player-loading.active {
    opacity: 1;
    visibility: visible;
}

.player-error {
    display: none;
    color: #fecaca;
}

.player-error.active {
    display: block;
}

.detail-content {
    padding: clamp(24px, 4vw, 40px);
    display: grid;
    gap: 28px;
}

.detail-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.detail-title-row h1 {
    margin: 0 0 12px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.detail-meta {
    color: var(--muted);
}

.category-pill {
    flex: 0 0 auto;
    padding: 10px 16px;
    border-radius: 999px;
    color: var(--primary-dark);
    background: var(--primary-soft);
    font-weight: 800;
}

.text-section {
    display: grid;
    gap: 10px;
}

.text-section h2 {
    margin: 0;
    font-size: 20px;
}

.text-section p {
    margin: 0;
    color: #374151;
    line-height: 1.85;
}

.info-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
}

.info-list div {
    padding: 14px;
    border-radius: 14px;
    background: #f9fafb;
}

.info-list dt {
    color: var(--muted);
    font-size: 13px;
}

.info-list dd {
    margin: 6px 0 0;
    font-weight: 750;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-list span {
    padding: 7px 12px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #374151;
    font-size: 14px;
}

.detail-related {
    margin-bottom: 16px;
}

.empty-state {
    display: none;
    margin: 0 0 32px;
    padding: 24px;
    border-radius: 18px;
    background: #ffffff;
    color: var(--muted);
    text-align: center;
    box-shadow: var(--shadow);
}

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

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

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

.footer-brand {
    color: #ffffff;
    margin-bottom: 14px;
}

.footer-brand .logo-icon {
    color: #38bdf8;
}

.footer-main p {
    max-width: 540px;
    color: #9ca3af;
}

.site-footer h3 {
    margin: 0 0 14px;
    color: #ffffff;
}

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

.site-footer a {
    color: #d1d5db;
    transition: color 0.2s ease;
}

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

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

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

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

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

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

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

    .home-wrap {
        padding-top: 18px;
        gap: 42px;
    }

    .hero-slider {
        min-height: 480px;
        height: 62vh;
        border-radius: 18px;
    }

    .hero-content {
        left: 20px;
        right: 20px;
        bottom: 46px;
    }

    .hero-content p,
    .feature-content p,
    .page-hero p {
        font-size: 16px;
    }

    .hero-arrow {
        width: 40px;
        height: 40px;
    }

    .feature-banner {
        height: 440px;
        border-radius: 18px;
    }

    .feature-content {
        padding: 28px;
    }

    .section-head,
    .detail-title-row,
    .category-overview-head {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .top-rank-grid,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .soft-panel,
    .rank-card {
        padding: 22px;
    }
}

@media (max-width: 560px) {
    .home-wrap,
    .content-wrap,
    .detail-wrap,
    .site-nav,
    .footer-inner,
    .page-hero {
        width: min(100% - 24px, 1280px);
    }

    .brand {
        font-size: 18px;
    }

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

    .hero-arrow {
        display: none;
    }

    .hero-dots {
        right: 20px;
        bottom: 18px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .grid-5,
    .grid-6,
    .category-grid,
    .overview-grid,
    .small-card-grid,
    .info-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

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

    .movie-card-body h3 {
        min-height: 40px;
        font-size: 14px;
    }

    .meta-line,
    .movie-card-body p {
        font-size: 12px;
    }

    .feature-banner {
        height: 520px;
    }

    .page-hero {
        padding: 28px;
        margin-top: 20px;
    }

    .search-panel {
        padding: 16px;
    }

    .detail-content {
        padding: 20px;
    }

    .player-overlay strong {
        font-size: 20px;
    }

    .play-circle {
        width: 60px;
        height: 60px;
    }
}
