* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    color: #111827;
    background: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
    font: inherit;
}

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

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(90deg, #0891b2, #2563eb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
}

.brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 13px;
    background: linear-gradient(135deg, #06b6d4, #2563eb);
    box-shadow: 0 10px 24px rgba(6, 182, 212, 0.28);
}

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

.desktop-nav a,
.mobile-panel nav a {
    color: #374151;
    font-size: 15px;
    font-weight: 650;
    transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-panel nav a:hover,
.mobile-panel nav a.active {
    color: #0891b2;
}

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

.header-search input {
    width: 260px;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    padding: 10px 44px 10px 18px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.page-search input:focus,
.mobile-search input:focus {
    border-color: #06b6d4;
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.15);
}

.header-search button {
    position: absolute;
    right: 8px;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 50%;
    background: #0891b2;
    color: #ffffff;
    cursor: pointer;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: #f3f4f6;
    color: #111827;
}

.mobile-panel {
    display: none;
    padding: 0 24px 18px;
    border-top: 1px solid #e5e7eb;
}

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

.mobile-panel nav {
    display: grid;
    gap: 12px;
    padding: 16px 0;
}

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

.mobile-search input,
.page-search input {
    flex: 1;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    padding: 12px 18px;
    outline: none;
}

.mobile-search button,
.page-search button {
    border: 0;
    border-radius: 999px;
    padding: 0 20px;
    color: #ffffff;
    background: #0891b2;
    cursor: pointer;
}

.hero-carousel {
    position: relative;
    height: 70vh;
    min-height: 520px;
    overflow: hidden;
    background: linear-gradient(180deg, #0f172a, #1e293b);
}

.hero-slides,
.hero-slide,
.hero-media,
.hero-mask {
    position: absolute;
    inset: 0;
}

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

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

.hero-media {
    background: radial-gradient(circle at 20% 20%, rgba(34, 211, 238, 0.45), transparent 32%), linear-gradient(135deg, #0f172a, #164e63 58%, #1d4ed8);
}

.hero-media::after,
.poster-shell::after,
.category-thumbs span::after {
    content: attr(data-fallback);
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    text-align: center;
    color: rgba(255, 255, 255, 0.86);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-shadow: 0 8px 30px rgba(15, 23, 42, 0.65);
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.2s ease;
}

.hero-mask {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.36) 58%, rgba(0, 0, 0, 0.1));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    height: 100%;
    margin: 0 auto;
    padding: 0 24px 76px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}

.hero-content h1 {
    margin: 0 0 10px;
    color: #a5f3fc;
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 800;
}

.hero-content h2 {
    max-width: 780px;
    margin: 0 0 16px;
    color: #ffffff;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.05;
    font-weight: 900;
    text-shadow: 0 12px 34px rgba(0, 0, 0, 0.42);
}

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

.hero-tags,
.detail-meta,
.pill-row,
.card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

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

.hero-tags span {
    padding: 7px 14px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    font-size: 14px;
}

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

.primary-btn,
.ghost-btn,
.outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 26px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.primary-btn {
    color: #ffffff;
    background: #0891b2;
    box-shadow: 0 16px 34px rgba(8, 145, 178, 0.32);
}

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

.primary-btn:hover {
    background: #0e7490;
}

.primary-btn.small {
    min-height: 40px;
    padding: 0 20px;
}

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

.outline-btn {
    color: #0891b2;
    border: 1px solid #67e8f9;
    background: #ffffff;
}

.hero-nav {
    position: absolute;
    z-index: 5;
    top: 50%;
    width: 44px;
    height: 44px;
    transform: translateY(-50%);
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
}

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

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

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

.hero-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dots button.is-active {
    width: 34px;
    background: #ffffff;
}

.content-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px 24px;
}

.soft-section {
    max-width: none;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.soft-section > * {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

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

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title h2 {
    margin: 0;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.2;
}

.section-icon {
    min-width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0891b2;
    background: #ecfeff;
    font-weight: 900;
}

.section-head p {
    margin: 0;
    color: #64748b;
}

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

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

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

.grid-card,
.feature-card,
.list-card,
.ranking-card,
.related-card,
.category-box {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.grid-card:hover,
.feature-card:hover,
.list-card:hover,
.ranking-card:hover,
.related-card:hover,
.category-box:hover {
    transform: translateY(-5px);
    border-color: #bae6fd;
    box-shadow: 0 20px 46px rgba(15, 23, 42, 0.14);
}

.grid-card {
    border-radius: 16px;
    overflow: hidden;
}

.card-poster {
    aspect-ratio: 2 / 3;
    overflow: hidden;
}

.poster-shell {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: radial-gradient(circle at 20% 12%, rgba(103, 232, 249, 0.68), transparent 34%), linear-gradient(135deg, #0f172a, #155e75 58%, #2563eb);
}

.poster-shell img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease, opacity 0.2s ease;
}

.grid-card:hover .poster-shell img,
.feature-card:hover .poster-shell img,
.list-card:hover .poster-shell img,
.related-card:hover .poster-shell img,
.ranking-card:hover .poster-shell img {
    transform: scale(1.06);
}

.card-body {
    padding: 14px;
}

.card-body h3,
.feature-copy h3,
.list-copy h3,
.ranking-card h3,
.related-card h3 {
    margin: 0;
    color: #0f172a;
    font-weight: 800;
}

.card-body h3 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 15px;
}

.card-body p {
    display: -webkit-box;
    min-height: 42px;
    margin: 8px 0 10px;
    overflow: hidden;
    color: #64748b;
    font-size: 13px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-meta {
    justify-content: space-between;
    color: #64748b;
    font-size: 12px;
}

.tag-pair,
.detail-tags,
.tag-cloud,
.link-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-pair span,
.detail-tags a,
.tag-cloud a,
.link-cloud a,
.toolbar button,
.pill-row span {
    border-radius: 999px;
    background: #ecfeff;
    color: #0e7490;
    font-size: 12px;
    font-weight: 700;
}

.tag-pair span {
    padding: 4px 8px;
}

.feature-card {
    position: relative;
    min-height: 420px;
    border-radius: 24px;
    overflow: hidden;
}

.feature-poster,
.feature-poster .poster-shell,
.feature-shade {
    position: absolute;
    inset: 0;
}

.feature-shade {
    z-index: 3;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.12));
}

.feature-copy {
    position: absolute;
    z-index: 4;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 26px;
    color: #ffffff;
}

.feature-copy h3 {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 8px;
}

.feature-copy p {
    margin: 0;
    color: #e5e7eb;
}

.meta-line {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    color: #fde68a;
    font-size: 14px;
    font-weight: 800;
}

.rail-wrap {
    display: grid;
    gap: 34px;
}

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

.rail-title h3 {
    margin: 0;
    font-size: 22px;
}

.rail-title a {
    color: #0891b2;
    font-weight: 800;
}

.rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 178px;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 12px;
    scrollbar-width: none;
}

.rail::-webkit-scrollbar {
    display: none;
}

.year-wrap {
    display: grid;
    gap: 28px;
}

.year-row {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 22px;
    align-items: start;
}

.year-badge {
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
    font-weight: 900;
    background: linear-gradient(135deg, #0891b2, #2563eb);
    box-shadow: 0 16px 30px rgba(8, 145, 178, 0.25);
}

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

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

.list-card {
    display: flex;
    min-height: 210px;
    border-radius: 18px;
    overflow: hidden;
}

.list-poster {
    width: 150px;
    flex: 0 0 150px;
}

.list-copy {
    flex: 1;
    padding: 20px;
}

.list-copy h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.list-copy p {
    margin: 0 0 16px;
    color: #64748b;
}

.pill-row span {
    padding: 5px 9px;
    color: #475569;
    background: #f1f5f9;
}

.play-cue {
    align-self: end;
    margin: 0 18px 18px 0;
    color: #0891b2;
    font-weight: 900;
}

.ranking-section {
    border-radius: 28px;
    background: linear-gradient(135deg, #f8fafc, #ecfeff);
}

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

.rank-item {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.82);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-item:hover {
    transform: translateX(4px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
}

.rank-no,
.rank-medal {
    color: #0891b2;
    font-weight: 900;
}

.rank-no {
    font-size: 22px;
}

.rank-item small {
    color: #64748b;
}

.center-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 30px;
}

.tag-cloud a,
.link-cloud a,
.detail-tags a {
    padding: 8px 14px;
    transition: background 0.2s ease, color 0.2s ease;
}

.tag-cloud a:hover,
.link-cloud a:hover,
.detail-tags a:hover {
    background: #0891b2;
    color: #ffffff;
}

.page-hero {
    background: radial-gradient(circle at 12% 12%, rgba(34, 211, 238, 0.38), transparent 28%), linear-gradient(135deg, #0f172a, #164e63 56%, #1d4ed8);
    color: #ffffff;
}

.page-hero > div {
    max-width: 1280px;
    margin: 0 auto;
    padding: 86px 24px;
}

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

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

.page-search {
    max-width: 680px;
    margin-top: 26px;
    display: flex;
    gap: 12px;
}

.toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.toolbar button {
    border: 0;
    padding: 10px 16px;
    cursor: pointer;
}

.toolbar button.is-active,
.toolbar button:hover {
    color: #ffffff;
    background: #0891b2;
}

.empty-state {
    display: none;
    padding: 36px;
    border-radius: 18px;
    text-align: center;
    color: #64748b;
    background: #f8fafc;
}

.empty-state.is-visible {
    display: block;
}

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

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

.category-box {
    padding: 18px;
    border-radius: 22px;
}

.category-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-bottom: 16px;
}

.category-thumbs span {
    position: relative;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border-radius: 10px;
    background: linear-gradient(135deg, #0f172a, #0891b2);
}

.category-thumbs span::after {
    font-size: 10px;
    padding: 6px;
}

.category-thumbs img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-box h3 {
    margin: 0 0 8px;
    font-size: 20px;
}

.category-box p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}

.detail-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 30px 24px 68px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: #64748b;
    font-size: 14px;
}

.breadcrumb a {
    color: #0891b2;
    font-weight: 700;
}

.watch-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    align-items: start;
}

.watch-main {
    display: grid;
    gap: 22px;
}

.player-shell {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 22px;
    background: #020617;
    box-shadow: 0 30px 70px rgba(2, 6, 23, 0.32);
}

.movie-video {
    width: 100%;
    height: 100%;
    background: #020617;
    cursor: pointer;
}

.player-start {
    position: absolute;
    z-index: 5;
    left: 50%;
    top: 50%;
    width: 90px;
    height: 90px;
    transform: translate(-50%, -50%);
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(8, 145, 178, 0.92);
    box-shadow: 0 20px 44px rgba(8, 145, 178, 0.34);
    cursor: pointer;
}

.player-start span {
    display: block;
    transform: translateX(3px);
    font-size: 34px;
}

.player-shell.is-playing .player-start {
    opacity: 0;
    pointer-events: none;
}

.player-controls {
    position: absolute;
    z-index: 6;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: auto 1fr auto auto auto;
    gap: 12px;
    align-items: center;
    padding: 18px;
    color: #ffffff;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent);
}

.player-controls button {
    border: 0;
    border-radius: 999px;
    padding: 7px 12px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    cursor: pointer;
}

.player-controls input {
    width: 100%;
    accent-color: #06b6d4;
}

.player-controls span {
    min-width: 98px;
    font-size: 13px;
    color: #e5e7eb;
}

.detail-card-main,
.prose-card,
.related-panel {
    border: 1px solid #f1f5f9;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
}

.detail-card-main,
.prose-card {
    padding: 26px;
}

.detail-card-main h1 {
    margin: 0 0 12px;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.2;
}

.detail-one-line {
    margin: 0 0 18px;
    color: #475569;
    font-size: 18px;
}

.detail-meta span {
    padding: 8px 12px;
    border-radius: 12px;
    background: #f8fafc;
    color: #475569;
    font-weight: 700;
    font-size: 14px;
}

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

.prose-card h2,
.related-panel h2 {
    margin: 0 0 14px;
    font-size: 24px;
}

.prose-card p {
    margin: 0;
    color: #334155;
    font-size: 17px;
    white-space: pre-line;
}

.related-panel {
    position: sticky;
    top: 94px;
    padding: 20px;
}

.related-card {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 12px;
    margin-top: 14px;
    padding: 10px;
    border-radius: 16px;
}

.related-card > div {
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border-radius: 12px;
}

.related-card h3 {
    display: -webkit-box;
    overflow: hidden;
    font-size: 15px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.related-card p {
    display: -webkit-box;
    margin: 6px 0;
    overflow: hidden;
    color: #64748b;
    font-size: 12px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.related-card small {
    color: #94a3b8;
}

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

.ranking-card {
    display: grid;
    grid-template-columns: 72px 96px 1fr;
    gap: 18px;
    align-items: center;
    padding: 14px;
    border-radius: 18px;
}

.ranking-poster {
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border-radius: 14px;
}

.ranking-card p {
    margin: 6px 0 10px;
    color: #64748b;
}

.site-footer {
    color: #cbd5e1;
    background: #111827;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 46px 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
}

.footer-inner p {
    max-width: 420px;
    color: #94a3b8;
}

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

.footer-inner a:not(.footer-brand) {
    display: block;
    margin: 8px 0;
    color: #94a3b8;
    transition: color 0.2s ease;
}

.footer-inner a:hover {
    color: #67e8f9;
}

.copyright {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 24px 26px;
    color: #64748b;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
}

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

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }

    .six-col,
    .category-grid.compact {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

    .related-panel {
        position: static;
    }
}

@media (max-width: 840px) {
    .hero-carousel {
        min-height: 560px;
        height: 78vh;
    }

    .feature-grid,
    .list-grid,
    .ranking-grid,
    .footer-inner,
    .category-grid,
    .category-grid.compact {
        grid-template-columns: 1fr;
    }

    .six-col,
    .year-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .year-row {
        grid-template-columns: 1fr;
    }

    .year-badge {
        width: 110px;
    }

    .rank-item,
    .ranking-card {
        grid-template-columns: 52px 1fr;
    }

    .ranking-poster,
    .ranking-card .card-meta {
        display: none;
    }

    .player-controls {
        grid-template-columns: auto 1fr auto;
    }

    .player-controls [data-mute],
    .player-controls [data-fullscreen] {
        display: none;
    }
}

@media (max-width: 560px) {
    .header-inner {
        height: 64px;
        padding: 0 16px;
    }

    .content-section,
    .detail-wrap {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-content {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-nav {
        display: none;
    }

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

    .six-col {
        gap: 12px;
    }

    .list-card {
        min-height: 180px;
    }

    .list-poster {
        width: 118px;
        flex-basis: 118px;
    }

    .list-copy {
        padding: 14px;
    }

    .play-cue {
        display: none;
    }

    .player-start {
        width: 70px;
        height: 70px;
    }
}
