*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --orange: #f97316;
    --red: #ef4444;
    --pink: #ec4899;
    --amber: #facc15;
    --text: #1f2937;
    --muted: #6b7280;
    --light: #fff7ed;
    --line: #e5e7eb;
    --dark: #111827;
    --panel: #ffffff;
    --shadow: 0 18px 45px rgba(17, 24, 39, 0.14);
    --soft-shadow: 0 10px 28px rgba(17, 24, 39, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    color: var(--text);
    background: #fffaf5;
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    color: #ffffff;
    background: linear-gradient(90deg, var(--orange), var(--red), var(--pink));
    box-shadow: 0 10px 32px rgba(239, 68, 68, 0.35);
}

.nav-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.22);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.brand-mark span {
    width: 0;
    height: 0;
    margin-left: 3px;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 13px solid #ffffff;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-copy strong {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.brand-copy small {
    margin-top: 4px;
    font-size: 12px;
    opacity: 0.9;
}

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

.nav-link {
    padding: 9px 0;
    font-weight: 700;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: #fef08a;
}

.nav-dropdown {
    position: relative;
}

.dropdown-panel {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    width: 210px;
    padding: 8px;
    color: var(--text);
    background: #ffffff;
    border-radius: 16px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
}

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

.dropdown-panel a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 14px;
}

.dropdown-panel a:hover {
    color: #c2410c;
    background: #ffedd5;
}

.header-search,
.mobile-search {
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(8px);
}

.header-search input,
.mobile-search input {
    width: 230px;
    min-width: 0;
    padding: 10px 14px;
    color: #ffffff;
    background: transparent;
    border: 0;
    outline: 0;
}

.header-search input::placeholder,
.mobile-search input::placeholder {
    color: rgba(255, 255, 255, 0.74);
}

.header-search button,
.mobile-search button {
    border: 0;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    padding: 10px 14px;
    cursor: pointer;
}

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

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: #ffffff;
    border-radius: 999px;
}

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

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

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

.mobile-menu nav a {
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
}

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

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

.hero-track,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    filter: saturate(1.08);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 76% 28%, rgba(249, 115, 22, 0.42), transparent 26%),
        linear-gradient(90deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.66) 42%, rgba(15, 23, 42, 0.18)),
        linear-gradient(0deg, rgba(17, 24, 39, 0.92), transparent 55%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding-top: 120px;
    color: #ffffff;
}

.hero-kicker,
.page-hero span,
.section-heading span,
.detail-kicker {
    display: inline-flex;
    align-items: center;
    color: #fed7aa;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-content h1 {
    max-width: 780px;
    margin: 18px 0 18px;
    font-size: clamp(44px, 7vw, 78px);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.hero-content p {
    max-width: 640px;
    margin: 0 0 22px;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.86);
}

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

.hero-tags span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: #9a3412;
    background: #ffedd5;
}

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

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

.primary-button {
    color: #ffffff;
    background: linear-gradient(90deg, var(--orange), var(--red));
    box-shadow: 0 16px 34px rgba(239, 68, 68, 0.34);
}

.ghost-button {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(8px);
}

.ghost-button.dark {
    color: #c2410c;
    background: #ffedd5;
    box-shadow: none;
}

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

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

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

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

.hero-arrow {
    position: absolute;
    z-index: 4;
    top: 50%;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
}

.hero-prev {
    left: 28px;
}

.hero-next {
    right: 28px;
}

.search-band {
    width: min(1120px, calc(100% - 32px));
    margin: -56px auto 0;
    position: relative;
    z-index: 8;
    display: grid;
    grid-template-columns: 1fr minmax(320px, 520px);
    gap: 28px;
    align-items: center;
    padding: 26px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.search-band h2,
.search-band p {
    margin: 0;
}

.search-band h2 {
    font-size: 28px;
}

.search-band p {
    margin-top: 6px;
    color: var(--muted);
}

.search-band form,
.large-search {
    display: flex;
    overflow: hidden;
    border-radius: 999px;
    background: #fff7ed;
    box-shadow: inset 0 0 0 1px #fed7aa;
}

.search-band input,
.large-search input {
    flex: 1;
    min-width: 0;
    padding: 15px 18px;
    border: 0;
    outline: 0;
    background: transparent;
}

.search-band button,
.large-search button {
    padding: 0 22px;
    border: 0;
    color: #ffffff;
    font-weight: 800;
    background: linear-gradient(90deg, var(--orange), var(--red));
    cursor: pointer;
}

.section-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 72px auto;
}

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

.section-heading h2 {
    margin: 4px 0 0;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.12;
}

.section-heading a {
    color: #c2410c;
    font-weight: 800;
}

.light-heading,
.light-heading a {
    color: #ffffff;
}

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

.movie-card {
    overflow: hidden;
    border-radius: 22px;
    background: var(--panel);
    box-shadow: var(--soft-shadow);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, #fed7aa, #fecdd3);
}

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

.movie-card:hover .poster-link img {
    transform: scale(1.06);
}

.poster-shine {
    position: absolute;
    inset: auto 0 0;
    height: 45%;
    background: linear-gradient(0deg, rgba(17, 24, 39, 0.58), transparent);
}

.rank-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    min-width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    box-shadow: 0 8px 18px rgba(236, 72, 153, 0.28);
}

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

.movie-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 8px;
    color: #ea580c;
    font-size: 12px;
    font-weight: 800;
}

.movie-card h2 {
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
}

.movie-card h2 a:hover {
    color: #ea580c;
}

.movie-card p {
    min-height: 48px;
    margin: 8px 0 12px;
    color: var(--muted);
    font-size: 14px;
}

.compact-card .movie-card-body {
    padding: 14px;
}

.compact-card h2 {
    font-size: 16px;
}

.compact-card p {
    min-height: 42px;
    font-size: 13px;
}

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

.category-tile {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 18px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-thumb-wall {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.category-thumb-wall img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 12px;
}

.category-tile strong {
    font-size: 22px;
}

.category-tile small {
    color: var(--muted);
}

.dark-feature {
    width: 100%;
    max-width: none;
    padding: 72px max(16px, calc((100% - 1180px) / 2));
    border-radius: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(249, 115, 22, 0.28), transparent 30%),
        linear-gradient(135deg, #111827, #1f2937 55%, #450a0a);
}

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

.page-main {
    min-height: 60vh;
}

.page-hero {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    margin: 34px auto 0;
    overflow: hidden;
    padding: 56px;
    color: #ffffff;
    border-radius: 32px;
    background:
        radial-gradient(circle at 86% 20%, rgba(250, 204, 21, 0.35), transparent 20%),
        linear-gradient(135deg, var(--orange), var(--red), var(--pink));
    box-shadow: var(--shadow);
}

.page-hero h1 {
    max-width: 760px;
    margin: 8px 0 10px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.06;
    letter-spacing: -0.05em;
}

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

.breadcrumb {
    width: min(1180px, calc(100% - 32px));
    margin: 26px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    color: var(--muted);
    font-size: 14px;
}

.breadcrumb a {
    color: #ea580c;
    font-weight: 800;
}

.filter-panel {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 14px;
    margin-bottom: 24px;
    padding: 18px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
}

.filter-input label {
    display: block;
    margin-bottom: 6px;
    color: #9a3412;
    font-size: 13px;
    font-weight: 900;
}

.filter-input input,
.filter-input select {
    width: 100%;
    min-height: 44px;
    padding: 0 14px;
    color: var(--text);
    border: 1px solid #fed7aa;
    border-radius: 14px;
    background: #fff7ed;
    outline: 0;
}

.empty-state {
    padding: 24px;
    border-radius: 18px;
    color: #9a3412;
    background: #ffedd5;
    text-align: center;
    font-weight: 800;
}

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

.category-overview-card {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 24px;
    padding: 22px;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
}

.category-cover-stack {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    align-self: start;
}

.category-cover-stack img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 18px;
}

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

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

.category-overview-card ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.category-overview-card li a {
    display: inline-flex;
    padding: 7px 10px;
    border-radius: 999px;
    color: #c2410c;
    background: #ffedd5;
    font-size: 13px;
    font-weight: 800;
}

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

.search-page .large-search {
    margin-top: 24px;
    max-width: 680px;
    background: rgba(255, 255, 255, 0.22);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.32);
}

.search-page .large-search input {
    color: #ffffff;
}

.search-page .large-search input::placeholder {
    color: rgba(255, 255, 255, 0.72);
}

.search-result-head {
    margin-bottom: 22px;
}

.search-result-head h2 {
    margin: 0 0 6px;
    font-size: 32px;
}

.search-result-head p {
    margin: 0;
    color: var(--muted);
}

.detail-hero {
    width: min(1180px, calc(100% - 32px));
    margin: 26px auto 0;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 36px;
    align-items: center;
    padding: 34px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 90% 10%, rgba(249, 115, 22, 0.18), transparent 28%),
        #ffffff;
    box-shadow: var(--shadow);
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 26px;
    box-shadow: 0 18px 36px rgba(17, 24, 39, 0.18);
}

.detail-copy h1 {
    margin: 10px 0 12px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.detail-copy p {
    margin: 0;
    max-width: 760px;
    color: var(--muted);
    font-size: 18px;
}

.large-tags {
    margin-top: 18px;
}

.player-shell {
    margin-top: 42px;
}

.video-player {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #020617;
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 9;
}

.video-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;
    gap: 14px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border: 0;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.28), rgba(15, 23, 42, 0.58));
    cursor: pointer;
}

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

.play-ring {
    width: 86px;
    height: 86px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--orange), var(--red));
    box-shadow: 0 18px 40px rgba(239, 68, 68, 0.35);
}

.play-triangle {
    width: 0;
    height: 0;
    margin-left: 5px;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 24px solid #ffffff;
}

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

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
}

.detail-content article,
.detail-content aside,
.review-box {
    padding: 28px;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
}

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

.detail-content p {
    margin: 0 0 14px;
    color: #374151;
}

.detail-content dl {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 10px 14px;
    margin: 0;
}

.detail-content dt {
    color: #9a3412;
    font-weight: 900;
}

.detail-content dd {
    margin: 0;
    color: var(--muted);
}

.review-box {
    margin-top: 28px;
}

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

.mini-card {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
}

.mini-card img {
    width: 64px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 12px;
}

.mini-card strong,
.mini-card small {
    display: block;
}

.mini-card small {
    color: var(--muted);
}

.site-footer {
    color: #d1d5db;
    background: linear-gradient(180deg, #1f2937, #111827);
}

.footer-grid {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 28px;
    padding: 54px 0 34px;
}

.footer-brand {
    color: #ffffff;
    margin-bottom: 14px;
}

.site-footer p {
    margin: 0;
    color: #d1d5db;
}

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

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

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

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

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ca3af;
    font-size: 14px;
}

@media (max-width: 1100px) {
    .movie-grid,
    .category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .header-search {
        display: none;
    }
}

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

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

    .brand-copy strong {
        font-size: 20px;
    }

    .hero {
        min-height: 560px;
    }

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

    .hero-arrow {
        display: none;
    }

    .search-band {
        grid-template-columns: 1fr;
        margin-top: -34px;
    }

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

    .filter-panel {
        grid-template-columns: 1fr;
    }

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

    .detail-poster {
        max-width: 320px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .nav-shell {
        min-height: 64px;
    }

    .brand-copy small {
        display: none;
    }

    .hero {
        min-height: 540px;
    }

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

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

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

    .section-shell {
        margin: 48px auto;
    }

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

    .movie-grid,
    .category-grid,
    .ranking-list,
    .related-grid,
    .full-ranking {
        grid-template-columns: 1fr;
    }

    .page-hero,
    .detail-hero {
        padding: 28px;
        border-radius: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}
