:root {
    color-scheme: dark;
    --bg: #020617;
    --bg-soft: #0f172a;
    --bg-card: rgba(15, 23, 42, 0.72);
    --bg-card-strong: rgba(30, 41, 59, 0.78);
    --border: rgba(51, 65, 85, 0.9);
    --border-soft: rgba(148, 163, 184, 0.16);
    --text: #f8fafc;
    --muted: #94a3b8;
    --muted-strong: #cbd5e1;
    --cyan: #22d3ee;
    --cyan-deep: #0891b2;
    --orange: #f97316;
    --shadow: 0 20px 45px rgba(8, 47, 73, 0.26);
    --radius: 18px;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 15% 0%, rgba(34, 211, 238, 0.12), transparent 28rem),
        linear-gradient(180deg, #020617 0%, #0f172a 48%, #020617 100%);
    color: var(--text);
}

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

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

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(15, 23, 42, 0.94);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(16px);
}

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

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

.brand-mark {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cyan), #3b82f6);
    color: white;
    box-shadow: 0 0 28px rgba(34, 211, 238, 0.32);
    transition: transform 0.5s ease;
}

.brand:hover .brand-mark {
    transform: rotate(180deg);
}

.brand-text {
    display: grid;
    line-height: 1.12;
}

.brand-text strong {
    font-size: 20px;
    letter-spacing: 0.02em;
}

.brand-text small {
    margin-top: 3px;
    color: var(--cyan);
    font-size: 12px;
}

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

.nav-link {
    color: var(--muted-strong);
    transition: color 0.2s ease;
}

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

.header-search,
.mobile-search,
.search-panel form,
.search-band form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-search input,
.mobile-search input,
.search-panel input,
.search-band input,
.filter-panel input {
    width: 260px;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 11px 16px;
    background: rgba(15, 23, 42, 0.84);
    color: var(--text);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.search-panel input:focus,
.search-band input:focus,
.filter-panel input:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.12);
}

.header-search button,
.mobile-search button,
.search-panel button,
.search-band button {
    border: 0;
    border-radius: 999px;
    padding: 11px 18px;
    background: var(--cyan-deep);
    color: white;
    font-weight: 700;
    transition: background 0.2s ease, transform 0.2s ease;
}

.header-search button:hover,
.mobile-search button:hover,
.search-panel button:hover,
.search-band button:hover {
    background: #06b6d4;
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: white;
    font-size: 28px;
}

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

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

.mobile-links,
.mobile-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.mobile-links a,
.mobile-categories a {
    color: var(--muted-strong);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 7px 12px;
    background: rgba(15, 23, 42, 0.65);
}

.hero {
    position: relative;
    height: 620px;
    overflow: hidden;
    background: #020617;
}

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

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    transition: transform 5s ease;
}

.hero-slide.active .hero-image {
    transform: scale(1.08);
}

.hero-overlay,
.hero-side-overlay {
    position: absolute;
    inset: 0;
}

.hero-overlay {
    background: linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.62) 46%, rgba(2, 6, 23, 0.1) 100%);
}

.hero-side-overlay {
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.92) 0%, rgba(2, 6, 23, 0.62) 42%, rgba(2, 6, 23, 0) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(100% - 32px, 1280px);
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 1280px;
}

.hero-content h1,
.hero-content h2 {
    max-width: 760px;
    margin: 0 0 18px;
    font-size: clamp(42px, 7vw, 76px);
    line-height: 1;
    letter-spacing: -0.05em;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--cyan);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-summary {
    max-width: 700px;
    margin: 0 0 22px;
    color: var(--muted-strong);
    font-size: 18px;
    line-height: 1.8;
    font-style: italic;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 0 30px;
    color: var(--muted-strong);
}

.hero-meta span:not(:last-child)::after {
    content: "•";
    margin-left: 12px;
    color: var(--cyan);
}

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

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

.primary-button {
    min-height: 46px;
    padding: 0 26px;
    background: var(--cyan-deep);
    color: white;
}

.primary-button:hover,
.ranking-action:hover {
    background: #06b6d4;
    transform: translateY(-2px);
}

.ghost-button,
.section-more {
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    color: white;
    backdrop-filter: blur(10px);
}

.ghost-button:hover,
.section-more:hover {
    border-color: var(--cyan);
    transform: translateY(-2px);
}

.hero-controls {
    position: absolute;
    right: max(24px, calc((100vw - 1280px) / 2));
    bottom: 42px;
    z-index: 5;
    display: flex;
    gap: 10px;
}

.hero-controls button {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    font-size: 28px;
    backdrop-filter: blur(12px);
    transition: background 0.2s ease;
}

.hero-controls button:hover {
    background: rgba(255, 255, 255, 0.24);
}

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

.hero-dot {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.48);
    transition: width 0.25s ease, background 0.25s ease;
}

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

.search-band {
    background: rgba(15, 23, 42, 0.6);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
}

.search-band-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
    padding: 28px 0;
}

.search-band h2 {
    margin: 0 0 6px;
    font-size: 26px;
}

.search-band p {
    margin: 0;
    color: var(--muted);
}

.category-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 28px 0 0;
}

.category-chips a,
.tag-list a,
.filter-button {
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 9px 14px;
    background: rgba(15, 23, 42, 0.72);
    color: var(--muted-strong);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.category-chips a:hover,
.tag-list a:hover,
.filter-button:hover,
.filter-button.active {
    border-color: var(--cyan);
    background: rgba(8, 145, 178, 0.25);
    color: white;
}

.page-section {
    padding: 64px 0;
}

.muted-section {
    background: rgba(15, 23, 42, 0.42);
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 30px;
}

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

.section-heading h2 {
    margin: 0;
    font-size: clamp(26px, 4vw, 36px);
}

.section-icon {
    font-size: 32px;
}

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

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

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

.poster-card {
    display: block;
}

.poster-frame {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 16px;
    background: var(--bg-soft);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.poster-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 18px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.38) 58%, transparent);
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.poster-overlay span {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    transform: translateY(14px);
    transition: transform 0.3s ease;
}

.year-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    border-radius: 7px;
    padding: 4px 8px;
    background: rgba(8, 145, 178, 0.92);
    color: white;
    font-size: 12px;
    font-weight: 800;
}

.poster-caption {
    display: grid;
    gap: 7px;
    padding: 12px 2px 0;
}

.poster-caption strong {
    overflow: hidden;
    color: #f1f5f9;
    font-size: 16px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.2s ease;
}

.poster-caption small {
    color: var(--muted);
}

.movie-card:hover .poster-frame {
    transform: scale(1.035);
    box-shadow: var(--shadow);
}

.movie-card:hover .poster-frame img {
    transform: scale(1.1);
}

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

.movie-card:hover .poster-overlay span {
    transform: translateY(0);
}

.movie-card:hover .poster-caption strong {
    color: var(--cyan);
}

.compact-card .poster-caption strong {
    font-size: 15px;
}

.category-strip-group {
    display: grid;
    gap: 38px;
}

.strip-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.strip-title h3 {
    margin: 0;
    color: var(--cyan);
    font-size: 24px;
}

.strip-title a {
    color: var(--muted-strong);
}

.scroll-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 180px;
    gap: 18px;
    overflow-x: auto;
    padding: 0 0 12px;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 34px;
}

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

.ranking-list li a,
.ranking-row a {
    display: grid;
    grid-template-columns: 48px 64px 1fr auto;
    gap: 14px;
    align-items: center;
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    padding: 12px;
    background: var(--bg-card);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.ranking-list li a:hover,
.ranking-row a:hover {
    transform: translateY(-2px);
    border-color: rgba(34, 211, 238, 0.55);
    background: var(--bg-card-strong);
}

.rank-num,
.ranking-position {
    color: var(--cyan);
    font-size: 22px;
    font-weight: 900;
}

.ranking-list img,
.ranking-row img {
    width: 64px;
    height: 86px;
    border-radius: 10px;
    object-fit: cover;
}

.rank-info,
.ranking-copy {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.rank-info strong,
.ranking-copy strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-info small,
.ranking-copy small,
.ranking-copy em {
    color: var(--muted);
    font-style: normal;
}

.ranking-action {
    padding: 9px 14px;
    background: var(--cyan-deep);
    color: white;
}

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

.wide-card {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 16px;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.92), rgba(15, 23, 42, 0.8));
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.wide-card img {
    width: 130px;
    height: 180px;
    object-fit: cover;
}

.wide-card span {
    display: grid;
    align-content: center;
    gap: 8px;
    padding: 18px 18px 18px 0;
}

.wide-card strong {
    font-size: 20px;
}

.wide-card small,
.wide-card em {
    color: var(--muted);
    font-style: normal;
    line-height: 1.65;
}

.page-main {
    padding: 42px 0 80px;
}

.page-title-block {
    max-width: 840px;
    margin: 0 0 36px;
}

.page-title-block h1 {
    margin: 0 0 16px;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.page-title-block p:last-child {
    margin: 0;
    color: var(--muted-strong);
    font-size: 18px;
    line-height: 1.8;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    margin-bottom: 30px;
    color: var(--muted);
}

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

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

.category-tile {
    overflow: hidden;
    border: 1px solid var(--border-soft);
    border-radius: 22px;
    background: var(--bg-card);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 211, 238, 0.56);
    box-shadow: var(--shadow);
}

.tile-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    height: 170px;
    background: rgba(2, 6, 23, 0.7);
}

.tile-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tile-body {
    display: grid;
    gap: 8px;
    padding: 20px;
}

.tile-body strong {
    color: var(--text);
    font-size: 22px;
}

.tile-body small {
    color: var(--muted);
    line-height: 1.7;
}

.filter-panel,
.search-panel {
    display: grid;
    gap: 18px;
    margin: 0 0 30px;
    border: 1px solid var(--border-soft);
    border-radius: 22px;
    padding: 18px;
    background: rgba(15, 23, 42, 0.55);
}

.filter-panel input,
.search-panel input {
    width: min(100%, 520px);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-button {
    cursor: pointer;
}

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

.detail-hero-card {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 34px;
    align-items: stretch;
    border: 1px solid var(--border-soft);
    border-radius: 28px;
    padding: 24px;
    background:
        linear-gradient(135deg, rgba(34, 211, 238, 0.08), transparent 34%),
        rgba(15, 23, 42, 0.68);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 22px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.detail-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.detail-copy h1 {
    margin: 0 0 16px;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.04;
}

.detail-one-line {
    max-width: 860px;
    margin: 0 0 22px;
    color: var(--muted-strong);
    font-size: 19px;
    line-height: 1.8;
}

.detail-meta {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 20px;
}

.detail-meta div {
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    padding: 12px;
    background: rgba(2, 6, 23, 0.36);
}

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

.detail-meta dd {
    margin: 4px 0 0;
    color: white;
    font-weight: 800;
}

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

.player-shell,
.content-card {
    margin-top: 34px;
    border: 1px solid var(--border-soft);
    border-radius: 24px;
    padding: 24px;
    background: rgba(15, 23, 42, 0.68);
}

.player-shell h2,
.content-card h2 {
    margin: 0 0 18px;
    font-size: 26px;
}

.video-box {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    background: #020617;
}

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

.video-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    justify-content: center;
    border: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.68), rgba(2, 6, 23, 0.18));
    color: white;
    font-size: 18px;
    font-weight: 800;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.video-overlay.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.play-circle {
    width: 82px;
    height: 82px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--cyan-deep);
    box-shadow: 0 0 45px rgba(34, 211, 238, 0.35);
    font-size: 32px;
}

.player-message {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 3;
    margin: 0;
    color: #fca5a5;
}

.content-card p {
    margin: 0;
    color: var(--muted-strong);
    font-size: 17px;
    line-height: 1.9;
    white-space: pre-line;
}

.related-section {
    padding-bottom: 0;
}

.search-status {
    min-height: 24px;
    margin-bottom: 20px;
    color: var(--muted-strong);
}

.site-footer {
    margin-top: 70px;
    border-top: 1px solid var(--border);
    background: rgba(15, 23, 42, 0.9);
}

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

.footer-about p,
.site-footer a,
.site-footer li,
.site-footer .footer-bottom {
    color: var(--muted);
}

.footer-about p {
    max-width: 520px;
    line-height: 1.8;
}

.site-footer h2 {
    margin: 0 0 14px;
    font-size: 18px;
}

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

.site-footer a:hover {
    color: var(--cyan);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 18px 16px;
    text-align: center;
}

[hidden] {
    display: none !important;
}

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

    .mobile-toggle {
        display: block;
    }

    .movie-grid,
    .category-grid,
    .latest-grid,
    .related-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

    .split-section,
    .search-band-inner,
    .detail-hero-card {
        grid-template-columns: 1fr;
    }

    .detail-poster {
        max-width: 320px;
    }

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

@media (max-width: 760px) {
    .hero {
        height: 560px;
    }

    .hero-content h1,
    .hero-content h2 {
        font-size: 42px;
    }

    .hero-summary {
        font-size: 16px;
    }

    .hero-controls {
        right: 18px;
        bottom: 26px;
    }

    .hero-dots {
        left: 18px;
        bottom: 40px;
        transform: none;
    }

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

    .category-tile-grid,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .ranking-list li a,
    .ranking-row a {
        grid-template-columns: 40px 56px 1fr;
    }

    .ranking-action {
        display: none;
    }

    .wide-card {
        grid-template-columns: 100px minmax(0, 1fr);
    }

    .wide-card img {
        width: 100px;
        height: 145px;
    }

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

    .player-shell,
    .content-card,
    .detail-hero-card {
        padding: 18px;
    }
}

@media (max-width: 460px) {
    .container,
    .header-inner,
    .mobile-nav,
    .footer-inner,
    .hero-content {
        width: min(100% - 24px, 1280px);
    }

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

    .brand-text small {
        display: none;
    }

    .hero-content h1,
    .hero-content h2,
    .page-title-block h1,
    .detail-copy h1 {
        font-size: 34px;
    }

    .movie-grid,
    .home-grid,
    .category-grid,
    .latest-grid,
    .related-grid {
        gap: 14px;
    }

    .poster-caption strong {
        font-size: 14px;
    }

    .detail-meta {
        grid-template-columns: 1fr;
    }
}
