:root {
    --sunset-50: #fff7ed;
    --sunset-100: #ffedd5;
    --sunset-500: #f97316;
    --sunset-600: #ea580c;
    --sunset-700: #c2410c;
    --twilight-500: #ef4444;
    --twilight-600: #dc2626;
    --golden-50: #fefce8;
    --golden-500: #eab308;
    --ocean-500: #0ea5e9;
    --ocean-600: #0284c7;
    --ink-900: #111827;
    --ink-800: #1f2937;
    --ink-700: #374151;
    --ink-600: #4b5563;
    --ink-500: #6b7280;
    --line: #e5e7eb;
    --page: #f8fafc;
    --card: #ffffff;
    --soft-shadow: 0 2px 15px -3px rgba(0, 0, 0, .07), 0 10px 20px -2px rgba(0, 0, 0, .04);
    --strong-shadow: 0 20px 45px -18px rgba(15, 23, 42, .35);
}

* {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink-900);
    background: linear-gradient(180deg, #fffaf4 0%, var(--page) 45%, #ffffff 100%);
    font-family: 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;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .95);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 1px 2px rgba(15, 23, 42, .05);
    backdrop-filter: blur(14px);
}

.header-inner {
    max-width: 1180px;
    height: 68px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 188px;
}

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--sunset-500), var(--twilight-500));
    box-shadow: 0 12px 28px -14px rgba(249, 115, 22, .9);
}

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

.brand-text strong {
    font-size: 20px;
    letter-spacing: -.02em;
}

.brand-text small {
    margin-top: 2px;
    color: var(--ink-500);
    font-size: 12px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 10px 12px;
    border-radius: 999px;
    color: var(--ink-700);
    font-size: 14px;
    font-weight: 650;
    transition: color .2s ease, background .2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--sunset-700);
    background: var(--sunset-50);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: inset 0 0 0 1px var(--line);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: var(--ink-800);
}

.hero {
    position: relative;
    max-width: 1180px;
    min-height: 620px;
    margin: 24px auto 0;
    padding: 0 20px;
}

.hero-slider {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    border-radius: 32px;
    background: linear-gradient(135deg, var(--sunset-600), var(--twilight-600));
    box-shadow: var(--strong-shadow);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: end;
    padding: 64px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .55s ease;
}

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

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 22%, rgba(249, 115, 22, .32), transparent 28%),
        linear-gradient(90deg, rgba(17, 24, 39, .9), rgba(17, 24, 39, .58) 46%, rgba(17, 24, 39, .24)),
        linear-gradient(0deg, rgba(17, 24, 39, .86), rgba(17, 24, 39, .04));
}

.hero-content {
    position: relative;
    max-width: 680px;
    color: #ffffff;
}

.hero-tags,
.meta-line,
.card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.hero-tags span,
.detail-tags span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    background: rgba(249, 115, 22, .92);
    color: #ffffff;
}

.hero-tags span:nth-child(2n),
.detail-tags span:nth-child(2n),
.tag-row span:nth-child(2n) {
    background: rgba(239, 68, 68, .92);
}

.hero h1 {
    margin: 18px 0 16px;
    font-size: clamp(42px, 7vw, 82px);
    line-height: .98;
    letter-spacing: -.06em;
}

.hero p {
    max-width: 620px;
    margin: 0 0 26px;
    color: rgba(255, 255, 255, .86);
    font-size: clamp(16px, 2.2vw, 21px);
}

.hero-actions,
.page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

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

.primary-btn {
    color: #ffffff;
    background: linear-gradient(135deg, var(--sunset-500), var(--twilight-500));
    box-shadow: 0 14px 32px -16px rgba(249, 115, 22, 1);
}

.ghost-btn {
    color: #ffffff;
    background: rgba(255, 255, 255, .15);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .28);
    backdrop-filter: blur(12px);
}

.ghost-btn.dark {
    color: var(--ink-800);
    background: rgba(255, 255, 255, .78);
    box-shadow: inset 0 0 0 1px var(--line);
}

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

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

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .46);
    cursor: pointer;
    transition: width .2s ease, background .2s ease;
}

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

.search-panel {
    max-width: 1180px;
    margin: 26px auto 0;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.search-box {
    flex: 1;
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, .88);
    box-shadow: var(--soft-shadow);
}

.search-box span {
    color: var(--sunset-700);
    font-weight: 900;
}

.search-box input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ink-800);
}

.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.quick-links a {
    padding: 10px 14px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--ink-700);
    font-size: 14px;
    font-weight: 700;
    box-shadow: inset 0 0 0 1px var(--line);
}

.content-section {
    max-width: 1180px;
    margin: 54px auto 0;
    padding: 0 20px;
}

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

.section-heading > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--sunset-500), var(--twilight-500));
}

.section-heading h2,
.strip-head h3 {
    margin: 0;
    color: var(--ink-900);
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.2;
}

.strip-head h3 {
    font-size: 20px;
}

.section-link,
.strip-head a {
    color: var(--sunset-700);
    font-weight: 800;
    font-size: 14px;
}

.soft-panel {
    padding-top: 34px;
    padding-bottom: 38px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--golden-50), var(--sunset-50));
}

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

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

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

.movie-card {
    overflow: hidden;
    border-radius: 18px;
    background: var(--card);
    box-shadow: var(--soft-shadow);
    transition: transform .24s ease, box-shadow .24s ease;
}

.movie-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 45px -24px rgba(15, 23, 42, .45);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, var(--sunset-100), var(--golden-50));
}

.poster-link img,
.wide-poster img,
.feature-card img,
.rank-cover img,
.detail-poster img,
.category-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.movie-card:hover .poster-link img,
.feature-card:hover img,
.category-card:hover img {
    transform: scale(1.05);
}

.poster-year {
    position: absolute;
    left: 10px;
    top: 10px;
    padding: 4px 8px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(17, 24, 39, .7);
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.card-body {
    padding: 14px;
}

.card-meta,
.meta-line {
    color: var(--ink-500);
    font-size: 12px;
    font-weight: 700;
}

.card-meta span,
.meta-line span {
    display: inline-flex;
    align-items: center;
    padding: 3px 7px;
    border-radius: 8px;
    background: var(--sunset-50);
    color: var(--sunset-700);
}

.card-body h3,
.wide-content h3,
.rank-info h2 {
    margin: 10px 0 8px;
    font-size: 17px;
    line-height: 1.3;
}

.card-body h3 a:hover,
.wide-content h3 a:hover,
.rank-info h2 a:hover {
    color: var(--sunset-700);
}

.card-body p,
.wide-content p,
.rank-info p {
    margin: 0;
    color: var(--ink-600);
    font-size: 14px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-foot {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: var(--ink-500);
    font-size: 12px;
}

.card-foot a {
    color: var(--sunset-700);
    font-weight: 800;
}

.feature-card {
    position: relative;
    display: block;
    min-height: 420px;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--strong-shadow);
}

.feature-card img,
.feature-overlay {
    position: absolute;
    inset: 0;
}

.feature-overlay {
    background: linear-gradient(90deg, rgba(17, 24, 39, .9), rgba(17, 24, 39, .4) 58%, rgba(17, 24, 39, .14));
}

.feature-content {
    position: relative;
    max-width: 640px;
    padding: 54px;
    color: #ffffff;
}

.feature-content h2 {
    margin: 18px 0 14px;
    font-size: clamp(34px, 6vw, 60px);
    line-height: 1.05;
}

.feature-content p {
    max-width: 560px;
    color: rgba(255, 255, 255, .84);
    font-size: 17px;
}

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

.category-tile,
.category-card-link {
    display: block;
    min-height: 150px;
    padding: 20px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
    transition: transform .2s ease, box-shadow .2s ease;
}

.category-tile:hover,
.category-card:hover .category-card-link {
    transform: translateY(-4px);
    box-shadow: 0 22px 38px -24px rgba(15, 23, 42, .5);
}

.category-tile strong,
.category-card h2 {
    display: block;
    margin: 0 0 10px;
    font-size: 19px;
    color: var(--ink-900);
}

.category-tile span,
.category-card p {
    color: var(--ink-600);
    font-size: 14px;
}

.category-strip {
    margin-top: 28px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .72);
    box-shadow: inset 0 0 0 1px rgba(229, 231, 235, .78);
}

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

.wide-card {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
}

.wide-poster {
    display: block;
    min-height: 180px;
    overflow: hidden;
    background: var(--sunset-50);
}

.wide-content {
    padding: 18px;
}

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

.page-hero {
    max-width: 1180px;
    margin: 24px auto 0;
    padding: 54px;
    border-radius: 30px;
    color: #ffffff;
    background:
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, .25), transparent 26%),
        linear-gradient(135deg, var(--sunset-600), var(--twilight-600));
    box-shadow: var(--strong-shadow);
    display: flex;
    justify-content: space-between;
    gap: 28px;
}

.page-hero h1 {
    margin: 8px 0 12px;
    font-size: clamp(36px, 6vw, 62px);
    line-height: 1.06;
    letter-spacing: -.05em;
}

.page-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, .86);
    font-size: 18px;
}

.eyebrow {
    color: rgba(255, 255, 255, .74);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
}

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

.category-card-link {
    min-height: 0;
    padding: 0;
    overflow: hidden;
}

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

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

.category-card-body span {
    display: inline-flex;
    margin-top: 12px;
    color: var(--sunset-700);
    font-weight: 900;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 68px 96px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 14px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
}

.rank-row.top-rank {
    background: linear-gradient(135deg, #ffffff, var(--sunset-50));
}

.rank-num {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--sunset-500), var(--twilight-500));
}

.rank-cover {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 14px;
    background: var(--sunset-50);
}

.rank-info h2 {
    font-size: 20px;
}

.rank-action {
    padding: 10px 16px;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 800;
    background: var(--ink-900);
}

.breadcrumb {
    max-width: 1180px;
    margin: 24px auto 0;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--ink-500);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--sunset-700);
    font-weight: 800;
}

.detail-hero,
.detail-layout {
    max-width: 1180px;
    margin: 28px auto 0;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 34px;
}

.detail-poster {
    overflow: hidden;
    border-radius: 28px;
    background: var(--sunset-50);
    box-shadow: var(--strong-shadow);
}

.detail-poster img {
    aspect-ratio: 3 / 4;
}

.detail-intro {
    align-self: center;
}

.detail-intro h1 {
    margin: 18px 0 14px;
    font-size: clamp(36px, 7vw, 70px);
    line-height: 1.04;
    letter-spacing: -.06em;
}

.lead-text {
    max-width: 780px;
    margin: 0 0 18px;
    color: var(--ink-600);
    font-size: 19px;
}

.detail-intro .primary-btn {
    margin-top: 20px;
}

.player-section {
    max-width: 1180px;
    margin: 34px auto 0;
    padding: 0 20px;
}

.player-frame {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #000000;
    box-shadow: var(--strong-shadow);
    aspect-ratio: 16 / 9;
}

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

.player-shade-button {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 0;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(17, 24, 39, .28), rgba(17, 24, 39, .72));
    cursor: pointer;
    transition: opacity .2s ease, visibility .2s ease;
}

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

.play-symbol {
    width: 78px;
    height: 78px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 6px;
    border-radius: 999px;
    color: var(--sunset-600);
    background: #ffffff;
    box-shadow: 0 22px 48px -22px rgba(255, 255, 255, .7);
    font-size: 32px;
}

.player-shade-button strong {
    font-size: 19px;
}

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

.detail-main,
.info-card {
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
}

.detail-main {
    padding: 28px;
}

.detail-block + .detail-block {
    margin-top: 30px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
}

.detail-block h2,
.info-card h2 {
    margin: 0 0 14px;
    font-size: 24px;
}

.detail-block p {
    margin: 0 0 14px;
    color: var(--ink-700);
    font-size: 17px;
}

.detail-side {
    display: grid;
    gap: 18px;
}

.info-card {
    padding: 22px;
}

.info-card dl {
    margin: 0;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 10px 14px;
}

.info-card dt {
    color: var(--ink-500);
    font-weight: 800;
}

.info-card dd {
    margin: 0;
    color: var(--ink-800);
}

.info-card a {
    display: block;
    padding: 12px 0;
    color: var(--sunset-700);
    font-weight: 800;
    border-top: 1px solid var(--line);
}

.info-card a:first-of-type {
    border-top: 0;
}

.related-section {
    margin-bottom: 64px;
}

.empty-state {
    display: none;
    padding: 30px;
    border-radius: 20px;
    background: #ffffff;
    color: var(--ink-500);
    text-align: center;
    box-shadow: var(--soft-shadow);
}

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

.site-footer {
    margin-top: 70px;
    padding: 50px 20px 26px;
    color: #d1d5db;
    background: #111827;
}

.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
}

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

.footer-brand strong {
    color: #ffffff;
    font-size: 20px;
}

.footer-brand p {
    max-width: 520px;
    margin: 8px 0 0;
    color: #9ca3af;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    justify-content: flex-end;
}

.footer-links a {
    color: #d1d5db;
    font-weight: 700;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1180px;
    margin: 32px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: #9ca3af;
    font-size: 14px;
    text-align: center;
}

[data-card].is-hidden {
    display: none !important;
}

@media (max-width: 1080px) {
    .movie-grid,
    .full-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

@media (max-width: 860px) {
    .header-inner {
        height: auto;
        min-height: 66px;
        flex-wrap: wrap;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .menu-toggle {
        display: block;
    }

    .site-nav {
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding-top: 10px;
        border-top: 1px solid var(--line);
    }

    .site-nav.is-open {
        display: flex;
    }

    .nav-link {
        border-radius: 12px;
    }

    .hero,
    .hero-slider {
        min-height: 520px;
    }

    .hero-slide {
        padding: 34px 24px 60px;
    }

    .search-panel,
    .page-hero {
        flex-direction: column;
        align-items: stretch;
    }

    .wide-list,
    .category-page-grid,
    .footer-inner,
    .detail-hero,
    .detail-layout {
        grid-template-columns: 1fr;
    }

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

    .footer-links {
        justify-content: flex-start;
    }
}

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

    .hero {
        margin-top: 14px;
        padding: 0 12px;
    }

    .hero-slider {
        min-height: 500px;
        border-radius: 22px;
    }

    .content-section,
    .search-panel,
    .page-hero,
    .breadcrumb,
    .detail-hero,
    .detail-layout,
    .player-section {
        padding-left: 14px;
        padding-right: 14px;
    }

    .page-hero {
        margin-top: 14px;
        padding-top: 36px;
        padding-bottom: 36px;
        border-radius: 22px;
    }

    .movie-grid,
    .compact-grid,
    .full-grid,
    .category-nav-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .wide-card,
    .rank-row {
        grid-template-columns: 86px minmax(0, 1fr);
    }

    .wide-poster {
        min-height: 132px;
    }

    .rank-num,
    .rank-action {
        display: none;
    }

    .feature-card {
        min-height: 360px;
        border-radius: 22px;
    }

    .feature-content {
        padding: 30px;
    }

    .soft-panel,
    .category-strip,
    .detail-main,
    .info-card {
        border-radius: 18px;
    }

    .detail-intro h1 {
        font-size: 40px;
    }

    .player-frame {
        border-radius: 20px;
    }
}
