:root {
    --bg: #f8fafc;
    --surface: #ffffff;
    --surface-soft: #f1f5f9;
    --ink: #0f172a;
    --muted: #64748b;
    --line: #e2e8f0;
    --teal: #14b8a6;
    --teal-dark: #0f766e;
    --cyan: #06b6d4;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    --shadow-soft: 0 10px 28px rgba(15, 23, 42, 0.08);
    --radius: 22px;
    font-family: "Inter", "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    backdrop-filter: blur(14px);
}

.header-inner {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.brand-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--teal), var(--cyan));
    box-shadow: 0 10px 22px rgba(20, 184, 166, 0.3);
}

.brand-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.brand-text {
    font-size: 24px;
    background: linear-gradient(90deg, var(--teal-dark), var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    white-space: nowrap;
}

.nav-link {
    color: #334155;
    font-weight: 700;
    transition: color 0.25s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
    color: var(--teal-dark);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-form {
    position: relative;
    display: flex;
    align-items: center;
}

.search-form input {
    width: 260px;
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    padding: 10px 44px 10px 16px;
    color: var(--ink);
    background: #ffffff;
    outline: none;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.search-form input:focus,
.large-search input:focus,
.filter-field input:focus,
.filter-field select:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.16);
}

.search-form button {
    position: absolute;
    right: 8px;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border: 0;
    color: #64748b;
    background: transparent;
}

.search-form svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: #f1f5f9;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: #0f172a;
    border-radius: 999px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

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

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

.mobile-link {
    font-weight: 700;
    color: #334155;
}

.mobile-search {
    display: flex;
    gap: 10px;
}

.mobile-search input {
    min-width: 0;
    flex: 1;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 10px 12px;
}

.mobile-search button {
    border: 0;
    border-radius: 12px;
    padding: 10px 16px;
    color: #ffffff;
    background: var(--teal);
}

.hero {
    position: relative;
    height: 70vh;
    min-height: 560px;
    overflow: hidden;
    background: #020617;
}

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

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

.hero-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, #020617 4%, rgba(2, 6, 23, 0.74) 42%, rgba(2, 6, 23, 0.2) 100%);
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 76px;
}

.hero-copy {
    width: min(680px, 100%);
    color: #ffffff;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--teal);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1,
.intro-copy h1 {
    margin: 0;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.06em;
}

.hero-summary {
    max-width: 620px;
    margin: 22px 0;
    color: #e2e8f0;
    font-size: 20px;
}

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

.hero-meta span,
.detail-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    color: #e2e8f0;
    background: rgba(15, 23, 42, 0.3);
}

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

.primary-button,
.ghost-button,
.text-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.primary-button {
    min-height: 48px;
    padding: 0 28px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--teal), var(--cyan));
    box-shadow: 0 16px 30px rgba(20, 184, 166, 0.28);
}

.primary-button:hover,
.ghost-button:hover,
.text-button:hover {
    transform: translateY(-2px);
}

.ghost-button {
    min-height: 48px;
    padding: 0 28px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    color: #ffffff;
    font-size: 42px;
    line-height: 1;
    background: rgba(2, 6, 23, 0.52);
    transform: translateY(-50%);
    transition: background 0.25s ease;
}

.hero-arrow:hover {
    background: rgba(2, 6, 23, 0.78);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

.hero-dot {
    width: 34px;
    height: 5px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.36);
}

.hero-dot.is-active {
    background: #ffffff;
}

.intro-search {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    align-items: center;
    margin-top: -54px;
    padding: 32px;
    border: 1px solid rgba(226, 232, 240, 0.82);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.intro-copy h1 {
    font-size: clamp(30px, 4vw, 46px);
    color: var(--ink);
}

.intro-copy p:last-child {
    margin: 14px 0 0;
    color: var(--muted);
}

.large-search {
    display: flex;
    gap: 12px;
    padding: 8px;
    border-radius: 999px;
    background: var(--surface-soft);
}

.large-search input {
    min-width: 0;
    flex: 1;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 14px 18px;
    background: #ffffff;
    outline: none;
}

.large-search button {
    border: 0;
    border-radius: 999px;
    padding: 0 26px;
    color: #ffffff;
    font-weight: 800;
    background: linear-gradient(135deg, var(--teal), var(--cyan));
}

.content-section {
    padding: 74px 0 0;
}

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

.section-heading h2,
.ranking-panel h2,
.detail-article h2,
.site-footer h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.section-heading a,
.ranking-panel-head a,
.text-button {
    color: var(--teal-dark);
    font-weight: 900;
}

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

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

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

.movie-card > a {
    display: block;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.92);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.movie-card > a:hover {
    transform: translateY(-6px);
    border-color: rgba(20, 184, 166, 0.45);
    box-shadow: var(--shadow);
}

.poster-frame {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e2e8f0;
}

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

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

.play-mark {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(20, 184, 166, 0.9);
    box-shadow: 0 12px 26px rgba(20, 184, 166, 0.32);
}

.rank-badge {
    position: absolute;
    left: 14px;
    top: 14px;
    z-index: 2;
    min-width: 38px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(135deg, #f97316, #ef4444);
}

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

.movie-meta {
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.movie-card h2 {
    display: -webkit-box;
    min-height: 52px;
    margin: 0;
    overflow: hidden;
    color: var(--ink);
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: -0.02em;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

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

.tag-list span {
    padding: 5px 9px;
    border-radius: 999px;
    color: #0f766e;
    font-size: 12px;
    font-weight: 800;
    background: #ccfbf1;
}

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

.compact-card h2 {
    min-height: 46px;
    font-size: 17px;
}

.compact-card .movie-line,
.compact-card .tag-list {
    display: none;
}

.two-column-section {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(340px, 0.6fr);
    gap: 30px;
    align-items: start;
}

.ranking-panel {
    position: sticky;
    top: 96px;
    padding: 24px;
    border-radius: var(--radius);
    color: #ffffff;
    background: linear-gradient(160deg, #0f172a, #134e4a);
    box-shadow: var(--shadow);
}

.ranking-panel h2,
.ranking-panel .eyebrow {
    color: #ffffff;
}

.ranking-panel-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.ranking-panel-head a {
    color: #99f6e4;
}

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

.ranking-row {
    display: grid;
    grid-template-columns: 44px 70px minmax(0, 1fr);
    grid-template-areas:
        "num img title"
        "num img meta";
    gap: 4px 12px;
    align-items: center;
    padding: 10px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.25s ease, transform 0.25s ease;
}

.ranking-row:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateX(4px);
}

.ranking-number {
    grid-area: num;
    color: #99f6e4;
    font-weight: 900;
    font-size: 20px;
}

.ranking-row img {
    grid-area: img;
    width: 70px;
    height: 52px;
    border-radius: 12px;
    object-fit: cover;
}

.ranking-title {
    grid-area: title;
    min-width: 0;
    overflow: hidden;
    color: #ffffff;
    font-weight: 800;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ranking-meta {
    grid-area: meta;
    color: #cbd5e1;
    font-size: 13px;
}

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

.wide-ranking .ranking-row {
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.wide-ranking .ranking-title,
.wide-ranking .ranking-number {
    color: var(--ink);
}

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

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

.category-tile,
.category-overview-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.category-tile-main {
    display: grid;
    gap: 10px;
    padding: 24px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--teal-dark), var(--cyan));
}

.category-tile-main span {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.category-tile-main strong {
    color: #ecfeff;
    font-weight: 500;
}

.category-mini-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 16px 20px 20px;
}

.category-mini-links a {
    padding: 7px 10px;
    border-radius: 999px;
    color: #0f766e;
    font-size: 13px;
    font-weight: 800;
    background: #ccfbf1;
}

.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(135deg, #0f172a, #134e4a 52%, #0891b2);
}

.page-hero {
    padding: 74px 0 84px;
}

.compact-hero {
    padding: 56px 0 68px;
}

.page-hero h1 {
    margin-bottom: 18px;
    color: #ffffff;
}

.page-hero p:not(.eyebrow) {
    max-width: 760px;
    color: #dbeafe;
    font-size: 18px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 22px;
    color: #ccfbf1;
    font-size: 14px;
    font-weight: 800;
}

.breadcrumb strong {
    color: #ffffff;
    font-weight: 900;
}

.filter-panel {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    gap: 16px;
    margin-bottom: 24px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.filter-field {
    display: grid;
    gap: 8px;
}

.filter-field label {
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
}

.filter-field input,
.filter-field select {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 14px;
    padding: 12px 13px;
    background: #ffffff;
    outline: none;
}

.category-poster-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    height: 190px;
    background: #e2e8f0;
}

.category-poster-row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-overview-body {
    padding: 22px;
}

.category-overview-body h2 {
    margin: 0 0 10px;
    font-size: 26px;
    letter-spacing: -0.04em;
}

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

.category-overview-body .category-mini-links {
    padding: 0 0 18px;
}

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

.detail-bg,
.detail-bg-shade {
    position: absolute;
    inset: 0;
}

.detail-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(4px) saturate(1.08);
    transform: scale(1.04);
}

.detail-bg-shade {
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.95), rgba(2, 6, 23, 0.72), rgba(2, 6, 23, 0.4));
}

.detail-hero-inner {
    position: relative;
    padding: 54px 0 70px;
}

.detail-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 42px;
    align-items: center;
}

.detail-poster {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

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

.detail-copy h1 {
    color: #ffffff;
}

.detail-one-line {
    max-width: 760px;
    color: #e2e8f0;
    font-size: 20px;
}

.detail-tags {
    margin-bottom: 26px;
}

.player-section {
    padding-top: 54px;
}

.player-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #020617;
    box-shadow: var(--shadow);
}

.movie-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 18px;
    border: 0;
    color: #ffffff;
    text-align: center;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.64), rgba(2, 6, 23, 0.18));
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.player-play-icon {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 32px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--teal), var(--cyan));
    box-shadow: 0 18px 35px rgba(20, 184, 166, 0.35);
}

.player-overlay strong {
    max-width: min(760px, calc(100% - 40px));
    font-size: clamp(24px, 4vw, 46px);
    line-height: 1.15;
}

.detail-text-section {
    padding-top: 46px;
}

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

.detail-article h2 {
    margin: 0 0 16px;
    font-size: 28px;
}

.detail-article h2:not(:first-child) {
    margin-top: 30px;
}

.detail-article p {
    margin: 0;
    color: #334155;
    font-size: 18px;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding: 54px 0;
}

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

.footer-about p {
    max-width: 580px;
    color: #94a3b8;
}

.site-footer h2 {
    margin-bottom: 16px;
    color: #ffffff;
    font-size: 18px;
    letter-spacing: 0;
}

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

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

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

.search-page-form {
    max-width: 760px;
    margin-top: 24px;
}

.empty-state {
    grid-column: 1 / -1;
    padding: 36px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--muted);
    text-align: center;
    background: #ffffff;
}

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

    .menu-toggle {
        display: block;
    }

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

    .two-column-section {
        grid-template-columns: 1fr;
    }

    .ranking-panel {
        position: static;
    }
}

@media (max-width: 820px) {
    .header-inner {
        height: 66px;
    }

    .brand-text {
        font-size: 20px;
    }

    .hero {
        height: 72vh;
        min-height: 520px;
    }

    .hero-arrow {
        display: none;
    }

    .hero-content {
        padding-bottom: 64px;
    }

    .hero-summary,
    .detail-one-line {
        font-size: 17px;
    }

    .intro-search,
    .filter-panel,
    .detail-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .intro-search {
        margin-top: 0;
        border-radius: 0;
        width: 100%;
    }

    .large-search {
        border-radius: 22px;
        flex-direction: column;
    }

    .large-search button {
        min-height: 48px;
    }

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

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

    .detail-layout {
        gap: 26px;
    }

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

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

    .hero-copy h1,
    .page-hero h1,
    .detail-copy h1,
    .intro-copy h1 {
        font-size: 34px;
    }

    .hero-meta,
    .detail-meta {
        gap: 8px;
    }

    .hero-meta span,
    .detail-meta span {
        min-height: 30px;
        font-size: 13px;
    }

    .movie-grid,
    .small-grid,
    .category-grid,
    .category-overview-grid,
    .wide-ranking {
        grid-template-columns: 1fr;
    }

    .content-section {
        padding-top: 48px;
    }

    .movie-card h2 {
        min-height: auto;
    }

    .detail-hero {
        min-height: 0;
    }

    .detail-hero-inner {
        padding: 38px 0 46px;
    }

    .player-card,
    .detail-article {
        border-radius: 18px;
    }

    .player-play-icon {
        width: 66px;
        height: 66px;
        font-size: 26px;
    }
}
