:root {
    --pink: #ec4899;
    --pink-dark: #db2777;
    --purple: #8b5cf6;
    --blue: #3b82f6;
    --cyan: #06b6d4;
    --orange: #f97316;
    --amber: #f59e0b;
    --green: #10b981;
    --slate: #111827;
    --text: #1f2937;
    --muted: #6b7280;
    --soft: #fff7fb;
    --card: #ffffff;
    --line: rgba(236, 72, 153, 0.16);
    --shadow: 0 18px 50px rgba(126, 34, 206, 0.12);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: linear-gradient(180deg, #fff7fb 0%, #ffffff 42%, #f5fbff 100%);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.12);
}

.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 68px;
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.brand-mark {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--pink), var(--purple), var(--blue));
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(236, 72, 153, 0.28);
}

.brand-text {
    font-size: 1.45rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, var(--pink), var(--purple), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.nav-link,
.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    padding: 10px 13px;
    border: 0;
    color: #4b5563;
    background: transparent;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.dropdown-toggle:hover {
    color: var(--pink-dark);
    background: #fdf2f8;
    transform: translateY(-1px);
}

.nav-dropdown {
    position: relative;
}

.dropdown-panel {
    position: absolute;
    top: 46px;
    left: 0;
    width: 190px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(8px);
    visibility: hidden;
    transition: all 0.2s ease;
}

.nav-dropdown:hover .dropdown-panel {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.dropdown-panel a {
    display: block;
    padding: 9px 10px;
    color: #4b5563;
    border-radius: 12px;
}

.dropdown-panel a:hover {
    color: var(--pink-dark);
    background: linear-gradient(90deg, #fdf2f8, #f5f3ff);
}

.top-search {
    display: flex;
    align-items: center;
    gap: 8px;
    width: min(320px, 30vw);
}

.top-search input {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid #fbcfe8;
    border-radius: 999px;
    outline: 0;
    background: rgba(255, 255, 255, 0.86);
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.top-search input:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.12);
}

.top-search button,
.primary-btn,
.ghost-btn,
.outline-link {
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.top-search button,
.primary-btn {
    padding: 10px 18px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    box-shadow: 0 12px 28px rgba(236, 72, 153, 0.28);
}

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

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

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: var(--pink-dark);
}

.mobile-panel {
    display: none;
    padding: 10px 16px 18px;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
}

.mobile-panel a {
    display: block;
    padding: 11px 4px;
    color: #4b5563;
}

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

.hero-section {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 48%, #3b82f6 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.28;
    background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.9) 0 2px, transparent 2px), radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.7) 0 1px, transparent 1px);
    background-size: 58px 58px, 34px 34px;
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 620px;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 48px;
    align-items: center;
    padding: 56px 0 96px;
}

.eyebrow {
    margin: 0 0 12px;
    font-size: 0.92rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #fde68a;
}

.hero-copy h1,
.sub-hero h1,
.detail-headline h1 {
    margin: 0;
    font-size: clamp(2.6rem, 6vw, 5.8rem);
    line-height: 1.02;
    font-weight: 950;
    letter-spacing: -0.06em;
}

.hero-lead {
    max-width: 560px;
    margin: 22px 0 0;
    color: #fce7f3;
    font-size: 1.28rem;
}

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

.hero-actions .primary-btn {
    color: var(--pink-dark);
    background: #ffffff;
}

.ghost-btn {
    padding: 10px 18px;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.58);
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
}

.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.hero-chips a {
    padding: 8px 13px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

.hero-slider {
    position: relative;
    min-height: 430px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 28px 80px rgba(17, 24, 39, 0.28);
    backdrop-filter: blur(18px);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: 26px;
    align-items: center;
    padding: 28px;
    opacity: 0;
    transform: translateX(18px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.hero-slide.is-active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
}

.hero-poster-frame {
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(17, 24, 39, 0.36);
}

.hero-poster-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide-copy span {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 6px 12px;
    color: #fde68a;
    border-radius: 999px;
    background: rgba(17, 24, 39, 0.28);
}

.hero-slide-copy h2 {
    margin: 0;
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    line-height: 1.1;
}

.hero-slide-copy p {
    margin: 14px 0 22px;
    color: #f9fafb;
}

.hero-slide-copy a {
    display: inline-flex;
    padding: 10px 18px;
    color: var(--pink-dark);
    font-weight: 900;
    background: #ffffff;
    border-radius: 999px;
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
}

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

.hero-fade {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 130px;
    background: linear-gradient(180deg, transparent, #fff7fb);
}

.category-strip {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    margin-top: -72px;
    margin-bottom: 64px;
}

.category-card,
.category-overview-card {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    border-radius: 24px;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card {
    display: flex;
    min-height: 142px;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 22px;
    text-align: center;
}

.category-card:hover,
.category-overview-card:hover {
    transform: translateY(-5px) rotate(-1deg);
    box-shadow: 0 24px 60px rgba(126, 34, 206, 0.2);
}

.category-icon {
    font-size: 2rem;
    line-height: 1;
}

.category-card strong {
    font-size: 1rem;
}

.category-card small {
    color: rgba(255, 255, 255, 0.82);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cat-pink { background: linear-gradient(135deg, #ec4899, #8b5cf6); }
.cat-orange { background: linear-gradient(135deg, #f97316, #ec4899); }
.cat-blue { background: linear-gradient(135deg, #3b82f6, #06b6d4); }
.cat-purple { background: linear-gradient(135deg, #7c3aed, #db2777); }
.cat-red { background: linear-gradient(135deg, #ef4444, #f97316); }
.cat-yellow { background: linear-gradient(135deg, #f59e0b, #f97316); }
.cat-rose { background: linear-gradient(135deg, #fb7185, #ec4899); }
.cat-indigo { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.cat-green { background: linear-gradient(135deg, #10b981, #14b8a6); }
.cat-teal { background: linear-gradient(135deg, #14b8a6, #0ea5e9); }
.cat-brown { background: linear-gradient(135deg, #a16207, #f59e0b); }
.cat-cyan { background: linear-gradient(135deg, #06b6d4, #3b82f6); }

.content-section,
.list-section {
    margin-bottom: 64px;
}

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

.section-head h2 {
    margin: 0;
    font-size: clamp(1.6rem, 3vw, 2.35rem);
    font-weight: 950;
    letter-spacing: -0.04em;
    background: linear-gradient(90deg, #db2777, #7c3aed);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-head a {
    color: var(--pink-dark);
    font-weight: 800;
}

.blue-title h2 { background-image: linear-gradient(90deg, #2563eb, #0891b2); }
.gold-title h2 { background-image: linear-gradient(90deg, #ca8a04, #ea580c); }
.green-title h2 { background-image: linear-gradient(90deg, #059669, #0d9488); }
.purple-title h2 { background-image: linear-gradient(90deg, #7c3aed, #db2777); }

.soft-panel {
    padding: 26px;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.warm-panel { background: linear-gradient(135deg, #fff7ed, #fdf2f8); }
.cool-panel { background: linear-gradient(135deg, #eff6ff, #ecfeff); }
.gold-panel { background: linear-gradient(135deg, #fefce8, #fff7ed); }
.green-panel { background: linear-gradient(135deg, #ecfdf5, #f0fdfa); }
.purple-panel { background: linear-gradient(135deg, #f5f3ff, #fdf2f8); }

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

.three-col { grid-template-columns: repeat(3, 1fr); }
.four-col { grid-template-columns: repeat(4, 1fr); }
.six-col { grid-template-columns: repeat(6, 1fr); }
.catalog-grid { grid-template-columns: repeat(4, 1fr); }

.masonry-grid {
    columns: 3 260px;
    column-gap: 22px;
}

.masonry-grid .movie-card-item {
    display: inline-block;
    width: 100%;
    margin: 0 0 22px;
}

.movie-card {
    display: block;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(236, 72, 153, 0.12);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 16px 35px rgba(17, 24, 39, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 28px 70px rgba(126, 34, 206, 0.18);
}

.poster-wrap {
    position: relative;
    overflow: hidden;
    margin: 0;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #111827, #7c3aed);
}

.catalog-grid .poster-wrap,
.six-col .poster-wrap,
.detail-side .poster-wrap {
    aspect-ratio: 3 / 4;
}

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

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

.poster-wrap::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, transparent 42%, rgba(17, 24, 39, 0.72));
}

.poster-badge,
.poster-year {
    position: absolute;
    z-index: 2;
    top: 12px;
    padding: 5px 10px;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 900;
    border-radius: 999px;
    background: rgba(236, 72, 153, 0.88);
    backdrop-filter: blur(8px);
}

.poster-badge { left: 12px; }
.poster-year { right: 12px; background: rgba(17, 24, 39, 0.62); }

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

.movie-card-body h3 {
    display: -webkit-box;
    min-height: 2.78em;
    margin: 0 0 8px;
    overflow: hidden;
    color: #111827;
    font-size: 1.08rem;
    line-height: 1.38;
    font-weight: 900;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.movie-card-body p {
    display: -webkit-box;
    min-height: 3.2em;
    margin: 0 0 12px;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.92rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #6b7280;
    font-size: 0.86rem;
}

.tag-row,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.tag-row span,
.detail-tags span {
    padding: 5px 9px;
    color: #be185d;
    font-size: 0.78rem;
    font-weight: 800;
    border-radius: 999px;
    background: #fce7f3;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 56px 112px 1fr;
    gap: 18px;
    align-items: center;
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 12px 26px rgba(17, 24, 39, 0.08);
}

.rank-number {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    color: #6d28d9;
    font-weight: 950;
    border-radius: 999px;
    background: linear-gradient(135deg, #fce7f3, #ede9fe);
}

.rank-number.gold { color: #ffffff; background: linear-gradient(135deg, #facc15, #ea580c); }
.rank-number.silver { color: #ffffff; background: linear-gradient(135deg, #d1d5db, #6b7280); }
.rank-number.bronze { color: #ffffff; background: linear-gradient(135deg, #fb923c, #c2410c); }

.rank-cover {
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border-radius: 16px;
}

.large-rank-list .rank-cover {
    aspect-ratio: 3 / 4;
}

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

.rank-content h3 {
    margin: 0 0 6px;
    font-size: 1.15rem;
}

.rank-content p {
    margin: 0 0 8px;
    color: #6b7280;
}

.rank-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: #be185d;
    font-size: 0.86rem;
    font-weight: 800;
}

.sub-hero {
    position: relative;
    overflow: hidden;
    margin-bottom: 44px;
    padding: 78px 0;
    color: #ffffff;
    background: linear-gradient(135deg, #ec4899, #8b5cf6, #3b82f6);
}

.sub-hero::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0.24;
    background: radial-gradient(circle at 20% 10%, #ffffff 0 1px, transparent 2px);
    background-size: 40px 40px;
}

.sub-hero .container {
    position: relative;
    z-index: 2;
}

.sub-hero p {
    max-width: 760px;
    margin: 16px 0 0;
    color: #fce7f3;
    font-size: 1.08rem;
}

.category-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 70px;
}

.category-overview-card {
    min-height: 260px;
    padding: 26px;
}

.category-overview-card h2 {
    margin: 16px 0 10px;
    font-size: 1.6rem;
}

.category-overview-card p {
    color: rgba(255, 255, 255, 0.86);
}

.category-samples {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 20px;
}

.category-samples a {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 700;
}

.category-hero-inner {
    display: grid;
    grid-template-columns: 1fr 330px;
    gap: 30px;
    align-items: end;
}

.spotlight-links {
    display: grid;
    gap: 9px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
}

.spotlight-links a {
    color: #ffffff;
}

.filter-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 28px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow);
}

.filter-search {
    flex: 1;
}

.filter-search input,
.filter-selects select {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #fbcfe8;
    border-radius: 16px;
    outline: 0;
    background: #ffffff;
}

.filter-search input:focus,
.filter-selects select:focus {
    border-color: var(--pink);
}

.filter-selects {
    display: flex;
    gap: 10px;
    align-items: center;
}

.outline-link {
    padding: 11px 16px;
    color: #be185d;
    border: 2px solid #fbcfe8;
    background: #fff7fb;
    white-space: nowrap;
}

.empty-state {
    padding: 28px;
    color: #be185d;
    text-align: center;
    border-radius: 20px;
    background: #fdf2f8;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: #111827;
}

.detail-backdrop {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    filter: saturate(1.12);
}

.detail-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 38px;
    align-items: center;
    padding: 72px 0;
}

.detail-poster {
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

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

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: #fce7f3;
}

.detail-headline p {
    max-width: 820px;
    margin: 22px 0 0;
    color: #f9fafb;
    font-size: 1.14rem;
}

.detail-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.detail-meta-row span {
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

.player-section {
    margin: 44px auto;
}

.player-card {
    padding: 18px;
    border-radius: 30px;
    background: linear-gradient(135deg, #111827, #312e81);
    box-shadow: 0 28px 80px rgba(17, 24, 39, 0.22);
}

.video-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 22px;
    background: #000000;
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 14px;
    padding: 24px;
    color: #ffffff;
    text-align: center;
    border: 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.18), rgba(17, 24, 39, 0.72));
    cursor: pointer;
}

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

.play-circle {
    display: grid;
    width: 82px;
    height: 82px;
    place-items: center;
    padding-left: 5px;
    color: var(--pink-dark);
    font-size: 2rem;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(236, 72, 153, 0.32);
}

.detail-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 28px;
    margin-bottom: 64px;
}

.detail-article,
.detail-side {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
}

.detail-article h2,
.detail-side h2 {
    margin: 0 0 16px;
    color: #be185d;
    font-size: 1.55rem;
}

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

.detail-article p {
    margin: 0;
    color: #374151;
    font-size: 1.04rem;
}

.detail-side dl {
    display: grid;
    gap: 12px;
    margin: 0;
}

.detail-side dl div {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(236, 72, 153, 0.12);
}

.detail-side dt {
    color: #6b7280;
}

.detail-side dd {
    margin: 0;
    font-weight: 800;
}

.site-footer {
    margin-top: 80px;
    color: #ffffff;
    background: linear-gradient(90deg, #db2777, #7c3aed, #2563eb);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
    gap: 32px;
    padding: 48px 0;
}

.footer-grid h2,
.footer-grid h3 {
    margin: 0 0 14px;
}

.footer-grid p,
.footer-grid a {
    color: #fce7f3;
}

.footer-grid ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-grid li + li {
    margin-top: 8px;
}

.footer-bottom {
    padding: 18px;
    color: #fce7f3;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

@media (max-width: 1080px) {
    .top-search {
        display: none;
    }

    .hero-layout,
    .detail-content-grid,
    .category-hero-inner {
        grid-template-columns: 1fr;
    }

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

    .category-strip {
        grid-template-columns: repeat(3, 1fr);
    }

    .four-col,
    .catalog-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

    .detail-hero-inner {
        grid-template-columns: 240px 1fr;
    }
}

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

    .menu-toggle {
        display: block;
    }

    .hero-section {
        min-height: auto;
    }

    .hero-layout {
        gap: 28px;
        padding-top: 42px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        align-items: start;
        overflow: auto;
    }

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

    .hero-poster-frame {
        max-width: 240px;
        margin: 0 auto;
    }

    .category-strip,
    .category-overview-grid,
    .three-col,
    .four-col,
    .six-col,
    .catalog-grid,
    .footer-grid,
    .detail-hero-inner {
        grid-template-columns: 1fr;
    }

    .category-strip {
        margin-top: -38px;
    }

    .filter-panel,
    .filter-selects,
    .section-head {
        flex-direction: column;
        align-items: stretch;
    }

    .rank-item {
        grid-template-columns: 44px 86px 1fr;
        gap: 12px;
        padding: 12px;
    }

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

    .rank-content p {
        display: none;
    }

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