* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

button,
input {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    color: #ffffff;
    box-shadow: 0 18px 38px rgba(180, 83, 9, 0.22);
}

.header-main {
    background: linear-gradient(90deg, #d97706 0%, #f97316 50%, #d97706 100%);
}

.header-inner {
    min-height: 68px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: -0.04em;
    flex: 0 0 auto;
}

.brand-icon {
    width: 36px;
    height: 36px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.brand-text {
    font-size: 24px;
}

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

.nav-link {
    font-weight: 700;
    opacity: 0.9;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #fef3c7;
    opacity: 1;
}

.site-search-form {
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
}

.site-search-form input {
    width: 220px;
    border: 0;
    outline: 0;
    padding: 10px 14px 10px 18px;
    color: #ffffff;
    background: transparent;
}

.site-search-form input::placeholder {
    color: rgba(255, 255, 255, 0.75);
}

.site-search-form button {
    border: 0;
    cursor: pointer;
    padding: 10px 18px;
    color: #b45309;
    background: #ffffff;
    font-weight: 800;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.16);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: #ffffff;
}

.mobile-panel {
    display: none;
    background: rgba(146, 64, 14, 0.96);
}

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

.mobile-panel-inner {
    display: grid;
    gap: 10px;
    padding: 16px 0 18px;
}

.mobile-link {
    padding: 10px 0;
    font-weight: 700;
}

.mobile-link.active {
    color: #fde68a;
}

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

.mobile-search input {
    width: 100%;
}

.category-strip {
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
}

.category-strip-inner {
    display: flex;
    gap: 26px;
    overflow-x: auto;
    padding: 12px 0;
    scrollbar-width: none;
}

.category-strip-inner::-webkit-scrollbar {
    display: none;
}

.category-strip a {
    white-space: nowrap;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
    transition: color 0.2s ease;
}

.category-strip a:hover {
    color: #fef3c7;
}

.hero-carousel {
    position: relative;
    height: 640px;
    min-height: 540px;
    overflow: hidden;
    background: linear-gradient(115deg, #b45309, #f97316, #991b1b);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

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

.hero-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.42;
    transform: scale(1.04);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 38%, rgba(255, 255, 255, 0.16), transparent 28%),
        linear-gradient(90deg, rgba(17, 24, 39, 0.90) 0%, rgba(120, 53, 15, 0.68) 52%, rgba(127, 29, 29, 0.55) 100%);
}

.hero-content {
    position: relative;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 340px;
    align-items: center;
    gap: 56px;
    color: #ffffff;
}

.hero-copy {
    max-width: 760px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    margin-bottom: 20px;
    border-radius: 999px;
    color: #fef3c7;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
    font-weight: 800;
}

.hero-copy h1 {
    margin: 0 0 18px;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.06em;
    text-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.hero-copy p {
    max-width: 720px;
    margin: 0 0 22px;
    font-size: clamp(18px, 2vw, 24px);
    color: #f9fafb;
}

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

.hero-tags span,
.tag-row span,
.detail-tags a {
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

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

.primary-button,
.ghost-button,
.text-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
    padding: 14px 28px;
    color: #b45309;
    background: #ffffff;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

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

.ghost-button {
    padding: 13px 26px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
}

.text-button {
    color: #d97706;
}

.hero-poster {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
    transform: rotate(2deg);
}

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

.hero-poster span {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #d97706;
    background: rgba(255, 255, 255, 0.92);
    transform: translate(-50%, -50%);
    font-size: 28px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.hero-control {
    position: absolute;
    top: 50%;
    width: 46px;
    height: 62px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    cursor: pointer;
    font-size: 42px;
    transform: translateY(-50%);
    backdrop-filter: blur(12px);
}

.hero-control.prev {
    left: 20px;
}

.hero-control.next {
    right: 20px;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 28px;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

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

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

.intro-band {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 430px;
    gap: 28px;
    align-items: center;
    padding: 34px 0;
}

.intro-grid h1 {
    margin: 0 0 8px;
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: -0.04em;
}

.intro-grid p {
    margin: 0;
    color: #64748b;
}

.home-search {
    border-color: #fed7aa;
    background: #fff7ed;
}

.home-search input,
.search-page-form input {
    color: #111827;
}

.home-search input::placeholder,
.search-page-form input::placeholder {
    color: #9ca3af;
}

.home-search button,
.search-page-form button {
    color: #ffffff;
    background: linear-gradient(90deg, #d97706, #f97316);
}

.main-sections {
    padding: 48px 0 72px;
}

.content-section {
    margin-bottom: 58px;
}

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

.section-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.section-head-row .section-heading {
    margin-bottom: 0;
}

.section-heading span {
    width: 48px;
    height: 5px;
    border-radius: 999px;
    background: linear-gradient(90deg, #f59e0b, #f97316);
}

.section-heading.green span {
    background: linear-gradient(90deg, #22c55e, #14b8a6);
}

.section-heading.blue span {
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
}

.section-heading.purple span {
    background: linear-gradient(90deg, #8b5cf6, #ec4899);
}

.section-heading.red span {
    background: linear-gradient(90deg, #ef4444, #f97316);
}

.section-heading.white span {
    background: #ffffff;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(26px, 3vw, 34px);
    line-height: 1.2;
    letter-spacing: -0.04em;
}

.more-link {
    color: #d97706;
    font-weight: 900;
}

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

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

.movie-card {
    display: block;
    overflow: hidden;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.poster-wrap {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

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

.movie-card:hover .poster-wrap img,
.feature-tile:hover img,
.category-card:hover img,
.podium-card:hover img {
    transform: scale(1.08);
}

.poster-wrap::after,
.feature-tile::after,
.category-card-image::after,
.podium-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.72) 100%);
    pointer-events: none;
}

.duration-badge,
.rank-number {
    position: absolute;
    z-index: 2;
    top: 12px;
    right: 12px;
    border-radius: 999px;
    padding: 5px 10px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.72);
    font-size: 12px;
    font-weight: 800;
}

.rank-number {
    left: 12px;
    right: auto;
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

.play-float {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 50%;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #d97706;
    background: rgba(255, 255, 255, 0.92);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.92);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.movie-card:hover .play-float,
.feature-tile:hover .play-float {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.card-body {
    padding: 16px;
}

.category-pill {
    display: inline-flex;
    margin-bottom: 10px;
    border-radius: 999px;
    padding: 4px 9px;
    color: #b45309;
    background: #fff7ed;
    font-size: 12px;
    font-weight: 900;
}

.card-body strong {
    display: block;
    margin-bottom: 8px;
    font-size: 17px;
    line-height: 1.35;
    transition: color 0.2s ease;
}

.movie-card:hover .card-body strong {
    color: #d97706;
}

.card-body p {
    margin: 0 0 12px;
    color: #64748b;
    font-size: 14px;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: #94a3b8;
    font-size: 12px;
}

.tag-row {
    margin-top: 12px;
}

.tag-row span {
    color: #64748b;
    background: #f1f5f9;
}

.soft-panel {
    padding: 32px;
    border-radius: 28px;
}

.blue-panel {
    background: linear-gradient(135deg, #eff6ff, #ecfeff);
}

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

.wide-card {
    display: grid;
    grid-template-columns: 190px 1fr;
}

.wide-poster {
    height: 150px;
}

.wide-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.feature-tile {
    position: relative;
    min-height: 230px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border-radius: 22px;
    color: #ffffff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.14);
}

.feature-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.feature-tile div {
    position: relative;
    z-index: 2;
    padding: 24px;
}

.feature-tile span {
    display: inline-flex;
    margin-bottom: 8px;
    border-radius: 999px;
    padding: 5px 11px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    font-size: 12px;
    font-weight: 900;
}

.feature-tile strong {
    display: block;
    margin-bottom: 8px;
    font-size: 22px;
}

.feature-tile p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
}

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

.compact-card {
    display: grid;
    grid-template-columns: 142px 1fr;
    align-items: stretch;
}

.small-poster {
    height: 106px;
}

.compact-card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trend-panel {
    padding: 32px;
    border-radius: 28px;
    color: #ffffff;
    background: linear-gradient(135deg, #14b8a6, #16a34a);
}

.trend-panel .movie-card {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    backdrop-filter: blur(12px);
}

.trend-panel .card-body p,
.trend-panel .card-meta {
    color: rgba(255, 255, 255, 0.78);
}

.trend-panel .category-pill,
.trend-panel .tag-row span {
    color: #0f766e;
    background: rgba(255, 255, 255, 0.9);
}

.page-hero {
    color: #ffffff;
    background: linear-gradient(120deg, #d97706, #f97316, #ef4444);
}

.page-hero .site-container {
    padding: 76px 0;
}

.small-hero .site-container,
.category-hero .site-container,
.ranking-hero .site-container,
.search-hero .site-container {
    max-width: 920px;
}

.page-hero span {
    display: inline-flex;
    margin-bottom: 14px;
    border-radius: 999px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.18);
    font-weight: 900;
}

.page-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.06em;
}

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

.page-section {
    padding: 48px 0 72px;
}

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

.category-card {
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
}

.category-card-image {
    position: relative;
    height: 230px;
    display: block;
    overflow: hidden;
    color: #ffffff;
}

.category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.category-card-image span {
    position: absolute;
    z-index: 2;
    left: 20px;
    bottom: 18px;
    font-size: 28px;
    font-weight: 900;
}

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

.category-card-body h2 {
    margin: 0 0 8px;
    font-size: 24px;
}

.category-card-body p {
    margin: 0 0 16px;
    color: #64748b;
}

.mini-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.mini-links a {
    border-radius: 999px;
    padding: 5px 10px;
    color: #92400e;
    background: #fff7ed;
    font-size: 12px;
    font-weight: 800;
}

.filter-bar {
    display: grid;
    gap: 14px;
    margin-bottom: 28px;
    padding: 18px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}

.page-filter-input {
    width: 100%;
    border: 1px solid #fed7aa;
    border-radius: 16px;
    outline: 0;
    padding: 13px 16px;
    background: #fff7ed;
}

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

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

.filter-chip.active,
.filter-chip:hover {
    color: #ffffff;
    background: linear-gradient(90deg, #d97706, #f97316);
}

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

.podium-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 34px;
}

.podium-card {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border-radius: 26px;
    color: #ffffff;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.16);
}

.podium-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.podium-card div {
    position: relative;
    z-index: 2;
    padding: 24px;
}

.podium-card span {
    display: inline-flex;
    margin-bottom: 10px;
    border-radius: 999px;
    padding: 6px 12px;
    background: linear-gradient(90deg, #f59e0b, #f97316);
    font-weight: 900;
}

.podium-card h2 {
    margin: 0 0 8px;
    font-size: 26px;
}

.podium-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
}

.ranking-row {
    display: grid;
    grid-template-columns: 54px 120px 1fr;
    align-items: center;
    gap: 16px;
    padding: 12px;
}

.ranking-index {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    font-weight: 900;
}

.ranking-row img {
    width: 120px;
    height: 78px;
    border-radius: 12px;
    object-fit: cover;
}

.ranking-row strong {
    display: block;
    margin-bottom: 5px;
    font-size: 18px;
}

.ranking-row p {
    margin: 0 0 5px;
    color: #64748b;
}

.ranking-row div span {
    color: #94a3b8;
    font-size: 13px;
}

.search-page-form {
    display: flex;
    max-width: 680px;
    margin-top: 28px;
    overflow: hidden;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: #ffffff;
}

.search-page-form input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 15px 20px;
}

.search-page-form button {
    border: 0;
    padding: 15px 28px;
    color: #ffffff;
    background: linear-gradient(90deg, #d97706, #f97316);
    cursor: pointer;
    font-weight: 900;
}

.search-summary {
    margin-bottom: 24px;
    font-size: 18px;
    font-weight: 900;
}

.search-default.hidden {
    display: none;
}

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

.detail-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.34;
    filter: blur(2px);
    transform: scale(1.04);
}

.detail-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(17, 24, 39, 0.94), rgba(120, 53, 15, 0.72));
}

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

.detail-poster {
    overflow: hidden;
    border-radius: 26px;
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.36);
}

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

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
    color: #fde68a;
    font-weight: 800;
}

.detail-copy h1 {
    margin: 0 0 16px;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.06;
    letter-spacing: -0.06em;
}

.detail-copy p {
    max-width: 820px;
    margin: 0 0 20px;
    color: #f8fafc;
    font-size: 20px;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.detail-meta span {
    border-radius: 999px;
    padding: 7px 12px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    font-size: 13px;
    font-weight: 900;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 28px;
    padding: 48px 0 78px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    background: #000000;
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.24);
}

.player-shell video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
    cursor: pointer;
}

.player-start {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.42));
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.player-start span {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #d97706;
    background: rgba(255, 255, 255, 0.94);
    font-size: 34px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

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

.detail-section,
.side-card {
    margin-top: 24px;
    border-radius: 22px;
    padding: 26px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.detail-section h2,
.side-card h2 {
    margin: 0 0 14px;
    font-size: 24px;
    letter-spacing: -0.03em;
}

.detail-section p {
    margin: 0;
    color: #475569;
    font-size: 17px;
}

.review-section {
    background: linear-gradient(135deg, #fff7ed, #ffffff);
}

.detail-tags a {
    color: #92400e;
    background: #ffedd5;
}

.detail-side {
    align-self: start;
    position: sticky;
    top: 128px;
}

.side-card {
    margin-top: 0;
    margin-bottom: 24px;
}

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

.side-card dl div {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
}

.side-card dt {
    color: #94a3b8;
    font-weight: 800;
}

.side-card dd {
    margin: 0;
    color: #111827;
    font-weight: 800;
}

.side-related {
    display: grid;
    gap: 14px;
}

.side-related .compact-card {
    grid-template-columns: 92px 1fr;
}

.side-related .small-poster {
    height: 86px;
}

.side-related .duration-badge,
.side-related .rank-number,
.side-related .tag-row,
.side-related .card-meta span:nth-child(3) {
    display: none;
}

.site-footer {
    color: #cbd5e1;
    background: linear-gradient(180deg, #111827, #020617);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 32px;
    padding: 46px 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 900;
}

.footer-brand span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, #d97706, #f97316);
}

.site-footer p {
    max-width: 360px;
    margin: 0;
    color: #94a3b8;
}

.site-footer h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 16px;
}

.site-footer a {
    display: block;
    margin-bottom: 8px;
    color: #cbd5e1;
}

.site-footer a:hover {
    color: #fbbf24;
}

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    padding: 18px 0;
    text-align: center;
    color: #64748b;
    font-size: 14px;
}

.line-clamp-1,
.line-clamp-2,
.line-clamp-3 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

.line-clamp-1 {
    -webkit-line-clamp: 1;
}

.line-clamp-2 {
    -webkit-line-clamp: 2;
}

.line-clamp-3 {
    -webkit-line-clamp: 3;
}

.is-filtered-out {
    display: none !important;
}

@media (max-width: 1080px) {
    .desktop-nav,
    .header-inner > .site-search-form {
        display: none;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

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

    .hero-poster {
        display: none;
    }

    .detail-side {
        position: static;
    }

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

@media (max-width: 820px) {
    .hero-carousel {
        height: 580px;
    }

    .hero-content {
        gap: 0;
    }

    .featured-grid,
    .movie-grid,
    .movie-grid.four-col,
    .wide-grid,
    .category-feature-grid,
    .category-grid,
    .podium-grid,
    .category-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wide-card,
    .compact-card,
    .ranking-row {
        grid-template-columns: 1fr;
    }

    .wide-poster,
    .small-poster {
        height: 190px;
    }

    .ranking-row img {
        width: 100%;
        height: 180px;
    }

    .detail-poster {
        display: none;
    }

    .soft-panel,
    .trend-panel {
        padding: 20px;
    }
}

@media (max-width: 560px) {
    .site-container {
        width: min(100% - 24px, 1180px);
    }

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

    .hero-carousel {
        height: 560px;
        min-height: 520px;
    }

    .hero-control {
        display: none;
    }

    .hero-copy h1 {
        font-size: 40px;
    }

    .hero-copy p {
        font-size: 17px;
    }

    .hero-actions,
    .detail-actions {
        display: grid;
    }

    .featured-grid,
    .movie-grid,
    .movie-grid.four-col,
    .wide-grid,
    .category-feature-grid,
    .category-grid,
    .podium-grid,
    .category-list {
        grid-template-columns: 1fr;
    }

    .poster-wrap {
        height: 300px;
    }

    .search-page-form {
        display: grid;
        border-radius: 20px;
    }

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

    .detail-copy p {
        font-size: 17px;
    }

    .detail-section,
    .side-card {
        padding: 20px;
    }
}
