:root {
    --teal: #0d9488;
    --teal-dark: #0f766e;
    --blue: #2563eb;
    --indigo: #4338ca;
    --orange: #f97316;
    --gold: #f59e0b;
    --text: #111827;
    --muted: #64748b;
    --line: #e5e7eb;
    --bg: #f8fafc;
    --card: #ffffff;
    --shadow: 0 22px 55px rgba(15, 23, 42, 0.12);
}

* {
    box-sizing: border-box;
}

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: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
}

.nav-wrap {
    max-width: 1280px;
    height: 68px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.04em;
    background: linear-gradient(90deg, var(--teal), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--teal), var(--blue));
    color: #fff;
    font-size: 14px;
    box-shadow: 0 10px 24px rgba(13, 148, 136, 0.28);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
    font-weight: 700;
    color: #334155;
}

.main-nav a:hover,
.footer-links a:hover,
.section-head a:hover {
    color: var(--teal);
}

.header-search {
    display: flex;
    align-items: center;
    width: 320px;
    border: 1px solid var(--line);
    border-radius: 999px;
    overflow: hidden;
    background: #fff;
}

.header-search input,
.search-page-form input,
.mobile-panel input,
.filter-bar input,
.filter-bar select {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 11px 16px;
}

.header-search button,
.search-page-form button,
.mobile-panel button {
    border: 0;
    padding: 11px 18px;
    color: #fff;
    background: var(--teal);
    cursor: pointer;
    font-weight: 700;
}

.mobile-toggle {
    display: none;
    margin-left: auto;
    border: 0;
    background: #f1f5f9;
    border-radius: 12px;
    padding: 9px 12px;
    cursor: pointer;
}

.mobile-panel {
    display: none;
    border-top: 1px solid var(--line);
    padding: 18px 24px 24px;
    background: #fff;
}

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

.mobile-panel form {
    display: flex;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 16px;
}

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

.mobile-links a {
    padding: 10px 12px;
    border-radius: 12px;
    background: #f8fafc;
    font-weight: 700;
}

.hero {
    position: relative;
    height: 640px;
    min-height: 78vh;
    overflow: hidden;
    background: linear-gradient(135deg, var(--teal), var(--blue), var(--indigo));
}

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

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

.hero-slide img,
.detail-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-shade,
.detail-hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.88), rgba(15, 23, 42, 0.52), rgba(15, 23, 42, 0.1)), linear-gradient(0deg, rgba(15, 23, 42, 0.82), transparent 42%);
}

.hero-content {
    position: absolute;
    inset: 0;
    max-width: 1280px;
    margin: 0 auto;
    padding: 96px 24px 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.eyebrow {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    padding: 7px 13px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow.dark {
    color: var(--teal-dark);
    background: #ccfbf1;
}

.hero h1,
.page-hero h1,
.detail-hero h1 {
    margin: 22px 0 16px;
    max-width: 840px;
    font-size: clamp(42px, 7vw, 78px);
    line-height: 0.98;
    letter-spacing: -0.07em;
    font-weight: 950;
}

.hero p,
.page-hero p,
.detail-hero p {
    max-width: 760px;
    margin: 0 0 24px;
    color: #dbeafe;
    font-size: clamp(18px, 2.3vw, 24px);
}

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

.hero-tags span,
.movie-tags span {
    border-radius: 999px;
    padding: 7px 11px;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

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

.primary-btn,
.ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 999px;
    padding: 0 24px;
    font-weight: 900;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.primary-btn {
    color: #fff;
    background: linear-gradient(90deg, var(--teal), var(--blue));
    box-shadow: 0 18px 34px rgba(37, 99, 235, 0.26);
}

.primary-btn.light {
    color: var(--teal-dark);
    background: #fff;
}

.ghost-btn {
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.primary-btn:hover,
.ghost-btn:hover,
.category-tile:hover,
.movie-card:hover,
.category-overview-card:hover,
.ranking-card:hover {
    transform: translateY(-4px);
}

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

.hero-dot {
    width: 34px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.38);
    cursor: pointer;
}

.hero-dot.is-active {
    width: 54px;
    background: #fff;
}

.feature-strip {
    position: relative;
    z-index: 10;
    max-width: 1180px;
    margin: -62px auto 30px;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.feature-card {
    padding: 26px;
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow);
    text-align: center;
}

.feature-card strong {
    display: block;
    font-size: 28px;
    line-height: 1.1;
}

.feature-card span {
    color: var(--muted);
}

.section-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 54px 24px;
}

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

.section-head.compact {
    margin-bottom: 18px;
}

.section-head h2 {
    margin: 10px 0 0;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.section-head a {
    color: var(--teal-dark);
    font-weight: 900;
}

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

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

.movie-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-width: 0;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.movie-card-featured {
    grid-column: span 2;
    grid-row: span 2;
}

.movie-cover {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a, #0d9488);
}

.movie-cover img,
.category-tile img,
.category-overview-card img,
.ranking-cover img,
.related-card img,
.list-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.movie-card:hover .movie-cover img,
.category-tile:hover img,
.category-overview-card:hover img,
.ranking-card:hover img,
.related-card:hover img {
    transform: scale(1.08);
}

.movie-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.06));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.movie-card:hover .movie-cover::after {
    opacity: 1;
}

.movie-badge,
.movie-play {
    position: absolute;
    z-index: 2;
}

.movie-badge {
    left: 12px;
    top: 12px;
    border-radius: 999px;
    padding: 6px 10px;
    color: #fff;
    background: rgba(13, 148, 136, 0.92);
    font-size: 12px;
    font-weight: 900;
}

.movie-play {
    left: 50%;
    top: 50%;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--teal-dark);
    background: rgba(255, 255, 255, 0.94);
    transform: translate(-50%, -50%) scale(0.72);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.movie-info {
    padding: 18px;
}

.movie-info h3,
.list-info h3,
.ranking-card h2 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.25;
}

.movie-info h3 a:hover,
.list-info h3 a:hover,
.ranking-card h2 a:hover {
    color: var(--teal-dark);
}

.movie-info p,
.list-info p,
.ranking-card p {
    margin: 0 0 14px;
    color: var(--muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-tags span {
    color: var(--teal-dark);
    background: #ccfbf1;
}

.movie-tags.large span {
    font-size: 14px;
    padding: 8px 13px;
}

.movie-meta {
    margin-top: 14px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.movie-meta a {
    color: var(--teal-dark);
}

.soft-panel {
    max-width: 1232px;
    margin-top: 16px;
    border-radius: 34px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

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

.category-tile,
.category-overview-card {
    position: relative;
    overflow: hidden;
    min-height: 170px;
    border-radius: 24px;
    color: #fff;
    background: #0f172a;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.14);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile::after,
.category-overview-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(15, 23, 42, 0.86), rgba(15, 23, 42, 0.1));
}

.category-tile span,
.category-tile small {
    position: absolute;
    z-index: 2;
    left: 18px;
}

.category-tile span {
    bottom: 44px;
    font-size: 24px;
    font-weight: 950;
}

.category-tile small {
    bottom: 20px;
    color: #dbeafe;
    font-weight: 700;
}

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 26px;
}

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

.ranking-panel,
.side-card,
.detail-article,
.filter-bar,
.search-result-head {
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.ranking-panel {
    padding: 24px;
    align-self: start;
    position: sticky;
    top: 90px;
}

.rank-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.rank-list a {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 16px;
    background: #f8fafc;
}

.rank-list span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--teal), var(--blue));
    font-weight: 950;
}

.rank-list strong,
.rank-list em {
    display: block;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rank-list em {
    color: var(--muted);
    font-size: 13px;
    font-style: normal;
}

.cta-panel,
.page-hero {
    max-width: 1280px;
    margin: 54px auto;
    padding: 70px 48px;
    border-radius: 36px;
    color: #fff;
    background: radial-gradient(circle at top left, rgba(45, 212, 191, 0.35), transparent 42%), linear-gradient(135deg, var(--teal), var(--blue), var(--indigo));
    box-shadow: var(--shadow);
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cta-panel h2,
.page-hero h1 {
    margin: 18px 0 12px;
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1;
    letter-spacing: -0.06em;
}

.cta-panel p {
    max-width: 700px;
    color: #dbeafe;
    font-size: 20px;
}

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

.category-overview-card {
    min-height: 290px;
}

.category-overview-card div {
    position: absolute;
    z-index: 2;
    inset: auto 24px 24px;
}

.category-overview-card h2 {
    margin: 14px 0 8px;
    font-size: 32px;
    line-height: 1;
}

.category-overview-card p {
    margin: 0;
    color: #dbeafe;
}

.filter-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 14px;
    padding: 14px;
    margin-bottom: 24px;
}

.filter-bar input,
.filter-bar select {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #f8fafc;
}

.empty-state {
    display: none;
    margin: 28px 0 0;
    color: var(--muted);
    text-align: center;
    font-weight: 800;
}

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

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

.ranking-card {
    display: grid;
    grid-template-columns: 64px 170px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 18px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease;
}

.ranking-num {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--orange), var(--gold));
    font-size: 22px;
    font-weight: 950;
}

.ranking-cover {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 18px;
    background: #0f172a;
}

.search-page-form {
    display: flex;
    max-width: 760px;
    margin-top: 26px;
    border: 2px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
}

.search-page-form input {
    color: #fff;
}

.search-page-form input::placeholder {
    color: #dbeafe;
}

.search-result-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
    padding: 18px 22px;
}

.search-result-head h2 {
    margin: 0;
}

.detail-hero {
    position: relative;
    height: 520px;
    overflow: hidden;
    background: #0f172a;
}

.detail-hero-content {
    position: absolute;
    inset: 0;
    max-width: 1280px;
    margin: 0 auto;
    padding: 92px 24px 54px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: #dbeafe;
    font-weight: 800;
}

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

.breadcrumb em {
    font-style: normal;
    color: #fff;
}

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

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

.player-shell video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
    cursor: pointer;
}

.player-big-button {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 4;
    width: 84px;
    height: 84px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--teal-dark);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    transform: translate(-50%, -50%);
    cursor: pointer;
    font-size: 30px;
}

.player-big-button.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.player-controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto auto auto;
    gap: 12px;
    align-items: center;
    padding: 18px;
    color: #fff;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent);
}

.player-controls button {
    border: 0;
    border-radius: 999px;
    padding: 9px 13px;
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    cursor: pointer;
}

.player-controls input {
    accent-color: var(--teal);
}

.detail-article {
    margin-top: 26px;
    padding: 30px;
}

.detail-article h2,
.side-card h2 {
    margin: 0 0 14px;
    font-size: 26px;
    line-height: 1.2;
}

.detail-article p {
    margin: 0 0 24px;
    color: #334155;
    font-size: 17px;
}

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

.info-table div {
    padding: 14px;
    border-radius: 16px;
    background: #f8fafc;
}

.info-table strong,
.info-table span {
    display: block;
}

.info-table strong {
    color: var(--muted);
    font-size: 13px;
}

.info-table span {
    margin-top: 4px;
    font-weight: 900;
}

.detail-side {
    display: grid;
    gap: 20px;
    align-self: start;
    position: sticky;
    top: 90px;
}

.side-card {
    padding: 22px;
}

.related-grid {
    display: grid;
    gap: 12px;
}

.related-card {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 16px;
    background: #f8fafc;
    font-weight: 900;
}

.related-card img {
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    background: #0f172a;
}

.related-card span {
    min-width: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.side-link {
    display: block;
    margin-top: 10px;
    padding: 13px 14px;
    border-radius: 14px;
    background: #f8fafc;
    color: var(--teal-dark);
    font-weight: 900;
}

.site-footer {
    margin-top: 70px;
    color: #cbd5e1;
    background: #0f172a;
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 54px 24px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 30px;
}

.footer-grid p {
    max-width: 520px;
    color: #94a3b8;
}

.footer-grid h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 18px;
}

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

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    padding: 18px 24px;
    text-align: center;
    color: #94a3b8;
}

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

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

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

    .two-column,
    .detail-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .ranking-panel,
    .detail-side {
        position: static;
    }

    .ranking-layout,
    .category-overview-grid {
        grid-template-columns: 1fr;
    }
}

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

    .mobile-toggle {
        display: inline-flex;
    }

    .nav-wrap {
        padding: 0 16px;
    }

    .hero {
        height: 600px;
    }

    .hero-content {
        padding: 86px 18px 96px;
    }

    .feature-strip,
    .movie-grid,
    .featured-grid,
    .mini-grid,
    .category-grid,
    .filter-bar,
    .info-table {
        grid-template-columns: 1fr;
    }

    .movie-card-featured {
        grid-column: auto;
        grid-row: auto;
    }

    .section-wrap {
        padding: 42px 18px;
    }

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

    .page-hero,
    .cta-panel {
        margin: 28px 18px;
        padding: 44px 24px;
        border-radius: 28px;
    }

    .ranking-card {
        grid-template-columns: 48px 110px minmax(0, 1fr);
        gap: 12px;
    }

    .ranking-num {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }

    .player-controls {
        grid-template-columns: auto minmax(0, 1fr) auto;
    }

    .player-controls button[data-player-mute],
    .player-controls button[data-player-fullscreen] {
        display: none;
    }

    .detail-hero {
        height: 460px;
    }
}

@media (max-width: 560px) {
    .brand {
        font-size: 24px;
    }

    .hero h1,
    .detail-hero h1,
    .page-hero h1 {
        font-size: 40px;
    }

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

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

    .feature-strip {
        margin-top: -36px;
    }

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

    .search-page-form {
        border-radius: 18px;
        flex-direction: column;
    }
}
