* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: #1f2937;
    background: #f9fafb;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

img {
    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: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(14px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

.brand-icon {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #f97316, #f59e0b);
    box-shadow: 0 12px 24px rgba(249, 115, 22, 0.32);
}

.brand-text {
    font-size: 24px;
    line-height: 1;
    color: transparent;
    background: linear-gradient(135deg, #ea580c, #d97706);
    -webkit-background-clip: text;
    background-clip: text;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: #374151;
    font-weight: 650;
}

.main-nav a,
.mobile-nav a,
.site-footer a {
    transition: color 0.2s ease;
}

.main-nav a:hover,
.mobile-nav a:hover,
.site-footer a:hover {
    color: #ea580c;
}

.mobile-toggle {
    display: none;
    border: 0;
    color: #374151;
    background: transparent;
    font-size: 28px;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 12px 0 18px;
    border-top: 1px solid #e5e7eb;
}

.mobile-nav a {
    display: block;
    padding: 10px 0;
    color: #374151;
    font-weight: 650;
}

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

.hero-section {
    position: relative;
    min-height: 590px;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(135deg, #ea580c 0%, #f59e0b 52%, #facc15 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.24), transparent 28%),
        radial-gradient(circle at 80% 8%, rgba(255, 255, 255, 0.18), transparent 30%),
        rgba(0, 0, 0, 0.28);
}

.hero-wrap {
    position: relative;
    min-height: 590px;
    display: flex;
    align-items: center;
}

.hero-carousel {
    position: relative;
    width: 100%;
    min-height: 430px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: 42px;
    align-items: center;
    opacity: 0;
    transform: translateY(18px);
    pointer-events: none;
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.hero-kicker {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 18px;
    padding: 8px 16px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    font-size: 14px;
    font-weight: 800;
}

.hero-copy h1,
.hero-copy h2,
.page-hero h1 {
    margin: 0;
    line-height: 1.08;
}

.hero-copy h1 {
    max-width: 820px;
    font-size: clamp(38px, 6vw, 68px);
    letter-spacing: -0.04em;
}

.hero-copy h2 {
    margin-top: 16px;
    font-size: clamp(26px, 4vw, 44px);
}

.hero-copy p,
.page-hero p {
    max-width: 740px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 20px;
}

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

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

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

.btn-light {
    color: #ea580c;
    background: #ffffff;
    box-shadow: 0 18px 30px rgba(255, 255, 255, 0.24);
}

.btn-ghost {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.13);
}

.btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, #f97316, #d97706);
    box-shadow: 0 16px 28px rgba(249, 115, 22, 0.24);
}

.hero-poster {
    position: relative;
    display: block;
    min-height: 410px;
    overflow: hidden;
    border: 12px solid rgba(255, 255, 255, 0.18);
    border-radius: 32px;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.38);
}

.hero-poster img {
    width: 100%;
    height: 410px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-poster:hover img {
    transform: scale(1.06);
}

.hero-poster span {
    position: absolute;
    inset: auto auto 22px 22px;
    display: grid;
    width: 66px;
    height: 66px;
    place-items: center;
    border-radius: 999px;
    color: #ea580c;
    background: rgba(255, 255, 255, 0.92);
    font-size: 26px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.25);
}

.hero-dots {
    position: absolute;
    bottom: 42px;
    left: 16px;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 11px;
    height: 11px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    cursor: pointer;
}

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

.section {
    padding: 72px 0;
}

.white-section {
    background: #ffffff;
}

.cool-section {
    background: linear-gradient(135deg, #eff6ff, #eef2ff);
}

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

.section-head,
.toolbar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.section-head h2,
.toolbar h2 {
    margin: 0;
    color: #1f2937;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.15;
}

.section-head p,
.toolbar p {
    margin: 8px 0 0;
    color: #6b7280;
}

.section-more {
    flex: 0 0 auto;
    color: #2563eb;
    font-weight: 800;
}

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

.category-card,
.category-overview-card {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    padding: 26px;
    border-radius: 28px;
    color: #1f2937;
    background: #ffffff;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover,
.category-overview-card:hover,
.movie-card:hover,
.ranking-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.16);
}

.category-icon {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #14b8a6, #0891b2);
    font-size: 22px;
}

.category-card h2,
.category-overview-card h2 {
    margin: 0 0 10px;
    font-size: 22px;
}

.category-card p,
.category-overview-card p {
    margin: 0;
    color: #4b5563;
}

.category-card em {
    display: block;
    margin-top: 18px;
    color: #ea580c;
    font-style: normal;
    font-weight: 800;
}

.tone-orange,
.tone-bg-orange,
.orange-hero {
    background: linear-gradient(135deg, #f97316, #f59e0b);
}

.tone-rose,
.tone-bg-rose {
    background: linear-gradient(135deg, #fff1f2, #ffe4e6);
}

.tone-blue,
.tone-bg-blue {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
}

.tone-emerald,
.tone-bg-emerald {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
}

.tone-amber,
.tone-bg-amber {
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
}

.tone-cyan,
.tone-bg-cyan,
.teal-hero {
    background: linear-gradient(135deg, #0f766e, #0891b2);
}

.tone-indigo,
.tone-bg-indigo {
    background: linear-gradient(135deg, #eef2ff, #e0e7ff);
}

.tone-teal,
.tone-bg-teal {
    background: linear-gradient(135deg, #f0fdfa, #ccfbf1);
}

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

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

.movie-card {
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.movie-card a {
    display: block;
    height: 100%;
}

.poster {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #111827;
}

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

.movie-card:hover .poster img,
.mini-card:hover img,
.rank-row:hover img {
    transform: scale(1.08);
}

.poster::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(to top, rgba(0, 0, 0, 0.64), transparent 60%);
}

.poster-badge {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 1;
    padding: 5px 12px;
    border-radius: 999px;
    color: #ffffff;
    background: #2563eb;
    font-size: 12px;
    font-weight: 800;
}

.poster-play,
.play-chip {
    position: absolute;
    z-index: 1;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #2563eb;
    background: rgba(255, 255, 255, 0.92);
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.poster-play {
    top: 50%;
    left: 50%;
    width: 58px;
    height: 58px;
    margin: -29px 0 0 -29px;
    font-size: 24px;
}

.movie-card:hover .poster-play,
.movie-card:hover .play-chip {
    opacity: 1;
    transform: scale(1);
}

.card-content {
    padding: 18px;
}

.card-content h2 {
    display: -webkit-box;
    min-height: 48px;
    margin: 0 0 10px;
    overflow: hidden;
    color: #1f2937;
    font-size: 18px;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-content p {
    display: -webkit-box;
    min-height: 44px;
    margin: 0 0 14px;
    overflow: hidden;
    color: #6b7280;
    font-size: 14px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-meta {
    color: #6b7280;
    font-size: 13px;
}

.search-line {
    max-width: 420px;
    margin: -8px 0 26px;
}

.movie-search {
    width: 100%;
    min-height: 46px;
    padding: 0 16px;
    border: 1px solid #d1d5db;
    border-radius: 14px;
    color: #111827;
    background: #ffffff;
    outline: none;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.movie-search:focus {
    border-color: #14b8a6;
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.16);
}

.movie-list {
    display: grid;
    gap: 18px;
}

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

.wide-poster {
    height: 190px;
}

.play-chip {
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    margin: -24px 0 0 -24px;
}

.pill {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.pill-soft {
    color: #047857;
    background: #d1fae5;
}

.pill-hot {
    color: #ffffff;
    background: linear-gradient(135deg, #f97316, #d97706);
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 36px;
    align-items: start;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 42px 86px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 12px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.07);
}

.rank-no {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    background: #e11d48;
    font-weight: 900;
}

.rank-row img {
    width: 86px;
    height: 62px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.35s ease;
}

.rank-info strong {
    display: block;
    overflow: hidden;
    color: #1f2937;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-info em,
.ranking-card em,
.sitemap-block span {
    display: block;
    color: #6b7280;
    font-size: 13px;
    font-style: normal;
}

.spotlight-card {
    padding: 34px;
    border-radius: 30px;
    color: #1f2937;
    background: #ffffff;
    box-shadow: 0 24px 54px rgba(15, 23, 42, 0.12);
}

.spotlight-card h2 {
    margin: 18px 0 12px;
    font-size: 32px;
    line-height: 1.2;
}

.spotlight-card p {
    display: -webkit-box;
    margin: 0 0 26px;
    overflow: hidden;
    color: #4b5563;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
}

.page-hero {
    padding: 76px 0;
    color: #ffffff;
}

.page-hero h1 {
    font-size: clamp(38px, 5vw, 58px);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
}

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

.toolbar {
    align-items: center;
}

.toolbar .movie-search {
    max-width: 360px;
}

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

.category-main-link {
    display: block;
}

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

.category-samples a {
    overflow: hidden;
    padding: 10px 12px;
    border-radius: 14px;
    color: #374151;
    background: rgba(255, 255, 255, 0.68);
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

.ranking-card a {
    display: grid;
    grid-template-columns: 54px 160px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 16px;
}

.ranking-number {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #ef4444, #f97316);
    font-weight: 900;
}

.ranking-card img {
    width: 160px;
    height: 104px;
    border-radius: 16px;
    object-fit: cover;
}

.ranking-card h2 {
    margin: 8px 0;
    font-size: 22px;
}

.ranking-card p {
    margin: 0 0 8px;
    color: #4b5563;
}

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

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

.sitemap-block h2 {
    margin: 0 0 16px;
    color: #1f2937;
}

.sitemap-block ul,
.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sitemap-block li + li {
    border-top: 1px solid #edf2f7;
}

.sitemap-block a {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    color: #374151;
}

.sitemap-block a:hover {
    color: #ea580c;
}

.detail-wrap {
    padding: 36px 0 72px;
    background: #f9fafb;
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(300px, 0.9fr);
    gap: 28px;
    align-items: start;
}

.detail-main .breadcrumb {
    color: #6b7280;
}

.detail-main .breadcrumb a:hover {
    color: #ea580c;
}

.player-shell {
    margin-bottom: 24px;
    overflow: hidden;
    border-radius: 28px;
    background: #000000;
    box-shadow: 0 24px 58px rgba(15, 23, 42, 0.28);
}

.player-frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000000;
}

.movie-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    color: #ffffff;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.48));
    cursor: pointer;
    transition: opacity 0.22s ease;
}

.player-overlay span {
    display: grid;
    width: 84px;
    height: 84px;
    place-items: center;
    border-radius: 999px;
    color: #ea580c;
    background: rgba(255, 255, 255, 0.92);
    font-size: 34px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}

.player-shell.is-playing .player-overlay {
    opacity: 0;
    pointer-events: none;
}

.detail-card,
.side-card {
    padding: 26px;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.tag-row span {
    padding: 5px 12px;
    border-radius: 999px;
    color: #374151;
    background: #f3f4f6;
    font-size: 12px;
    font-weight: 700;
}

.detail-card h1 {
    margin: 0 0 22px;
    color: #111827;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 28px;
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(135deg, #eff6ff, #eef2ff);
}

.info-grid div {
    text-align: center;
}

.info-grid span {
    display: block;
    color: #6b7280;
    font-size: 13px;
}

.info-grid strong {
    display: block;
    margin-top: 4px;
    color: #1f2937;
}

.text-block + .text-block {
    margin-top: 24px;
}

.text-block h2,
.side-card h2 {
    margin: 0 0 12px;
    color: #1f2937;
    font-size: 22px;
}

.text-block p {
    margin: 0;
    color: #374151;
    white-space: pre-line;
}

.text-block:first-of-type p {
    padding: 18px;
    border-radius: 18px;
    background: #f9fafb;
}

.review-block {
    padding: 20px;
    border-left: 4px solid #f97316;
    border-radius: 18px;
    background: linear-gradient(135deg, #fffbeb, #fff7ed);
}

.detail-side {
    position: sticky;
    top: 92px;
    display: grid;
    gap: 22px;
}

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

.mini-card {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 8px;
    border-radius: 16px;
    transition: background 0.2s ease;
}

.mini-card:hover {
    background: #f9fafb;
}

.mini-card img {
    width: 112px;
    height: 78px;
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.mini-card strong {
    display: -webkit-box;
    overflow: hidden;
    color: #1f2937;
    font-size: 14px;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.mini-card em {
    display: block;
    margin-top: 4px;
    color: #6b7280;
    font-size: 12px;
    font-style: normal;
}

.side-cta {
    background: linear-gradient(135deg, #fffbeb, #fff7ed);
}

.side-cta p {
    margin: 0 0 18px;
    color: #4b5563;
}

.site-footer {
    color: #d1d5db;
    background: #111827;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    gap: 34px;
    padding: 54px 0 32px;
}

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

.site-footer p {
    margin: 12px 0 0;
    color: #9ca3af;
}

.site-footer li + li {
    margin-top: 8px;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    padding: 20px;
    border-top: 1px solid #1f2937;
    color: #9ca3af;
}

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

@media (max-width: 1120px) {
    .main-nav {
        gap: 14px;
        font-size: 14px;
    }

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

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

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

    .mobile-toggle {
        display: block;
    }

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

    .hero-section,
    .hero-wrap {
        min-height: 760px;
    }

    .hero-carousel {
        min-height: 640px;
    }

    .hero-poster,
    .hero-poster img {
        min-height: 260px;
        height: 320px;
    }

    .hero-dots {
        bottom: 26px;
    }

    .section-head,
    .toolbar {
        display: block;
    }

    .toolbar .movie-search {
        max-width: none;
        margin-top: 16px;
    }

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

    .movie-card-wide a,
    .ranking-card a {
        grid-template-columns: 1fr;
    }

    .wide-poster,
    .ranking-card img {
        width: 100%;
        height: 220px;
    }

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

    .detail-side {
        position: static;
    }
}

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

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

    .hero-section,
    .hero-wrap {
        min-height: 720px;
    }

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

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .category-grid,
    .movie-grid,
    .category-movie-grid,
    .category-samples {
        grid-template-columns: 1fr;
    }

    .poster {
        height: 260px;
    }

    .rank-row {
        grid-template-columns: 38px 72px minmax(0, 1fr);
    }

    .rank-row img {
        width: 72px;
        height: 56px;
    }

    .detail-card,
    .side-card {
        padding: 20px;
        border-radius: 22px;
    }

    .mini-card {
        grid-template-columns: 92px minmax(0, 1fr);
    }

    .mini-card img {
        width: 92px;
        height: 66px;
    }
}
