:root {
    --color-text: #1f2937;
    --color-muted: #6b7280;
    --color-soft: #f8fafc;
    --color-line: #e5e7eb;
    --color-panel: #ffffff;
    --color-amber: #d97706;
    --color-red: #ef4444;
    --color-orange: #f97316;
    --shadow-soft: 0 18px 50px rgba(15, 23, 42, 0.10);
    --shadow-card: 0 16px 38px rgba(15, 23, 42, 0.12);
    --radius-large: 28px;
    --radius-card: 20px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--color-text);
    background: linear-gradient(180deg, #fff7ed 0, #ffffff 420px, #f8fafc 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 {
    display: block;
    max-width: 100%;
}

button,
input {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(18px);
}

.header-inner {
    width: min(var(--container), calc(100% - 32px));
    height: 78px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 26px;
}

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

.brand-mark {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-red), var(--color-orange));
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(249, 115, 22, 0.35);
    transition: transform 0.25s ease;
}

.brand:hover .brand-mark {
    transform: scale(1.08) rotate(3deg);
}

.brand-mark.small {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-name {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.02em;
    background: linear-gradient(90deg, #dc2626, #ea580c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-slogan {
    margin-top: 5px;
    color: var(--color-muted);
    font-size: 12px;
}

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

.nav-link {
    position: relative;
    padding: 10px 12px;
    color: #374151;
    font-weight: 700;
    transition: color 0.2s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 5px;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--color-amber);
    transition: transform 0.25s ease;
}

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

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

.header-search,
.mobile-search,
.hero-search {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-search input,
.mobile-search input,
.hero-search input,
.page-search-input {
    border: 1px solid #d1d5db;
    outline: none;
    border-radius: 999px;
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input {
    width: 220px;
    padding: 10px 16px;
}

.header-search input:focus,
.mobile-search input:focus,
.hero-search input:focus,
.page-search-input:focus {
    border-color: #f59e0b;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.18);
}

.header-search button,
.mobile-search button,
.hero-search button {
    border: 0;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-red), var(--color-orange));
    border-radius: 999px;
    padding: 10px 16px;
    cursor: pointer;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(249, 115, 22, 0.25);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: #fff7ed;
    color: #92400e;
    cursor: pointer;
    font-size: 22px;
}

.mobile-panel {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 16px;
}

.mobile-nav {
    display: grid;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--color-line);
}

.mobile-link {
    padding: 12px 14px;
    border-radius: 12px;
    color: #374151;
    background: #ffffff;
    font-weight: 700;
}

.mobile-search {
    margin-top: 12px;
}

.mobile-search input {
    min-width: 0;
    flex: 1;
    padding: 11px 15px;
}

.hero {
    width: min(1380px, calc(100% - 32px));
    margin: 28px auto 0;
    display: grid;
    grid-template-columns: minmax(0, 1.75fr) minmax(320px, 0.85fr);
    gap: 24px;
    align-items: stretch;
}

.hero-stage {
    position: relative;
    min-height: 610px;
    overflow: hidden;
    border-radius: 34px;
    background: #111827;
    box-shadow: var(--shadow-soft);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: scale(1.02);
}

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

.hero-slide img,
.detail-backdrop {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 68% 20%, rgba(249, 115, 22, 0.32), transparent 36%),
        linear-gradient(90deg, rgba(17, 24, 39, 0.92), rgba(17, 24, 39, 0.64) 52%, rgba(17, 24, 39, 0.16));
}

.hero-content {
    position: absolute;
    left: clamp(24px, 5vw, 72px);
    bottom: clamp(34px, 7vw, 76px);
    width: min(640px, calc(100% - 48px));
    color: #ffffff;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f59e0b;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.hero-content h1 {
    margin: 12px 0 16px;
    font-size: clamp(36px, 6vw, 76px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.hero-content p {
    margin: 0;
    max-width: 580px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
}

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

.primary-button,
.secondary-button,
.watch-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button,
.watch-now {
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-red), var(--color-orange));
    box-shadow: 0 14px 28px rgba(249, 115, 22, 0.28);
}

.secondary-button {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(12px);
}

.primary-button:hover,
.secondary-button:hover,
.watch-now:hover {
    transform: translateY(-2px);
}

.hero-controls {
    position: absolute;
    left: clamp(24px, 5vw, 72px);
    bottom: 28px;
    z-index: 3;
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 34px;
    height: 6px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.38);
    cursor: pointer;
}

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

.hero-side {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 20px;
}

.hero-search-card,
.category-pill,
.category-tile,
.category-overview-card,
.filter-panel,
.content-panel,
.meta-panel,
.player-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
}

.hero-search-card {
    padding: 32px;
}

.hero-search-card h2 {
    margin: 10px 0 12px;
    font-size: 30px;
    line-height: 1.18;
}

.hero-search-card p {
    margin: 0 0 22px;
    color: var(--color-muted);
}

.hero-search input {
    min-width: 0;
    flex: 1;
    padding: 12px 16px;
}

.hero-shortcuts {
    display: grid;
    gap: 12px;
}

.category-pill {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 18px 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-pill:hover,
.category-tile:hover,
.category-overview-card:hover,
.movie-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.category-pill span,
.category-tile strong,
.category-overview-card h2 {
    color: #111827;
    font-weight: 900;
}

.category-pill small,
.category-tile span,
.category-overview-card p {
    color: var(--color-muted);
}

.section {
    margin-top: 74px;
}

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

.section-heading.wide {
    align-items: center;
}

.section-heading h2,
.filter-panel h2,
.content-panel h2,
.meta-panel h2,
.player-title h2 {
    margin: 5px 0 0;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.16;
}

.section-more,
.text-link {
    color: #c2410c;
    font-weight: 900;
}

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

.movie-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(229, 231, 235, 0.9);
    border-radius: var(--radius-card);
    background: var(--color-panel);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.poster-link {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 3 / 4.2;
    background: linear-gradient(135deg, #111827, #7c2d12);
}

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

.movie-card:hover .poster-link img {
    transform: scale(1.06);
}

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(15, 23, 42, 0.72));
}

.play-dot {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-red), var(--color-orange));
    border-radius: 999px;
    box-shadow: 0 12px 24px rgba(239, 68, 68, 0.28);
}

.rank-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    min-width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(17, 24, 39, 0.82);
    border-radius: 12px;
    font-weight: 900;
}

.movie-card-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px;
    flex: 1;
}

.movie-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    color: #92400e;
    font-size: 12px;
    font-weight: 800;
}

.movie-meta-line span {
    padding: 4px 8px;
    border-radius: 999px;
    background: #fff7ed;
}

.movie-card h2,
.rank-info h2 {
    margin: 0;
    font-size: 19px;
    line-height: 1.3;
}

.movie-card p,
.rank-info p {
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
}

.tag-row,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag-row span,
.detail-tags span {
    padding: 4px 8px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #4b5563;
    font-size: 12px;
    font-weight: 700;
}

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

.movie-card.compact h2 {
    font-size: 17px;
}

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

.category-tile,
.category-overview-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 145px;
    padding: 22px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-overview-card {
    min-height: 210px;
}

.category-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-red), var(--color-orange));
    border-radius: 999px;
}

.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
}

.compact-hero {
    padding: 70px 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(249, 115, 22, 0.20), transparent 28%),
        linear-gradient(135deg, #fff7ed, #ffffff 52%, #fef3c7);
}

.compact-hero h1 {
    margin: 10px 0 14px;
    font-size: clamp(38px, 6vw, 70px);
    line-height: 1.06;
    letter-spacing: -0.04em;
}

.compact-hero p {
    max-width: 780px;
    margin: 0;
    color: var(--color-muted);
    font-size: 18px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
}

.compact-hero .breadcrumb {
    color: #92400e;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 24px;
    align-items: center;
    padding: 24px;
    margin-bottom: 26px;
}

.filter-panel p {
    margin: 8px 0 0;
    color: var(--color-muted);
}

.filter-actions {
    display: grid;
    gap: 12px;
}

.page-search-input {
    width: 100%;
    padding: 12px 16px;
}

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

.filter-chip {
    border: 0;
    padding: 8px 12px;
    border-radius: 999px;
    color: #92400e;
    background: #fff7ed;
    cursor: pointer;
    font-weight: 800;
}

.filter-chip.active {
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-red), var(--color-orange));
}

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

.rank-row {
    display: grid;
    grid-template-columns: 64px 86px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 12px 16px;
    overflow: visible;
}

.rank-number {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-red), var(--color-orange));
    font-weight: 900;
}

.rank-thumb {
    width: 86px;
    height: 114px;
    overflow: hidden;
    border-radius: 14px;
    background: #111827;
}

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

.rank-info {
    display: grid;
    gap: 8px;
}

.detail-hero {
    min-height: 620px;
    color: #ffffff;
    background: #111827;
}

.detail-backdrop {
    position: absolute;
    inset: 0;
    filter: saturate(1.08);
}

.detail-mask {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 74% 20%, rgba(249, 115, 22, 0.30), transparent 34%),
        linear-gradient(90deg, rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.70) 58%, rgba(15, 23, 42, 0.35));
}

.detail-hero-inner {
    position: relative;
    z-index: 2;
    padding: 58px 0 70px;
}

.detail-layout {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: clamp(26px, 5vw, 60px);
    align-items: center;
}

.detail-cover {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
}

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

.detail-cover span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 66px;
    height: 66px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-red), var(--color-orange));
    border-radius: 999px;
    box-shadow: 0 20px 38px rgba(249, 115, 22, 0.36);
}

.detail-info h1 {
    margin: 12px 0 16px;
    font-size: clamp(42px, 6vw, 82px);
    line-height: 1.04;
    letter-spacing: -0.05em;
}

.detail-info p {
    max-width: 760px;
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
}

.detail-tags span {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.detail-main {
    margin-top: -70px;
    position: relative;
    z-index: 5;
}

.player-card {
    overflow: hidden;
    margin-bottom: 28px;
}

.video-box {
    position: relative;
    overflow: hidden;
    background: #000000;
    aspect-ratio: 16 / 9;
}

.site-video {
    width: 100%;
    height: 100%;
    display: block;
    background: #000000;
}

.video-start {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    color: #ffffff;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.48));
    cursor: pointer;
}

.video-start span {
    width: 82px;
    height: 82px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--color-red), var(--color-orange));
    font-size: 30px;
    box-shadow: 0 24px 52px rgba(249, 115, 22, 0.36);
}

.video-start.is-hidden {
    display: none;
}

.player-title {
    padding: 22px 26px 26px;
}

.player-title p {
    margin: 8px 0 0;
    color: var(--color-muted);
}

.detail-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.75fr);
    gap: 24px;
}

.content-panel,
.meta-panel {
    padding: 28px;
}

.content-panel p {
    margin: 12px 0 26px;
    color: #374151;
    font-size: 17px;
}

.meta-list {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.meta-list div {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-line);
}

.meta-list span {
    color: var(--color-muted);
}

.meta-list strong {
    text-align: right;
}

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

.hidden-by-filter {
    display: none !important;
}

.empty-state {
    padding: 26px;
    color: var(--color-muted);
    background: #ffffff;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-card);
}

.site-footer {
    margin-top: 86px;
    background: linear-gradient(135deg, #f9fafb, #ffffff, #fff7ed);
    border-top: 1px solid var(--color-line);
}

.footer-inner {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
    gap: 36px;
    padding: 46px 0;
}

.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.footer-brand strong {
    font-size: 24px;
}

.footer-brand p {
    max-width: 560px;
    margin: 8px 0 0;
    color: var(--color-muted);
}

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

.footer-links h2 {
    margin: 0 0 10px;
    font-size: 16px;
}

.footer-links a {
    display: block;
    color: var(--color-muted);
    margin-top: 8px;
}

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

.footer-bottom {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 26px;
    color: var(--color-muted);
    border-top: 1px solid var(--color-line);
    font-size: 14px;
}

@media (max-width: 1120px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-stage {
        min-height: 560px;
    }

    .hero-side {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

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

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

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

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

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

    .header-inner {
        height: 68px;
    }

    .hero-side,
    .filter-panel,
    .detail-layout,
    .detail-content-grid,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .detail-cover {
        max-width: 280px;
    }

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

    .rank-row .watch-now {
        grid-column: 2 / -1;
        justify-self: flex-start;
    }

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

@media (max-width: 680px) {
    body {
        background: #ffffff;
    }

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

    .brand-slogan {
        display: none;
    }

    .hero {
        width: calc(100% - 20px);
        margin-top: 12px;
    }

    .hero-stage {
        min-height: 500px;
        border-radius: 24px;
    }

    .hero-content {
        left: 22px;
        bottom: 58px;
        width: calc(100% - 44px);
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-controls {
        left: 22px;
    }

    .section {
        margin-top: 50px;
    }

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

    .movie-grid,
    .rank-grid,
    .related-grid,
    .category-grid,
    .category-overview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

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

    .movie-card h2 {
        font-size: 16px;
    }

    .movie-card p,
    .tag-row,
    .movie-card .text-link {
        display: none;
    }

    .compact-hero {
        padding: 48px 0;
    }

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

    .detail-hero-inner {
        padding: 36px 0 92px;
    }

    .detail-info h1 {
        font-size: 42px;
    }

    .video-start span {
        width: 64px;
        height: 64px;
    }

    .content-panel,
    .meta-panel,
    .filter-panel,
    .hero-search-card {
        padding: 20px;
        border-radius: 22px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}
