:root {
    --bg: #fff7fb;
    --surface: #ffffff;
    --text: #1f2937;
    --muted: #6b7280;
    --pink: #ec4899;
    --pink-dark: #be185d;
    --orange: #f97316;
    --yellow: #f59e0b;
    --line: rgba(236, 72, 153, 0.14);
    --shadow: 0 16px 40px rgba(190, 24, 93, 0.12);
    --shadow-strong: 0 28px 70px rgba(190, 24, 93, 0.22);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 20% 0%, rgba(236, 72, 153, 0.14), transparent 34rem),
        radial-gradient(circle at 90% 8%, rgba(249, 115, 22, 0.13), transparent 30rem),
        var(--bg);
}

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

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

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 10px 30px rgba(190, 24, 93, 0.08);
}

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

.logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -0.04em;
    white-space: nowrap;
    background: linear-gradient(90deg, var(--pink), var(--orange), var(--yellow));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-mark {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--pink), var(--orange));
    box-shadow: 0 10px 24px rgba(236, 72, 153, 0.34);
    font-size: 14px;
}

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

.desktop-nav > a,
.nav-dropdown > button {
    border: 0;
    color: #374151;
    background: transparent;
    font-weight: 700;
    transition: color 0.2s ease;
}

.desktop-nav > a:hover,
.desktop-nav > a.is-active,
.nav-dropdown:hover > button {
    color: var(--pink);
}

.nav-dropdown {
    position: relative;
}

.dropdown-panel {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 180px;
    display: grid;
    gap: 4px;
    padding: 10px;
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow-strong);
    border: 1px solid var(--line);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.22s ease;
}

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

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

.dropdown-panel a:hover {
    color: var(--pink);
    background: #fdf2f8;
}

.header-search {
    position: relative;
    display: flex;
    align-items: center;
    width: 300px;
    background: #f3f4f6;
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid transparent;
}

.header-search:focus-within {
    border-color: rgba(236, 72, 153, 0.4);
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.1);
}

.header-search input,
.big-search input,
.filter-search input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 12px 16px;
    color: var(--text);
}

.header-search button,
.big-search button,
.filter-search button {
    border: 0;
    border-radius: 999px;
    padding: 10px 16px;
    margin-right: 4px;
    color: #fff;
    background: linear-gradient(135deg, var(--pink), var(--orange));
    font-weight: 800;
}

.mobile-toggle {
    display: none;
    margin-left: auto;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    color: var(--pink);
    background: #fdf2f8;
    font-size: 22px;
}

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

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

.mobile-panel form {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.mobile-panel input {
    flex: 1;
    border: 0;
    outline: 0;
    border-radius: 999px;
    padding: 12px 16px;
    background: #f3f4f6;
}

.mobile-panel button {
    border: 0;
    border-radius: 999px;
    padding: 0 16px;
    color: #fff;
    background: var(--pink);
}

.mobile-panel nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.mobile-panel nav a {
    padding: 12px;
    border-radius: 14px;
    background: #fff7fb;
    color: #4b5563;
    font-weight: 700;
}

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

.hero-stage {
    position: relative;
    min-height: 620px;
}

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

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


.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.92) 0%, rgba(17, 24, 39, 0.64) 42%, rgba(190, 24, 93, 0.26) 100%),
        linear-gradient(0deg, rgba(17, 24, 39, 0.86), transparent 55%);
}

.hero-content {
    position: relative;
    z-index: 2;
    min-height: 620px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #fff;
    max-width: 1180px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.94), rgba(249, 115, 22, 0.9));
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 10px 28px rgba(236, 72, 153, 0.28);
}

.hero-content h1,
.page-hero h1 {
    margin: 0;
    max-width: 780px;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1;
    letter-spacing: -0.06em;
    font-weight: 950;
}

.hero-content p {
    max-width: 680px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 20px;
    line-height: 1.8;
}

.hero-tags,
.side-meta,
.movie-meta,
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tags {
    margin-top: 26px;
}

.hero-tags span,
.side-meta span,
.tag-cloud span {
    border-radius: 999px;
    padding: 7px 12px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 13px;
    font-weight: 700;
}

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

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

.btn-primary {
    min-height: 48px;
    padding: 0 24px;
    color: #fff;
    background: linear-gradient(135deg, var(--pink), var(--orange));
    box-shadow: 0 18px 36px rgba(236, 72, 153, 0.28);
}

.btn-primary:hover,
.section-more:hover,
.movie-card:hover {
    transform: translateY(-3px);
}

.btn-ghost {
    min-height: 48px;
    padding: 0 22px;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(10px);
}

.hero-thumbs {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    margin-top: -116px;
    padding-bottom: 26px;
}

.hero-thumb {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    color: #fff;
    background: rgba(17, 24, 39, 0.56);
    backdrop-filter: blur(16px);
    transition: 0.24s ease;
}

.hero-thumb.is-active,
.hero-thumb:hover {
    background: rgba(236, 72, 153, 0.86);
    transform: translateY(-4px);
}

.hero-thumb img {
    width: 62px;
    height: 46px;
    object-fit: cover;
    border-radius: 12px;
    background: linear-gradient(135deg, #fce7f3, #ffedd5);
}

.hero-thumb span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 800;
}

.quick-cats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 34px;
}

.quick-cats a,
.category-card {
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}

.quick-cats a {
    padding: 22px;
    text-align: center;
    color: var(--pink-dark);
    font-weight: 900;
    transition: 0.22s ease;
}

.quick-cats a:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--pink), var(--orange));
    transform: translateY(-4px);
}

.page-main {
    padding: 38px 0 70px;
}

.content-section {
    margin-top: 54px;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.section-head h2 {
    margin: 0 0 8px;
    font-size: 30px;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.section-head p,
.page-hero p,
.category-feature p,
.site-footer p,
.movie-card-body p,
.detail-content p {
    color: var(--muted);
    line-height: 1.8;
}

.section-more {
    padding: 12px 18px;
    color: var(--pink-dark);
    background: #fdf2f8;
}

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

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

.movie-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: 0.28s ease;
}

.movie-card:hover {
    box-shadow: var(--shadow-strong);
}

.poster-wrap {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, #fce7f3, #ffedd5);
}

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

.movie-card:hover .poster-wrap img {
    transform: scale(1.08);
    filter: saturate(1.1) brightness(0.92);
}

.type-badge,
.duration-badge,
.rank-badge {
    position: absolute;
    z-index: 2;
    padding: 6px 10px;
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.type-badge {
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, var(--pink), var(--orange));
}

.duration-badge {
    right: 10px;
    bottom: 10px;
    background: rgba(17, 24, 39, 0.82);
}

.rank-badge {
    top: 10px;
    right: 10px;
    min-width: 34px;
    text-align: center;
    background: linear-gradient(135deg, var(--yellow), var(--orange));
}

.hover-play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 38px;
    background: rgba(17, 24, 39, 0.26);
    opacity: 0;
    transition: opacity 0.22s ease;
}

.movie-card:hover .hover-play {
    opacity: 1;
}

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

.movie-card-body h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 900;
}

.movie-card-body h3 a:hover {
    color: var(--pink);
}

.movie-card-body p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 3.2em;
    overflow: hidden;
    margin: 10px 0 12px;
    font-size: 14px;
}

.movie-meta {
    color: #9ca3af;
    font-size: 12px;
    font-weight: 700;
}

.movie-meta span:not(:last-child)::after {
    content: "·";
    margin-left: 8px;
    color: #f9a8d4;
}

.rank-feature {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 24px;
    margin-top: 60px;
}

.rank-card-large,
.page-hero,
.category-feature,
.filter-panel,
.detail-content article {
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.rank-card-large {
    padding: 36px;
    min-height: 100%;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(190, 24, 93, 0.92), rgba(249, 115, 22, 0.9)),
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.26), transparent 16rem);
}

.rank-card-large h2 {
    margin: 0 0 14px;
    font-size: 36px;
}

.rank-card-large p {
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.9;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 42px 58px minmax(0, 1fr) auto 48px;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--line);
    box-shadow: 0 8px 20px rgba(190, 24, 93, 0.06);
    transition: 0.22s ease;
}

.rank-row:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow);
}

.rank-number {
    color: var(--pink);
    font-weight: 950;
    font-size: 20px;
    text-align: center;
}

.rank-row img {
    width: 58px;
    height: 42px;
    object-fit: cover;
    border-radius: 12px;
    background: linear-gradient(135deg, #fce7f3, #ffedd5);
}

.rank-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 900;
}

.rank-info {
    color: #9ca3af;
    font-size: 13px;
}

.rank-row strong {
    color: var(--orange);
}

.page-hero {
    padding: 46px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(253, 242, 248, 0.88)),
        radial-gradient(circle at 80% 10%, rgba(236, 72, 153, 0.16), transparent 20rem);
}

.small-hero h1 {
    color: #111827;
    font-size: clamp(36px, 6vw, 58px);
}

.small-hero p {
    max-width: 780px;
    margin: 18px 0 0;
    font-size: 18px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 34px;
}

.category-card {
    position: relative;
    min-height: 250px;
    overflow: hidden;
    padding: 22px;
    color: #fff;
    transition: 0.25s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(17, 24, 39, 0.86), rgba(17, 24, 39, 0.24));
}

.category-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, #fce7f3, #ffedd5);
}

.category-card span,
.category-card p {
    position: relative;
    z-index: 2;
}

.category-card span {
    display: block;
    margin-top: 110px;
    font-size: 26px;
    font-weight: 950;
}

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

.category-feature {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    padding: 24px;
    margin-top: 34px;
}

.category-feature img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 24px;
    background: linear-gradient(135deg, #fce7f3, #ffedd5);
}

.category-feature h2 {
    margin: 0;
    font-size: 34px;
}

.filter-panel {
    padding: 18px;
    margin-bottom: 24px;
}

.filter-search {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: #f3f4f6;
    overflow: hidden;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
}

.filter-row strong {
    min-width: 44px;
    color: #374151;
}

.filter-row button {
    border: 0;
    border-radius: 999px;
    padding: 7px 12px;
    color: #4b5563;
    background: #fdf2f8;
    transition: 0.2s ease;
}

.filter-row button.is-active,
.filter-row button:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--pink), var(--orange));
}

.big-search {
    display: flex;
    width: min(720px, 100%);
    margin-top: 28px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.detail-top {
    margin-top: -38px;
    padding: 28px 0 40px;
    color: #fff;
    background: radial-gradient(circle at 20% 10%, rgba(236, 72, 153, 0.48), transparent 30rem), #111827;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0 20px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
}

.breadcrumb a:hover {
    color: #fff;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 24px;
    align-items: stretch;
}

.player-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #020617;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
    aspect-ratio: 16 / 9;
}

.player-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #020617;
}

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    color: #fff;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.36), rgba(2, 6, 23, 0.68));
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-overlay span {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--pink), var(--orange));
    box-shadow: 0 20px 46px rgba(236, 72, 153, 0.38);
    font-size: 30px;
}

.player-overlay strong {
    font-size: 20px;
}

.detail-side {
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
}

.detail-side img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    background: linear-gradient(135deg, #fce7f3, #ffedd5);
}

.side-meta {
    padding: 16px;
}

.detail-content {
    margin-top: 34px;
}

.detail-content article {
    padding: 36px;
}

.detail-content h1 {
    margin: 0;
    font-size: clamp(34px, 5vw, 54px);
    letter-spacing: -0.05em;
}

.detail-content .lead {
    color: #374151;
    font-size: 19px;
    margin: 16px 0 20px;
}

.detail-content h2 {
    margin: 30px 0 10px;
    font-size: 26px;
}

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

.detail-content .tag-cloud span {
    color: var(--pink-dark);
    background: #fdf2f8;
    border-color: rgba(236, 72, 153, 0.16);
}

.site-footer {
    margin-top: 70px;
    color: #fce7f3;
    background: linear-gradient(135deg, #831843, #9a3412);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 36px;
    padding: 44px 0;
}

.footer-logo {
    color: #fff;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

.site-footer h3 {
    margin: 0 0 12px;
    color: #fff;
}

.footer-links {
    display: grid;
    gap: 8px;
}

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

.footer-bottom {
    padding: 16px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.72);
}

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

.empty-results {
    grid-column: 1 / -1;
    padding: 34px;
    border-radius: 24px;
    color: var(--muted);
    text-align: center;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--line);
}

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

    .mobile-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .hero-thumbs,
    .quick-cats,
    .movie-grid,
    .latest-grid,
    .compact-grid,
    .categories-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rank-feature,
    .detail-layout,
    .category-feature,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .detail-side {
        display: grid;
        grid-template-columns: 180px minmax(0, 1fr);
        align-items: center;
    }

    .detail-side img {
        height: 180px;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 22px, 1180px);
    }

    .header-inner {
        height: 62px;
    }

    .logo {
        font-size: 22px;
    }

    .logo-mark {
        width: 32px;
        height: 32px;
    }

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

    .hero-content h1 {
        font-size: 42px;
    }

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

    .hero-thumbs {
        display: flex;
        overflow-x: auto;
        padding-bottom: 18px;
        margin-top: -96px;
    }

    .hero-thumb {
        min-width: 220px;
    }

    .quick-cats,
    .movie-grid,
    .latest-grid,
    .compact-grid,
    .categories-grid {
        grid-template-columns: 1fr;
    }

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

    .rank-row {
        grid-template-columns: 36px 54px minmax(0, 1fr) 42px;
    }

    .rank-info {
        display: none;
    }

    .page-hero,
    .detail-content article,
    .rank-card-large {
        padding: 26px;
        border-radius: 24px;
    }

    .category-feature {
        padding: 16px;
    }

    .detail-layout {
        gap: 16px;
    }

    .detail-side {
        grid-template-columns: 1fr;
    }

    .detail-side img {
        height: 260px;
    }

    .big-search,
    .filter-search {
        border-radius: 22px;
        flex-direction: column;
        background: transparent;
        box-shadow: none;
    }

    .big-search input,
    .filter-search input {
        border-radius: 999px;
        background: #fff;
    }

    .big-search button,
    .filter-search button {
        width: 100%;
        margin: 0;
        min-height: 44px;
    }
}
