:root {
    --sand-50: #fdfbf7;
    --sand-100: #f8f4ea;
    --sand-200: #f0e7d3;
    --sand-300: #e6d5b3;
    --sand-600: #b8904d;
    --sand-700: #9a7540;
    --desert-50: #fef9f3;
    --desert-100: #fdf2e5;
    --desert-500: #e88c45;
    --desert-600: #d66f2e;
    --desert-700: #b35a26;
    --earth-50: #f7f6f4;
    --earth-100: #ede9e4;
    --earth-500: #9a7e66;
    --earth-600: #8d6f59;
    --earth-700: #745b4b;
    --earth-800: #604c40;
    --earth-900: #504035;
    --dune-900: #3e2c24;
    --white: #ffffff;
    --shadow-card: 0 12px 32px rgba(80, 64, 53, 0.09);
    --shadow-soft: 0 18px 45px rgba(80, 64, 53, 0.16);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--earth-900);
    background: linear-gradient(180deg, var(--sand-50), var(--earth-50));
    font-family: Inter, "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    content: "";
    background:
        radial-gradient(circle at 12% 5%, rgba(232, 140, 69, 0.18), transparent 26rem),
        radial-gradient(circle at 90% 20%, rgba(184, 144, 77, 0.14), transparent 28rem);
}

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

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

svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(253, 251, 247, 0.96), rgba(254, 249, 243, 0.96));
    border-bottom: 1px solid var(--sand-200);
    box-shadow: 0 3px 18px rgba(80, 64, 53, 0.06);
    backdrop-filter: blur(16px);
}

.nav-shell,
.footer-shell,
.content-section,
.detail-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 0;
}

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

.brand-icon {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    color: var(--white);
    background: linear-gradient(135deg, var(--desert-500), var(--sand-600));
    border-radius: 14px;
    box-shadow: 0 10px 20px rgba(214, 111, 46, 0.24);
}

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

.brand-text strong {
    display: block;
    font-size: 24px;
    line-height: 1;
    background: linear-gradient(90deg, var(--desert-700), var(--sand-700));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-text small {
    display: block;
    margin-top: 5px;
    color: var(--earth-600);
    font-size: 12px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--earth-700);
    font-weight: 600;
}

.nav-link {
    position: relative;
    padding: 8px 0;
    transition: color 0.2s ease;
}

.nav-link::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    content: "";
    background: var(--desert-600);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 0;
    background: var(--sand-100);
    border-radius: 12px;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--earth-800);
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 16px;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--sand-200);
    border-radius: 16px;
    box-shadow: var(--shadow-card);
}

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

.mobile-link {
    padding: 12px;
    color: var(--earth-700);
    border-radius: 12px;
}

.mobile-link:hover,
.mobile-link.active {
    color: var(--desert-600);
    background: var(--sand-100);
}

.hero {
    position: relative;
    height: 560px;
    overflow: hidden;
    background: var(--earth-900);
}

.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-slide > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.08));
}

.hero-content {
    position: absolute;
    top: 50%;
    left: max(24px, calc((100vw - 1180px) / 2));
    width: min(720px, calc(100% - 48px));
    color: var(--white);
    transform: translateY(-50%);
}

.hero-badge,
.eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 16px;
    color: var(--white);
    background: rgba(214, 111, 46, 0.92);
    border-radius: 999px;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.hero h1,
.page-hero h1,
.detail-copy h1 {
    margin: 18px 0 16px;
    font-size: clamp(34px, 6vw, 68px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.hero p {
    max-width: 680px;
    margin: 0;
    color: var(--sand-100);
    font-size: clamp(17px, 2.1vw, 22px);
    line-height: 1.7;
}

.hero-tags,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.tag-pill,
.detail-meta span {
    display: inline-flex;
    padding: 6px 12px;
    color: var(--earth-800);
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.detail-meta span {
    color: var(--earth-700);
    background: var(--sand-100);
    border-color: var(--sand-200);
}

.hero-actions,
.page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 13px 24px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px) scale(1.01);
}

.btn-primary {
    color: var(--white);
    background: linear-gradient(90deg, var(--desert-600), var(--desert-500));
    box-shadow: 0 15px 32px rgba(214, 111, 46, 0.32);
}

.btn-ghost {
    color: var(--white);
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.36);
    backdrop-filter: blur(10px);
}

.btn-ghost.dark {
    color: var(--earth-800);
    background: var(--sand-100);
    border-color: var(--sand-200);
}

.btn-light {
    color: var(--earth-900);
    background: var(--white);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: var(--white);
    background: rgba(0, 0, 0, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    font-size: 36px;
    line-height: 1;
    transform: translateY(-50%);
    backdrop-filter: blur(10px);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

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

.hero-dot.is-active {
    width: 38px;
    background: var(--white);
}

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

.soft-section {
    width: 100%;
    max-width: none;
    padding-right: max(16px, calc((100vw - 1180px) / 2));
    padding-left: max(16px, calc((100vw - 1180px) / 2));
    background: linear-gradient(180deg, var(--sand-50), var(--white));
}

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

.section-heading h2,
.rank-panel h2,
.detail-section h2,
.detail-side h2 {
    margin: 0;
    color: var(--earth-900);
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.2;
    font-weight: 900;
}

.section-heading p {
    margin: 9px 0 0;
    color: var(--earth-600);
}

.section-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--desert-600);
    font-weight: 800;
}

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

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

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

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

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

.movie-card-link,
.wide-link {
    display: block;
    height: 100%;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(240, 231, 211, 0.88);
    border-radius: 22px;
    box-shadow: var(--shadow-card);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card-link:hover,
.wide-link:hover {
    border-color: rgba(214, 111, 46, 0.4);
    box-shadow: var(--shadow-soft);
    transform: translateY(-6px);
}

.poster-wrap {
    position: relative;
    display: block;
    height: 275px;
    overflow: hidden;
    background: var(--sand-100);
}

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

.movie-card-link:hover img,
.wide-link:hover img,
.editor-card:hover img,
.category-tile:hover img {
    transform: scale(1.08);
}

.poster-gradient,
.poster-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.66));
}

.poster-play,
.poster-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    color: var(--desert-600);
    background: rgba(255, 255, 255, 0.94);
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.82);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card-link:hover .poster-play,
.wide-link:hover .poster-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.poster-label {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 12px;
    color: var(--white);
    background: rgba(214, 111, 46, 0.92);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.movie-card-body {
    display: grid;
    gap: 8px;
    padding: 18px;
}

.movie-card-body strong,
.wide-body strong {
    display: -webkit-box;
    overflow: hidden;
    color: var(--earth-900);
    font-size: 17px;
    line-height: 1.35;
    font-weight: 850;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.2s ease;
}

.movie-card-link:hover strong,
.wide-link:hover strong {
    color: var(--desert-600);
}

.meta-line,
.movie-one-line,
.wide-desc {
    display: block;
    color: var(--earth-600);
    font-size: 13px;
    line-height: 1.55;
}

.movie-one-line,
.wide-desc {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.two-column-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 36px;
    align-items: start;
}

.wide-list,
.side-related {
    display: grid;
    gap: 18px;
}

.wide-link {
    display: flex;
    gap: 16px;
    padding: 14px;
}

.wide-poster {
    width: 145px;
    height: 110px;
    flex: 0 0 145px;
    border-radius: 16px;
}

.wide-body {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.rank-panel {
    position: sticky;
    top: 100px;
    padding: 26px;
    background: var(--white);
    border: 1px solid var(--sand-200);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.rank-list-mini {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.rank-list-mini a {
    display: grid;
    grid-template-columns: 32px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 14px;
}

.rank-list-mini a:hover {
    background: var(--sand-100);
}

.rank-list-mini span,
.rank-number,
.editor-rank {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    color: var(--white);
    background: linear-gradient(135deg, var(--desert-600), var(--desert-500));
    border-radius: 50%;
    font-weight: 900;
}

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

.rank-list-mini em {
    color: var(--earth-500);
    font-size: 12px;
    font-style: normal;
}

.editor-section {
    width: 100%;
    max-width: none;
    padding-right: max(16px, calc((100vw - 1180px) / 2));
    padding-left: max(16px, calc((100vw - 1180px) / 2));
    background: linear-gradient(90deg, var(--desert-50), var(--sand-50));
}

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

.editor-card {
    position: relative;
    height: 420px;
    overflow: hidden;
    color: var(--white);
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
}

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

.editor-card::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.78));
}

.editor-rank {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    width: 48px;
    height: 48px;
    font-size: 20px;
}

.editor-copy {
    position: absolute;
    right: 22px;
    bottom: 22px;
    left: 22px;
    z-index: 2;
    display: grid;
    gap: 8px;
}

.editor-copy em,
.editor-copy small {
    color: var(--sand-100);
    font-style: normal;
}

.editor-copy strong {
    font-size: 26px;
    line-height: 1.2;
}

.category-list-home {
    display: grid;
    gap: 52px;
}

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

.strip-title h3 {
    margin: 0;
    padding-left: 16px;
    color: var(--earth-900);
    border-left: 4px solid var(--desert-600);
    font-size: 26px;
}

.strip-title a {
    color: var(--desert-600);
    font-weight: 800;
}

.watch-cta {
    padding: 72px 16px;
    color: var(--white);
    text-align: center;
    background: linear-gradient(90deg, var(--earth-900), var(--dune-900));
}

.watch-cta h2 {
    margin: 0 0 12px;
    font-size: clamp(32px, 5vw, 48px);
}

.watch-cta p {
    margin: 0 0 28px;
    color: var(--sand-200);
    font-size: 20px;
}

.page-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 48px;
    align-items: center;
    width: min(1180px, calc(100% - 32px));
    margin: 38px auto 0;
    padding: 58px;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(135deg, var(--earth-900), var(--desert-700));
    border-radius: 34px;
    box-shadow: var(--shadow-soft);
}

.small-page-hero,
.search-hero {
    display: block;
    max-width: 1180px;
}

.page-hero p {
    max-width: 760px;
    margin: 0;
    color: var(--sand-100);
    font-size: 19px;
    line-height: 1.75;
}

.category-feature-stack {
    display: grid;
    gap: 14px;
}

.category-feature-stack a {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 14px;
    align-items: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 20px;
    backdrop-filter: blur(12px);
}

.category-feature-stack img {
    width: 92px;
    height: 68px;
    object-fit: cover;
    border-radius: 14px;
}

.filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 28px;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--sand-200);
    border-radius: 22px;
    box-shadow: var(--shadow-card);
}

.filter-search,
.big-search {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: min(420px, 100%);
    padding: 0 16px;
    color: var(--earth-600);
    background: var(--sand-50);
    border: 1px solid var(--sand-200);
    border-radius: 999px;
}

.filter-search input,
.big-search input {
    width: 100%;
    height: 48px;
    color: var(--earth-900);
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 16px;
}

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

.filter-chips button {
    padding: 10px 14px;
    color: var(--earth-700);
    background: var(--sand-100);
    border: 1px solid var(--sand-200);
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
}

.filter-chips button:hover,
.filter-chips button.is-active {
    color: var(--white);
    background: var(--desert-600);
    border-color: var(--desert-600);
}

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

.category-tile {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--sand-200);
    border-radius: 28px;
    box-shadow: var(--shadow-card);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover {
    box-shadow: var(--shadow-soft);
    transform: translateY(-5px);
}

.category-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 150px;
    overflow: hidden;
}

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

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

.category-tile-body strong {
    color: var(--earth-900);
    font-size: 24px;
}

.category-tile-body small {
    color: var(--earth-600);
    font-size: 14px;
    line-height: 1.7;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 54px 120px minmax(0, 1fr) 40px;
    gap: 18px;
    align-items: center;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--sand-200);
    border-radius: 24px;
    box-shadow: var(--shadow-card);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-row:hover {
    box-shadow: var(--shadow-soft);
    transform: translateY(-4px);
}

.rank-number {
    width: 42px;
    height: 42px;
}

.rank-row img {
    width: 120px;
    height: 86px;
    object-fit: cover;
    border-radius: 16px;
}

.rank-copy {
    display: grid;
    gap: 6px;
}

.rank-copy strong {
    color: var(--earth-900);
    font-size: 20px;
}

.rank-copy small,
.rank-copy em {
    color: var(--earth-600);
    font-style: normal;
}

.rank-arrow {
    display: grid;
    place-items: center;
    color: var(--desert-600);
    font-size: 24px;
}

.big-search {
    max-width: 780px;
    margin-top: 28px;
    background: rgba(255, 255, 255, 0.94);
}

.search-results:empty::before,
.no-results {
    display: block;
    padding: 40px;
    color: var(--earth-600);
    text-align: center;
    background: var(--white);
    border: 1px solid var(--sand-200);
    border-radius: 24px;
    content: "暂无匹配内容";
}

.detail-hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--earth-900);
}

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

.detail-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(18px);
    transform: scale(1.08);
    opacity: 0.38;
}

.detail-hero::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(80, 64, 53, 0.78));
}

.detail-shell {
    position: relative;
    z-index: 2;
    padding: 34px 0 72px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 34px;
    color: var(--sand-200);
    font-size: 14px;
}

.breadcrumbs a:hover {
    color: var(--white);
}

.detail-intro {
    display: grid;
    grid-template-columns: 285px minmax(0, 1fr);
    gap: 36px;
    align-items: center;
}

.detail-poster {
    overflow: hidden;
    border: 6px solid rgba(255, 255, 255, 0.16);
    border-radius: 28px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

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

.detail-copy h1 {
    color: var(--white);
}

.detail-one-line {
    max-width: 820px;
    color: var(--sand-100);
    font-size: 20px;
    line-height: 1.75;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 34px;
    align-items: start;
}

.detail-main,
.detail-side {
    display: grid;
    gap: 24px;
}

.player-card,
.detail-section,
.detail-side {
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--sand-200);
    border-radius: 28px;
    box-shadow: var(--shadow-card);
}

.player-box {
    position: relative;
    overflow: hidden;
    background: #000;
    border-radius: 22px;
}

.player-box video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    color: var(--desert-600);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.48));
    border: 0;
    cursor: pointer;
}

.play-overlay span {
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    color: var(--desert-600);
    background: rgba(255, 255, 255, 0.94);
    border-radius: 50%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
    font-size: 42px;
}

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

.detail-section h2,
.detail-side h2 {
    margin-bottom: 14px;
    font-size: 26px;
}

.detail-section p {
    margin: 0;
    color: var(--earth-700);
    font-size: 17px;
    line-height: 1.9;
    white-space: pre-line;
}

.detail-side {
    position: sticky;
    top: 100px;
}

.site-footer {
    margin-top: 28px;
    padding: 44px 0;
    color: var(--earth-600);
    background: var(--white);
    border-top: 1px solid var(--sand-200);
}

.footer-shell {
    display: grid;
    gap: 28px;
}

.footer-brand p {
    max-width: 720px;
    margin: 8px 0 0;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
}

.footer-links a:hover {
    color: var(--desert-600);
}

.copyright {
    margin: 0;
    color: var(--earth-500);
    font-size: 14px;
}

.is-hidden-card {
    display: none;
}

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

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

    .two-column-section,
    .detail-layout,
    .page-hero {
        grid-template-columns: 1fr;
    }

    .rank-panel,
    .detail-side {
        position: static;
    }
}

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

    .menu-toggle {
        display: block;
    }

    .hero {
        height: 520px;
    }

    .hero-content {
        left: 20px;
        width: calc(100% - 40px);
    }

    .hero-arrow {
        display: none;
    }

    .content-section,
    .soft-section,
    .editor-section {
        padding-top: 48px;
        padding-bottom: 48px;
    }

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

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

    .poster-wrap {
        height: 230px;
    }

    .page-hero {
        margin-top: 22px;
        padding: 34px 24px;
        border-radius: 24px;
    }

    .category-feature-stack {
        display: none;
    }

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

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

    .rank-row {
        grid-template-columns: 42px 90px minmax(0, 1fr);
    }

    .rank-arrow {
        display: none;
    }
}

@media (max-width: 560px) {
    .brand-text strong {
        font-size: 20px;
    }

    .brand-text small {
        display: none;
    }

    .hero {
        height: 500px;
    }

    .hero p,
    .detail-one-line {
        font-size: 16px;
    }

    .movie-grid,
    .compact-grid,
    .category-grid,
    .category-tile-grid,
    .editor-grid {
        grid-template-columns: 1fr;
    }

    .poster-wrap {
        height: 320px;
    }

    .wide-link {
        flex-direction: column;
    }

    .wide-poster {
        width: 100%;
        height: 190px;
        flex-basis: auto;
    }

    .rank-row {
        grid-template-columns: 36px 1fr;
    }

    .rank-row img {
        display: none;
    }

    .filter-search,
    .big-search {
        min-width: 100%;
    }

    .detail-shell {
        padding-bottom: 44px;
    }
}
