:root {
    --color-bg: #020617;
    --color-bg-soft: #0f172a;
    --color-bg-card: #1e293b;
    --color-blue-deep: #172554;
    --color-blue: #1d4ed8;
    --color-amber: #f59e0b;
    --color-amber-light: #fbbf24;
    --color-text: #f8fafc;
    --color-muted: #94a3b8;
    --color-border: rgba(148, 163, 184, 0.18);
    --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.28);
    --shadow-card: 0 12px 32px rgba(2, 6, 23, 0.38);
    --radius-xl: 28px;
    --radius-lg: 18px;
    --radius-md: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--color-amber) var(--color-bg);
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--color-text);
    background:
        radial-gradient(circle at 20% 10%, rgba(29, 78, 216, 0.35), transparent 35%),
        radial-gradient(circle at 82% 18%, rgba(245, 158, 11, 0.16), transparent 30%),
        linear-gradient(180deg, #020617 0%, #0f1d44 48%, #020617 100%);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.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, rgba(15, 23, 42, 0.96), rgba(30, 64, 175, 0.92), rgba(15, 23, 42, 0.96));
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
}

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

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

.brand-mark {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-amber-light), var(--color-amber));
    box-shadow: 0 0 28px rgba(245, 158, 11, 0.45);
    font-size: 14px;
}

.brand-text {
    font-size: 24px;
    line-height: 1;
    background: linear-gradient(90deg, #fde68a, var(--color-amber));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 15px;
    color: #e2e8f0;
}

.nav-link {
    position: relative;
    transition: color 0.25s ease;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--color-amber-light);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    border-radius: 999px;
    background: var(--color-amber);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 9px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.56);
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
    display: none;
    padding: 0 16px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(15, 23, 42, 0.98);
}

.mobile-nav a {
    display: block;
    padding: 12px 0;
    color: #e2e8f0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.mobile-nav a:hover {
    color: var(--color-amber-light);
}

.hero {
    position: relative;
    height: 70vh;
    min-height: 520px;
    overflow: hidden;
    background: #020617;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

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

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform 7s ease;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(15, 23, 42, 0.56), rgba(2, 6, 23, 0.34)),
        linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.22) 52%, rgba(2, 6, 23, 0.2) 100%);
}

.hero-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 64px 0 72px;
}

.hero-copy {
    max-width: 780px;
}

.hero-kicker,
.section-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--color-amber-light);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero h1,
.hero h2 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(40px, 7vw, 74px);
    line-height: 1.05;
    letter-spacing: -0.04em;
    text-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
}

.hero p {
    max-width: 680px;
    margin: 0 0 26px;
    color: #e2e8f0;
    font-size: clamp(17px, 2vw, 22px);
    text-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
}

.hero-meta,
.meta-row,
.movie-meta,
.detail-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-meta {
    margin-bottom: 30px;
}

.hero-meta span,
.detail-tags span,
.filter-chip,
.meta-pill {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: #f8fafc;
    background: rgba(15, 23, 42, 0.66);
    backdrop-filter: blur(8px);
    font-size: 13px;
}

.hero-meta .year {
    border-color: rgba(245, 158, 11, 0.55);
    background: var(--color-amber);
    color: #ffffff;
    font-weight: 800;
}

.hero-actions,
.inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn-primary,
.btn-secondary,
.section-more,
.search-button,
.pager-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(90deg, var(--color-amber), #d97706);
    box-shadow: 0 14px 32px rgba(245, 158, 11, 0.28);
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.btn-primary:hover,
.section-more:hover,
.search-button:hover,
.pager-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 18px 40px rgba(245, 158, 11, 0.36);
}

.btn-secondary {
    background: rgba(15, 23, 42, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: none;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    background: rgba(30, 41, 59, 0.86);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.52);
    transition: background 0.25s ease, transform 0.25s ease;
}

.hero-arrow:hover {
    background: rgba(0, 0, 0, 0.72);
    transform: translateY(-50%) scale(1.05);
}

.hero-arrow.prev {
    left: 24px;
    transform: translateY(-50%);
}

.hero-arrow.next {
    right: 24px;
    transform: translateY(-50%);
}

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

.hero-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.48);
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
    width: 34px;
    background: var(--color-amber);
}

main {
    position: relative;
    z-index: 1;
}

.main-space {
    padding: 56px 0;
}

.content-section {
    margin-bottom: 72px;
}

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

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

.section-heading p {
    max-width: 780px;
    margin: 10px 0 0;
    color: var(--color-muted);
}

.section-more {
    min-height: 40px;
    padding: 0 18px;
    font-size: 14px;
}

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

.movie-card {
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: rgba(30, 41, 59, 0.88);
    box-shadow: var(--shadow-card);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 158, 11, 0.46);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.36);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: #0f172a;
}

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

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.22), transparent 72%);
    opacity: 0.78;
    transition: opacity 0.25s ease;
}

.movie-card:hover .poster-shade {
    opacity: 0.92;
}

.poster-play {
    position: absolute;
    left: 50%;
    top: 50%;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    color: #ffffff;
    background: var(--color-amber);
    box-shadow: 0 14px 32px rgba(245, 158, 11, 0.32);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.86);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.year-badge,
.rank-badge {
    position: absolute;
    right: 10px;
    top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    min-height: 28px;
    padding: 4px 9px;
    border-radius: 9px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.66);
    font-size: 12px;
    font-weight: 800;
}

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

.movie-card h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.35;
    min-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.25s ease;
}

.movie-card:hover h3 {
    color: var(--color-amber-light);
}

.movie-line {
    margin: 0 0 12px;
    color: #cbd5e1;
    font-size: 13px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-meta {
    justify-content: space-between;
    color: var(--color-muted);
    font-size: 12px;
}

.movie-meta span:last-child {
    max-width: 58%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-panel,
.category-card,
.info-panel,
.detail-panel,
.rank-list,
.player-panel {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    background: rgba(15, 23, 42, 0.78);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(16px);
}

.search-panel {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 18px;
    margin-top: -36px;
    margin-bottom: 52px;
}

.search-field,
.filter-select {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(2, 6, 23, 0.62);
    outline: none;
}

.search-field {
    padding: 0 20px;
}

.search-field:focus,
.filter-select:focus {
    border-color: rgba(245, 158, 11, 0.6);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

.search-field::placeholder {
    color: #64748b;
}

.filter-select {
    padding: 0 16px;
}

.filter-bar {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, minmax(130px, 0.45fr));
    gap: 12px;
    margin-bottom: 28px;
}

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

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 190px;
    padding: 24px;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.category-card::before {
    content: "";
    position: absolute;
    right: -42px;
    top: -42px;
    width: 120px;
    height: 120px;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.18);
    filter: blur(6px);
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 158, 11, 0.48);
}

.category-card h2,
.category-card h3 {
    position: relative;
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 22px;
}

.category-card p {
    position: relative;
    margin: 0 0 18px;
    color: #cbd5e1;
    font-size: 14px;
}

.category-count {
    position: relative;
    color: var(--color-amber-light);
    font-weight: 800;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 56px 82px 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(30, 41, 59, 0.72);
    transition: background 0.25s ease, transform 0.25s ease;
}

.rank-item:hover {
    transform: translateX(5px);
    background: rgba(51, 65, 85, 0.82);
}

.rank-num {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-amber), #b45309);
    font-weight: 900;
}

.rank-cover {
    width: 82px;
    height: 116px;
    border-radius: 12px;
    object-fit: cover;
}

.rank-item h2,
.rank-item h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 18px;
}

.rank-item p {
    margin: 0;
    color: #cbd5e1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 26px;
    color: var(--color-muted);
    font-size: 14px;
}

.breadcrumb a {
    color: #e2e8f0;
}

.breadcrumb a:hover {
    color: var(--color-amber-light);
}

.detail-hero {
    display: grid;
    grid-template-columns: minmax(240px, 320px) 1fr;
    gap: 32px;
    align-items: start;
    margin-bottom: 36px;
}

.detail-cover {
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    background: rgba(15, 23, 42, 0.76);
    box-shadow: var(--shadow-soft);
}

.detail-cover img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
}

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

.detail-info .lead {
    margin: 0 0 22px;
    color: #dbeafe;
    font-size: 20px;
}

.detail-tags {
    margin-bottom: 24px;
}

.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.player-panel {
    overflow: hidden;
    margin-bottom: 36px;
}

.player-frame {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.player-frame video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000000;
}

.play-layer {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    padding: 24px;
    border: 0;
    color: #ffffff;
    background:
        linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.18)),
        var(--poster-image);
    background-size: cover;
    background-position: center;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.play-layer.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.play-ring {
    display: grid;
    place-items: center;
    width: 92px;
    height: 92px;
    border-radius: 999px;
    background: var(--color-amber);
    box-shadow: 0 20px 58px rgba(245, 158, 11, 0.45);
    font-size: 34px;
    transition: transform 0.25s ease;
}

.play-layer:hover .play-ring {
    transform: scale(1.06);
}

.player-caption {
    padding: 18px 22px;
}

.player-caption h2 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 22px;
}

.player-caption p {
    margin: 0;
    color: #cbd5e1;
}

.detail-panels {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    margin-bottom: 56px;
}

.detail-panel {
    padding: 28px;
}

.detail-panel h2 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: 26px;
}

.detail-panel p {
    margin: 0 0 16px;
    color: #dbeafe;
}

.detail-panel p:last-child {
    margin-bottom: 0;
}

.info-list {
    display: grid;
    gap: 12px;
    margin: 0;
}

.info-list div {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.info-list dt {
    color: var(--color-muted);
}

.info-list dd {
    margin: 0;
    color: #ffffff;
}

.empty-state {
    display: none;
    padding: 32px;
    color: #cbd5e1;
    text-align: center;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: rgba(15, 23, 42, 0.66);
}

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

.pager {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 34px;
}

.pager-btn {
    min-height: 42px;
    padding: 0 18px;
    font-size: 14px;
}

.site-footer {
    margin-top: 48px;
    color: #e2e8f0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.98), rgba(30, 64, 175, 0.92), rgba(15, 23, 42, 0.98));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 28px;
    padding: 46px 0;
}

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

.site-footer p {
    margin: 0;
    color: #cbd5e1;
    font-size: 14px;
}

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

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

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

.site-footer a:hover {
    color: var(--color-amber-light);
}

.footer-bottom {
    padding: 18px 0;
    color: #94a3b8;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

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

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

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

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

    .menu-toggle {
        display: block;
    }

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

    .hero {
        height: 68vh;
        min-height: 520px;
    }

    .hero-content {
        padding: 44px 0 64px;
    }

    .hero-arrow {
        display: none;
    }

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

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

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

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

    .detail-hero,
    .detail-panels {
        grid-template-columns: 1fr;
    }

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

    .rank-item {
        grid-template-columns: 44px 70px 1fr;
    }

    .rank-item .btn-secondary {
        grid-column: 3;
        justify-self: start;
    }

    .rank-cover {
        width: 70px;
        height: 100px;
    }

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

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

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

    .hero {
        min-height: 560px;
    }

    .hero h1,
    .hero h2 {
        font-size: 38px;
    }

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

    .hero-content {
        padding-bottom: 76px;
    }

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

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

    .movie-card h3 {
        font-size: 14px;
    }

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

    .rank-item {
        grid-template-columns: 38px 1fr;
    }

    .rank-cover {
        display: none;
    }

    .rank-item .btn-secondary {
        grid-column: 2;
    }

    .detail-cover {
        max-width: none;
    }

    .detail-panel,
    .search-panel {
        padding: 18px;
    }

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