:root {
    --orange-50: #fff7ed;
    --orange-100: #ffedd5;
    --orange-200: #fed7aa;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --amber-50: #fffbeb;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --yellow-100: #fef9c3;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
    --soft-shadow: 0 12px 30px rgba(249, 115, 22, 0.12);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--gray-800);
    background: linear-gradient(180deg, var(--gray-50), #fff, rgba(255, 237, 213, 0.42));
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
    -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;
    background: linear-gradient(90deg, rgba(255, 247, 237, 0.96), rgba(255, 251, 235, 0.96), rgba(254, 249, 195, 0.96));
    border-bottom: 1px solid rgba(251, 146, 60, 0.24);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.08);
    backdrop-filter: blur(18px);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    height: 78px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark,
.footer-brand span {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--orange-500), var(--amber-500));
    box-shadow: 0 10px 22px rgba(249, 115, 22, 0.24);
}

.brand-text {
    display: grid;
}

.brand-text strong,
.footer-brand {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, var(--orange-600), var(--amber-500));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-text small {
    color: var(--gray-600);
    font-size: 12px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--gray-700);
    font-weight: 700;
}

.main-nav a,
.mobile-menu a,
.text-link,
.section-more {
    transition: color 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover,
.mobile-menu a:hover,
.text-link:hover,
.section-more:hover {
    color: var(--orange-600);
}

.header-search {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-search input,
.mobile-menu input,
.search-page-form input,
.toolbar input {
    width: 260px;
    border: 2px solid var(--orange-200);
    border-radius: 999px;
    padding: 10px 16px;
    outline: none;
    color: var(--gray-800);
    background: var(--white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.mobile-menu input:focus,
.search-page-form input:focus,
.toolbar input:focus {
    border-color: var(--orange-500);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.header-search button,
.mobile-menu button,
.search-page-form button {
    border: 0;
    border-radius: 999px;
    padding: 10px 18px;
    color: var(--white);
    background: linear-gradient(90deg, var(--orange-500), var(--amber-500));
    box-shadow: var(--soft-shadow);
    cursor: pointer;
}

.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    color: var(--gray-800);
    background: var(--orange-100);
    cursor: pointer;
}

.mobile-menu {
    display: none;
    padding: 16px;
    border-top: 1px solid var(--orange-200);
    background: var(--white);
}

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

.mobile-menu form {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}

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

.mobile-menu nav {
    display: grid;
    gap: 8px;
}

.mobile-menu a {
    padding: 10px 12px;
    border-radius: 14px;
    color: var(--gray-700);
    background: var(--orange-50);
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 36px 0 60px;
    background: linear-gradient(135deg, var(--orange-100), var(--amber-50) 48%, var(--yellow-100));
}

.hero-bg-glow {
    position: absolute;
    inset: 0;
    opacity: 0.42;
    background:
        radial-gradient(circle at 12% 12%, rgba(249, 115, 22, 0.28), transparent 28%),
        radial-gradient(circle at 88% 70%, rgba(245, 158, 11, 0.3), transparent 32%);
    pointer-events: none;
}

.hero-topline {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    color: var(--gray-700);
}

.hero-topline span {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.12);
}

.hero-frame {
    position: relative;
    z-index: 1;
}

.hero-slides {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    min-height: 560px;
    box-shadow: var(--shadow);
    background: var(--gray-900);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: end;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

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

.hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.7s ease;
}

.hero-slide.is-active img {
    transform: scale(1);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(17, 24, 39, 0.84), rgba(17, 24, 39, 0.38) 48%, rgba(17, 24, 39, 0.12)), linear-gradient(0deg, rgba(17, 24, 39, 0.8), transparent 58%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(780px, calc(100% - 48px));
    padding: 58px;
    color: var(--white);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border-radius: 999px;
    background: var(--orange-500);
    font-weight: 800;
    letter-spacing: 0.08em;
}

.hero-content h1 {
    margin: 18px 0 12px;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.hero-content p {
    margin: 0 0 18px;
    max-width: 680px;
    font-size: clamp(17px, 2vw, 22px);
    color: rgba(255, 255, 255, 0.9);
}

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

.pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 5px 10px;
    color: var(--orange-700, #c2410c);
    background: rgba(255, 237, 213, 0.92);
    font-size: 12px;
    font-weight: 700;
}

.hero-tags .pill,
.detail-tags .pill {
    color: var(--white);
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 999px;
    padding: 10px 20px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
    color: var(--white);
    background: linear-gradient(90deg, var(--orange-500), var(--amber-500));
    box-shadow: 0 14px 28px rgba(249, 115, 22, 0.28);
}

.btn-light {
    color: var(--orange-600);
    background: var(--white);
}

.btn-glass {
    color: var(--white);
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(14px);
}

.hero-control {
    position: absolute;
    left: 50%;
    bottom: 22px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 16px;
    transform: translateX(-50%);
}

.hero-control button {
    border: 0;
    cursor: pointer;
}

.hero-control > button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--orange-600);
    background: rgba(255, 255, 255, 0.9);
    font-size: 28px;
    line-height: 1;
}

.hero-dots {
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
}

.hero-dot.is-active {
    width: 34px;
    border-radius: 999px;
    background: var(--white);
}

.content-section {
    padding: 58px 0;
}

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

.section-heading h2 {
    margin: 0;
    color: var(--gray-800);
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.15;
}

.section-heading p {
    margin: 8px 0 0;
    color: var(--gray-600);
}

.section-more,
.text-link {
    color: var(--orange-600);
    font-weight: 800;
}

.movie-grid {
    display: grid;
    gap: 22px;
}

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

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(251, 146, 60, 0.16);
    border-radius: 22px;
    background: var(--white);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(249, 115, 22, 0.18);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, var(--orange-100), var(--amber-50));
}

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

.movie-card:hover .poster-link img,
.compact-card:hover img,
.category-overview-card:hover .category-cover img,
.category-feature:hover img {
    transform: scale(1.06);
}

.play-float {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-600);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

.rank-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    min-width: 34px;
    height: 34px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: linear-gradient(135deg, #ef4444, var(--orange-500));
    font-weight: 900;
}

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

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--gray-500);
    font-size: 12px;
    font-weight: 700;
}

.movie-card h3 {
    margin: 9px 0 8px;
    font-size: 19px;
    line-height: 1.3;
}

.movie-card h3 a:hover {
    color: var(--orange-600);
}

.movie-card p {
    display: -webkit-box;
    min-height: 50px;
    margin: 0 0 14px;
    overflow: hidden;
    color: var(--gray-600);
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-card-list {
    display: grid;
    grid-template-columns: 210px 1fr;
}

.movie-card-list .poster-link {
    aspect-ratio: auto;
    min-height: 100%;
}

.hot-band {
    background: linear-gradient(90deg, rgba(255, 251, 235, 0.92), rgba(255, 247, 237, 0.96));
    border-top: 1px solid rgba(251, 146, 60, 0.16);
    border-bottom: 1px solid rgba(251, 146, 60, 0.16);
}

.category-grid,
.category-overview-grid {
    display: grid;
    gap: 22px;
}

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

.category-card {
    position: relative;
    min-height: 190px;
    overflow: hidden;
    border-radius: 24px;
    color: var(--white);
    box-shadow: var(--soft-shadow);
}

.category-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.category-card span {
    position: absolute;
    inset: auto 18px 18px;
    z-index: 2;
}

.category-card strong,
.category-card em {
    display: block;
}

.category-card strong {
    margin-bottom: 6px;
    font-size: 22px;
}

.category-card em {
    color: rgba(255, 255, 255, 0.84);
    font-style: normal;
    font-size: 13px;
}

.page-hero {
    padding: 54px 0;
    background: linear-gradient(90deg, var(--orange-100), var(--amber-50), var(--yellow-100));
}

.page-hero h1 {
    margin: 10px 0 12px;
    color: var(--gray-800);
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.1;
}

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

.back-link {
    color: var(--orange-600);
    font-weight: 800;
}

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

.category-overview-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 22px;
    padding: 18px;
    border-radius: 26px;
    background: var(--white);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.category-cover {
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 4 / 3;
}

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

.category-overview-card p {
    margin: 0 0 14px;
    color: var(--gray-600);
}

.category-samples {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.category-samples a {
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--orange-600);
    background: var(--orange-50);
    font-size: 13px;
    font-weight: 700;
}

.category-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 34px;
    align-items: center;
}

.category-feature {
    position: relative;
    overflow: hidden;
    min-height: 330px;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.category-feature::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(17, 24, 39, 0.78), transparent 62%);
}

.category-feature span {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 2;
    color: var(--white);
    font-size: 26px;
    font-weight: 900;
}

.compact-actions {
    margin-top: 22px;
}

.toolbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
    padding: 18px;
    border-radius: 22px;
    background: var(--white);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.toolbar label {
    display: grid;
    gap: 8px;
    color: var(--gray-700);
    font-weight: 800;
}

.toolbar input {
    width: min(520px, 72vw);
}

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

.search-page-form {
    display: flex;
    width: min(720px, 100%);
    gap: 10px;
    margin-top: 24px;
}

.search-page-form input {
    flex: 1;
    width: auto;
    padding: 14px 20px;
}

.detail-hero {
    padding: 42px 0;
    color: var(--white);
    background: radial-gradient(circle at 18% 20%, rgba(249, 115, 22, 0.4), transparent 32%), linear-gradient(135deg, #111827, #3b1d0a 68%, #78350f);
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.95fr);
    gap: 32px;
    align-items: center;
}

.video-box {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    aspect-ratio: 16 / 9;
    background: #000;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.video-box video,
.video-cover,
.video-cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.video-box video {
    object-fit: contain;
}

.video-cover {
    z-index: 3;
    border: 0;
    padding: 0;
    cursor: pointer;
    background: #000;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.video-cover img {
    object-fit: cover;
    opacity: 0.78;
}

.video-cover.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.video-play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-600);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
    transform: translate(-50%, -50%);
    font-size: 32px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 700;
}

.breadcrumbs a:hover {
    color: var(--white);
}

.detail-info h1 {
    margin: 18px 0 12px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.06;
}

.lead {
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
}

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

.detail-meta div {
    padding: 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
}

.detail-meta dt {
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
}

.detail-meta dd {
    margin: 4px 0 0;
    color: var(--white);
    font-weight: 800;
}

.detail-content {
    display: grid;
    gap: 22px;
}

.text-card {
    padding: 28px;
    border-radius: 26px;
    background: var(--white);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.07);
}

.text-card h2 {
    margin: 0 0 14px;
    color: var(--gray-800);
    font-size: 26px;
}

.text-card p {
    margin: 0;
    color: var(--gray-700);
    font-size: 17px;
}

.accent-card {
    background: linear-gradient(135deg, var(--orange-50), var(--amber-50));
}

.prev-next {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
}

.prev-next a {
    padding: 12px 16px;
    border-radius: 999px;
    color: var(--orange-600);
    background: var(--white);
    box-shadow: 0 10px 24px rgba(249, 115, 22, 0.1);
    font-weight: 800;
}

.compact-card {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 14px;
    align-items: center;
    padding: 12px;
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
}

.compact-card img {
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 4 / 3;
}

.compact-card strong,
.compact-card em {
    display: block;
}

.compact-card em {
    margin-top: 4px;
    color: var(--gray-500);
    font-style: normal;
    font-size: 13px;
}

.site-footer {
    margin-top: 40px;
    background: linear-gradient(180deg, var(--amber-50), var(--orange-100));
    border-top: 1px solid rgba(251, 146, 60, 0.22);
}

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

.footer-grid p {
    max-width: 520px;
    color: var(--gray-600);
}

.footer-grid h3 {
    margin: 0 0 14px;
    color: var(--gray-800);
}

.footer-grid a:not(.footer-brand),
.footer-cats a {
    display: block;
    margin-bottom: 9px;
    color: var(--gray-600);
}

.footer-grid a:hover,
.footer-cats a:hover {
    color: var(--orange-600);
}

.footer-cats {
    columns: 2;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 20px 0;
    border-top: 1px solid rgba(251, 146, 60, 0.2);
    color: var(--gray-600);
    font-size: 14px;
}

.from-orange { --category-color: #f97316; }
.from-amber { --category-color: #f59e0b; }
.from-rose { --category-color: #fb7185; }
.from-violet { --category-color: #8b5cf6; }
.from-pink { --category-color: #ec4899; }
.from-red { --category-color: #ef4444; }
.from-yellow { --category-color: #eab308; }
.from-cyan { --category-color: #06b6d4; }
.from-green { --category-color: #22c55e; }
.from-blue { --category-color: #3b82f6; }
.from-slate { --category-color: #64748b; }
.from-lime { --category-color: #84cc16; }

.category-overview-card,
.category-page-hero {
    border-top: 5px solid var(--category-color, var(--orange-500));
}

[data-movie-card].is-filtered {
    display: none;
}

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

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

    .three-cols,
    .four-cols,
    .category-grid,
    .ranking-list,
    .two-cols {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .category-overview-grid,
    .category-hero-grid,
    .detail-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

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

    .nav-shell {
        height: 68px;
    }

    .brand-mark {
        width: 40px;
        height: 40px;
    }

    .brand-text strong {
        font-size: 18px;
    }

    .hero-section {
        padding: 22px 0 38px;
    }

    .hero-topline {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-slides {
        min-height: 560px;
        border-radius: 24px;
    }

    .hero-content {
        width: 100%;
        padding: 28px 22px 86px;
    }

    .hero-actions,
    .search-page-form,
    .toolbar,
    .footer-bottom {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .btn,
    .search-page-form button,
    .toolbar input {
        width: 100%;
    }

    .movie-grid,
    .three-cols,
    .four-cols,
    .two-cols,
    .category-grid,
    .ranking-list {
        grid-template-columns: 1fr;
    }

    .movie-card-list,
    .category-overview-card {
        grid-template-columns: 1fr;
    }

    .category-feature {
        min-height: 260px;
    }

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

    .video-play {
        width: 68px;
        height: 68px;
    }

    .footer-cats {
        columns: 1;
    }
}
