* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
    color: #1f2937;
    background: #f9fafb;
    -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    color: #ffffff;
    background: linear-gradient(90deg, #ec4899, #fb7185, #fb923c);
    box-shadow: 0 10px 28px rgba(236, 72, 153, 0.28);
}

.header-inner {
    height: 64px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    white-space: nowrap;
    transition: transform 0.25s ease;
}

.brand:hover {
    transform: scale(1.04);
}

.brand-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ec4899;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(255, 255, 255, 0.25);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    min-width: 0;
}

.desktop-nav a,
.mobile-panel a {
    color: #fff7fb;
    font-weight: 600;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
    color: #fff1f2;
}

.search-form {
    position: relative;
    display: flex;
    align-items: center;
}

.search-form input {
    width: 260px;
    height: 40px;
    padding: 0 48px 0 18px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 999px;
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
}

.search-form input::placeholder {
    color: #ffe4ef;
}

.search-form input:focus {
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
}

.search-form button {
    position: absolute;
    right: 6px;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 50%;
    color: #ec4899;
    cursor: pointer;
    background: #ffffff;
}

.menu-toggle {
    display: none;
    margin-left: auto;
    border: 0;
    color: #ffffff;
    cursor: pointer;
    font-size: 26px;
    background: transparent;
}

.mobile-panel {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 18px;
}

.mobile-panel.is-open {
    display: block;
    animation: slide-down 0.22s ease both;
}

.mobile-panel nav {
    display: grid;
    gap: 8px;
    margin-top: 12px;
}

.mobile-panel nav a {
    padding: 10px 14px;
    border-radius: 12px;
}

.mobile-panel nav a:hover {
    background: rgba(255, 255, 255, 0.14);
}

.hero-carousel {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: #111827;
}

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

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.08));
}

.hero-content {
    max-width: 700px;
    color: #ffffff;
}

.hero-content h1 {
    margin: 18px 0 16px;
    font-size: clamp(40px, 6vw, 66px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.hero-content p {
    margin: 0 0 24px;
    color: #e5e7eb;
    font-size: 20px;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.category-pill,
.category-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border-radius: 999px;
    background: #ec4899;
    box-shadow: 0 8px 22px rgba(236, 72, 153, 0.28);
}

.category-pill {
    padding: 8px 16px;
    font-weight: 700;
}

.category-pill.small {
    padding: 5px 10px;
    font-size: 12px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    align-items: center;
    margin-bottom: 30px;
    color: #ffffff;
    font-weight: 600;
}

.hero-stats.compact {
    gap: 16px;
    margin: 0;
    font-size: 14px;
}

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 28px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.primary-button {
    color: #ffffff;
    background: linear-gradient(90deg, #ec4899, #f43f5e);
    box-shadow: 0 14px 32px rgba(244, 63, 94, 0.34);
}

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

.secondary-button {
    color: #be185d;
    background: #ffffff;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
    transform: translateY(-50%);
    transition: background 0.2s ease;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.34);
}

.hero-prev {
    left: 22px;
}

.hero-next {
    right: 22px;
}

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

.hero-dots button {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.55);
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dots button.is-active {
    width: 34px;
    background: #ec4899;
}

.main-content {
    padding: 48px 0 0;
}

.section {
    margin-bottom: 64px;
}

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

.section-heading h2,
.page-title h1 {
    margin: 0;
    color: #1f2937;
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 900;
    letter-spacing: -0.03em;
}

.section-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border-radius: 12px;
    background: linear-gradient(135deg, #ec4899, #fb923c);
    box-shadow: 0 10px 24px rgba(236, 72, 153, 0.24);
}

.heading-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, #f9a8d4, transparent);
}

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

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

.movie-link {
    display: block;
    overflow: hidden;
    height: 100%;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(236, 72, 153, 0.18);
}

.movie-cover {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #111827;
}

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

.movie-link:hover .movie-cover img,
.featured-card a:hover img,
.horizontal-link:hover img {
    transform: scale(1.08);
}

.movie-cover::after,
.horizontal-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.25s ease;
}

.movie-link:hover .movie-cover::after,
.horizontal-link:hover .horizontal-cover::after {
    background: rgba(0, 0, 0, 0.36);
}

.category-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 700;
}

.duration-badge {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 2;
    padding: 4px 8px;
    color: #ffffff;
    font-size: 12px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.68);
}

.hover-play,
.play-mark {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.hover-play {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #ec4899;
}

.movie-link:hover .hover-play,
.horizontal-link:hover .play-mark {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.movie-body {
    padding: 16px;
}

.movie-body h3,
.horizontal-body h3,
.rank-card h3 {
    margin: 0 0 8px;
    color: #1f2937;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 800;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.movie-link:hover h3,
.horizontal-link:hover h3,
.rank-link:hover h3 {
    color: #db2777;
}

.movie-body p,
.horizontal-body p,
.rank-card p {
    margin: 0 0 14px;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #6b7280;
    font-size: 13px;
}

.scroller {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(250px, 290px);
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: thin;
}

.featured-panel {
    padding: 30px;
    border-radius: 24px;
    background: linear-gradient(90deg, #fce7f3, #ffe4e6, #ffedd5);
}

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

.horizontal-link {
    display: flex;
    height: 100%;
    gap: 16px;
    overflow: hidden;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.horizontal-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(236, 72, 153, 0.16);
}

.horizontal-cover {
    position: relative;
    flex: 0 0 155px;
    min-height: 118px;
    overflow: hidden;
    background: #111827;
}

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

.horizontal-body {
    min-width: 0;
    padding: 16px 16px 16px 0;
}

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

.featured-card a {
    position: relative;
    display: block;
    height: 380px;
    overflow: hidden;
    border-radius: 20px;
    color: #ffffff;
    box-shadow: 0 22px 44px rgba(15, 23, 42, 0.18);
}

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

.featured-layer {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.42), transparent);
}

.featured-layer h3 {
    margin: 16px 0 10px;
    font-size: 28px;
    line-height: 1.2;
}

.featured-layer p {
    color: #f3f4f6;
    line-height: 1.6;
}

.featured-play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 74px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    opacity: 0;
    color: #ffffff;
    font-size: 28px;
    background: #ec4899;
    transform: translate(-50%, -50%) scale(0.9);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.featured-card a:hover .featured-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.rank-section {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(310px, 1fr);
    gap: 30px;
}

.rank-box {
    padding: 24px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

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

.rank-item {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 14px;
    transition: background 0.2s ease;
}

.rank-item:hover {
    background: #fdf2f8;
}

.rank-no {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #4b5563;
    font-weight: 900;
    background: #f3f4f6;
}

.rank-no.top1 {
    color: #ffffff;
    background: #facc15;
}

.rank-no.top2 {
    color: #ffffff;
    background: #d1d5db;
}

.rank-no.top3 {
    color: #ffffff;
    background: #fb923c;
}

.rank-item h3 {
    margin: 0 0 3px;
    font-size: 15px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.rank-item p {
    margin: 0;
    color: #6b7280;
    font-size: 13px;
}

.gradient-cta {
    padding: 48px 28px;
    border-radius: 26px;
    color: #ffffff;
    text-align: center;
    background: linear-gradient(90deg, #ec4899, #fb7185, #fb923c);
    box-shadow: 0 20px 45px rgba(236, 72, 153, 0.22);
}

.gradient-cta h2 {
    margin: 0 0 14px;
    font-size: clamp(30px, 5vw, 46px);
    font-weight: 900;
}

.gradient-cta p {
    margin: 0 0 24px;
    color: #fff1f2;
    font-size: 18px;
}

.category-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.category-cloud a {
    padding: 10px 18px;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: background 0.2s ease, transform 0.2s ease;
}

.category-cloud a:hover {
    background: rgba(255, 255, 255, 0.32);
    transform: translateY(-2px);
}

.page-hero {
    padding: 68px 0 52px;
    color: #ffffff;
    background: radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.18), transparent 30%), linear-gradient(90deg, #ec4899, #fb7185, #fb923c);
}

.page-title {
    max-width: 780px;
}

.page-title p {
    margin: 14px 0 0;
    color: #fff1f2;
    font-size: 18px;
    line-height: 1.8;
}

.page-title h1 {
    color: #ffffff;
}

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

.category-card {
    display: block;
    padding: 28px;
    min-height: 170px;
    border-radius: 24px;
    color: #ffffff;
    background: linear-gradient(135deg, #ec4899, #fb7185 58%, #fb923c);
    box-shadow: 0 18px 34px rgba(236, 72, 153, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 44px rgba(236, 72, 153, 0.26);
}

.category-card h2 {
    margin: 0 0 12px;
    font-size: 28px;
}

.category-card p {
    margin: 0;
    color: #fff1f2;
    line-height: 1.7;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
    padding: 18px;
    margin-bottom: 28px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

.filter-bar input {
    width: min(420px, 100%);
    height: 44px;
    padding: 0 16px;
    border: 1px solid #f9a8d4;
    border-radius: 999px;
    outline: none;
}

.filter-bar input:focus {
    box-shadow: 0 0 0 4px #fce7f3;
}

.empty-state {
    display: none;
    padding: 36px;
    color: #6b7280;
    text-align: center;
    border-radius: 18px;
    background: #ffffff;
}

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

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    color: #6b7280;
    font-size: 14px;
}

.breadcrumb a {
    color: #db2777;
}

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

.poster-card {
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
}

.poster-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.detail-info h1 {
    margin: 0 0 16px;
    color: #111827;
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.08;
    font-weight: 900;
}

.detail-lead {
    margin: 0 0 20px;
    color: #4b5563;
    font-size: 18px;
    line-height: 1.8;
}

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

.info-list div {
    padding: 13px 15px;
    border-radius: 14px;
    color: #4b5563;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.info-list strong {
    color: #111827;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.tag-list span {
    padding: 7px 12px;
    border-radius: 999px;
    color: #be185d;
    font-size: 13px;
    font-weight: 700;
    background: #fce7f3;
}

.player-section {
    margin-top: 48px;
}

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

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

.player-trigger {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    color: #ffffff;
    cursor: pointer;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.18));
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-trigger span {
    width: 94px;
    height: 94px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 5px;
    border-radius: 50%;
    font-size: 36px;
    background: linear-gradient(135deg, #ec4899, #fb923c);
    box-shadow: 0 18px 42px rgba(236, 72, 153, 0.38);
}

.article-card {
    padding: 28px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.07);
}

.article-card h2 {
    margin: 0 0 16px;
    color: #111827;
    font-size: 28px;
}

.article-card p {
    margin: 0;
    color: #4b5563;
    line-height: 1.9;
    font-size: 16px;
}

.article-stack {
    display: grid;
    gap: 24px;
    margin-top: 34px;
}


.rank-entry {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

.rank-entry > .rank-no {
    margin-top: 12px;
}

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

.rank-link {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 16px;
    height: 100%;
    overflow: hidden;
    padding: 12px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.07);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.rank-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(236, 72, 153, 0.16);
}

.rank-link img {
    width: 150px;
    height: 105px;
    object-fit: cover;
    border-radius: 13px;
}

.site-footer {
    margin-top: 72px;
    color: #ffffff;
    background: linear-gradient(90deg, #db2777, #f43f5e, #f97316);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
    padding: 44px 0;
}

.site-footer h2 {
    margin: 0 0 16px;
    font-size: 20px;
}

.site-footer p,
.site-footer a,
.footer-bottom {
    color: #ffe4ef;
    line-height: 1.75;
}

.site-footer ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

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

.footer-bottom {
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
}

@keyframes slide-down {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    .search-form:not(.mobile-search) {
        margin-left: auto;
    }

    .menu-toggle {
        display: block;
    }

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

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

    .rank-section,
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .poster-card {
        max-width: 420px;
    }
}

@media (max-width: 760px) {
    .header-inner {
        gap: 12px;
    }

    .brand {
        font-size: 19px;
    }

    .search-form:not(.mobile-search) {
        display: none;
    }

    .mobile-search {
        display: flex;
    }

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

    .hero-carousel {
        height: 520px;
    }

    .hero-overlay {
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.45));
    }

    .hero-content {
        padding-top: 50px;
    }

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

    .hero-arrow {
        display: none;
    }

    .movie-grid,
    .featured-layout,
    .horizontal-grid,
    .category-overview,
    .rank-grid,
    .footer-grid,
    .info-list {
        grid-template-columns: 1fr;
    }

    .horizontal-link,
    .rank-link {
        grid-template-columns: 1fr;
        display: block;
    }

    .horizontal-cover,
    .rank-link img {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .horizontal-body {
        padding: 16px;
    }

    .featured-card a {
        height: 320px;
    }

    .page-hero {
        padding: 52px 0 42px;
    }

    .player-trigger span {
        width: 74px;
        height: 74px;
    }
}
