:root {
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-700: #b45309;
    --amber-800: #92400e;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --yellow-500: #eab308;
    --ink: #23180b;
    --muted: #72532b;
    --card: #ffffff;
    --line: rgba(146, 64, 14, 0.18);
    --shadow: 0 24px 55px rgba(146, 64, 14, 0.16);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--ink);
    background: linear-gradient(135deg, var(--amber-50), #fff7ed 45%, #fefce8);
    min-height: 100vh;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(255, 251, 235, 0.96), rgba(254, 243, 199, 0.95), rgba(255, 237, 213, 0.96));
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 30px rgba(146, 64, 14, 0.13);
}

.header-inner {
    width: min(1180px, calc(100% - 32px));
    min-height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
    box-shadow: 0 12px 24px rgba(234, 88, 12, 0.28);
}

.brand-copy {
    display: grid;
    gap: 2px;
}

.brand-copy strong {
    color: var(--amber-800);
    font-size: 20px;
    line-height: 1;
}

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

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link,
.mobile-link {
    padding: 10px 14px;
    color: var(--amber-700);
    font-weight: 700;
    border-radius: 999px;
    transition: 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
    color: #fff;
    background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
}

.header-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.75);
    border-radius: 999px;
}

.header-search input,
.mobile-search input,
.large-search input,
.filter-bar input,
.filter-bar select {
    border: 0;
    outline: none;
    color: var(--ink);
    background: transparent;
}

.header-search input {
    width: 230px;
    padding: 10px 12px;
}

.header-search button,
.mobile-search button,
.large-search button,
.primary-btn,
.ghost-btn,
.section-link,
.text-link {
    border: 0;
    cursor: pointer;
    font-weight: 800;
    border-radius: 999px;
    transition: 0.2s ease;
}

.header-search button,
.mobile-search button,
.large-search button,
.primary-btn {
    color: #fff;
    background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
    box-shadow: 0 14px 26px rgba(234, 88, 12, 0.24);
}

.header-search button {
    padding: 10px 16px;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: rgba(217, 119, 6, 0.12);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--amber-800);
    border-radius: 5px;
}

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

.mobile-search {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
    padding: 6px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
}

.mobile-search input {
    flex: 1;
    padding: 10px;
}

.mobile-search button {
    padding: 10px 16px;
}

.hero-slider {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    margin: 28px auto 0;
    min-height: 590px;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #2d1608;
}

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

.hero-slide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.7s ease;
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    filter: saturate(1.1) contrast(1.04);
}

.hero-overlay {
    background:
        radial-gradient(circle at 75% 18%, rgba(245, 158, 11, 0.35), transparent 34%),
        linear-gradient(90deg, rgba(35, 24, 11, 0.92), rgba(35, 24, 11, 0.64) 48%, rgba(35, 24, 11, 0.18));
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(650px, 88%);
    padding: 84px 64px;
    color: #fff;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--amber-500);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-content h1,
.page-hero h1,
.detail-copy h1 {
    margin: 0;
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.hero-content h1 {
    font-size: clamp(38px, 6vw, 70px);
    max-width: 850px;
}

.hero-content h2 {
    margin: 18px 0 0;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.12;
}

.hero-text {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
    line-height: 1.8;
}

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

.hero-tags {
    margin: 24px 0 0;
}

.hero-tags a,
.hero-tags span,
.tag-row a,
.tag-row span {
    padding: 7px 12px;
    color: var(--amber-800);
    background: rgba(255, 251, 235, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.hero-actions,
.detail-copy .primary-btn {
    margin-top: 28px;
}

.primary-btn,
.ghost-btn,
.section-link,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
}

.ghost-btn {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(10px);
}

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

.hero-panel {
    position: absolute;
    z-index: 4;
    left: 56px;
    right: 56px;
    bottom: 84px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-arrow {
    width: 44px;
    height: 44px;
    border: 0;
    color: #fff;
    font-size: 32px;
    line-height: 1;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    cursor: pointer;
}

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

.hero-dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: 0.2s ease;
}

.hero-dot.active {
    width: 34px;
    background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
}

.hero-category-strip {
    position: absolute;
    z-index: 5;
    left: 42px;
    right: 42px;
    bottom: 26px;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
}

.hero-category-strip a {
    flex: 0 0 auto;
    padding: 12px 16px;
    color: #fff;
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(12px);
}

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

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

.section-heading h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.section-link,
.text-link {
    color: var(--amber-700);
    background: #fff;
    border: 1px solid var(--line);
}

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

.movie-card {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(146, 64, 14, 0.12);
    border-radius: var(--radius);
    box-shadow: 0 14px 34px rgba(146, 64, 14, 0.1);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 48px rgba(146, 64, 14, 0.18);
}

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

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

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.66));
}

.play-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: #fff;
    padding-left: 3px;
    border-radius: 50%;
    background: rgba(234, 88, 12, 0.84);
    transform: translate(-50%, -50%) scale(0.86);
    opacity: 0;
    transition: 0.24s ease;
}

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

.quality-badge,
.rank-badge {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

.quality-badge {
    right: 12px;
    bottom: 12px;
    padding: 6px 10px;
    background: rgba(0, 0, 0, 0.68);
}

.rank-badge {
    left: 12px;
    top: 12px;
    min-width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
    box-shadow: 0 10px 20px rgba(234, 88, 12, 0.28);
}

.card-body {
    padding: 16px;
}

.movie-title {
    display: block;
    color: var(--ink);
    font-size: 18px;
    line-height: 1.25;
    font-weight: 900;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.movie-title:hover {
    color: var(--orange-600);
}

.card-body p {
    min-height: 48px;
    margin: 10px 0 12px;
    color: var(--muted);
    line-height: 1.7;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: #8a642f;
    font-size: 13px;
    font-weight: 700;
}

.tag-row {
    margin-top: 12px;
}

.card-body .tag-row a {
    color: var(--amber-700);
    background: var(--amber-50);
    border-color: rgba(217, 119, 6, 0.18);
}

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

.movie-card.compact .card-body p,
.rank-grid .tag-row {
    display: none;
}

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

.category-tile,
.category-cover {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    min-height: 190px;
    background: #2d1608;
    box-shadow: 0 18px 38px rgba(146, 64, 14, 0.12);
}

.category-tile img,
.category-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.72;
    transition: transform 0.35s ease;
}

.category-tile:hover img,
.category-cover:hover img {
    transform: scale(1.07);
}

.category-tile span,
.category-cover span,
.category-tile::after {
    position: absolute;
    inset: 0;
}

.category-tile span,
.category-cover span {
    background: linear-gradient(180deg, rgba(35, 24, 11, 0.12), rgba(35, 24, 11, 0.8));
}

.category-tile strong,
.category-tile em,
.category-cover span {
    position: absolute;
    left: 18px;
    right: 18px;
    color: #fff;
    z-index: 2;
}

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

.category-tile em {
    bottom: 20px;
    font-style: normal;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    line-height: 1.5;
}

.page-hero {
    width: min(1180px, calc(100% - 32px));
    margin: 28px auto 0;
    padding: 72px;
    color: #fff;
    border-radius: 34px;
    background:
        radial-gradient(circle at 82% 18%, rgba(253, 186, 116, 0.55), transparent 32%),
        linear-gradient(135deg, var(--amber-800), var(--orange-600));
    box-shadow: var(--shadow);
}

.page-hero.slim {
    min-height: 260px;
    display: flex;
    align-items: center;
}

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

.page-hero p:not(.eyebrow) {
    max-width: 720px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
    line-height: 1.8;
}

.large-search {
    display: flex;
    max-width: 700px;
    margin-top: 28px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 999px;
}

.large-search input {
    flex: 1;
    padding: 14px 18px;
}

.large-search button {
    padding: 0 24px;
}

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

.category-card {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 22px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 16px 34px rgba(146, 64, 14, 0.1);
}

.category-cover {
    min-height: 230px;
}

.category-cover span {
    display: grid;
    place-items: end start;
    padding: 18px;
    font-size: 22px;
    font-weight: 900;
}

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

.category-card p {
    color: var(--muted);
    line-height: 1.8;
}

.filter-bar {
    display: flex;
    gap: 12px;
    margin-bottom: 22px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 14px 32px rgba(146, 64, 14, 0.08);
}

.filter-bar input,
.filter-bar select {
    min-height: 46px;
    padding: 0 14px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(146, 64, 14, 0.15);
}

.filter-bar input {
    flex: 1;
}

.empty-state {
    display: none;
    padding: 34px;
    text-align: center;
    color: var(--muted);
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--line);
}

.empty-state.show {
    display: block;
}

.detail-hero {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    background: #241407;
}

.detail-bg,
.detail-overlay {
    position: absolute;
    inset: 0;
}

.detail-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px) saturate(1.15);
    transform: scale(1.08);
    opacity: 0.42;
}

.detail-overlay {
    background:
        radial-gradient(circle at 80% 16%, rgba(245, 158, 11, 0.28), transparent 34%),
        linear-gradient(90deg, rgba(35, 24, 11, 0.96), rgba(35, 24, 11, 0.66));
}

.detail-inner {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 34px 0 70px;
    color: #fff;
}

.breadcrumb {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
    margin-bottom: 34px;
}

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

.detail-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 44px;
    align-items: center;
}

.detail-poster {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 34px 70px rgba(0, 0, 0, 0.42);
}

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

.detail-copy h1 {
    max-width: 820px;
    font-size: clamp(42px, 6vw, 78px);
}

.lead {
    max-width: 760px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 19px;
    line-height: 1.85;
}

.detail-meta {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    padding: 0;
    margin: 26px 0;
    list-style: none;
}

.detail-meta li {
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
}

.detail-meta strong,
.detail-meta span {
    display: block;
}

.detail-meta strong {
    color: var(--amber-200);
    font-size: 12px;
    letter-spacing: 0.12em;
    margin-bottom: 5px;
}

.detail-tags a {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.12);
}

.player-section {
    margin-top: -70px;
    position: relative;
    z-index: 4;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #060403;
    box-shadow: 0 32px 70px rgba(35, 24, 11, 0.28);
    aspect-ratio: 16 / 9;
}

.movie-video {
    width: 100%;
    height: 100%;
    display: block;
    background: #050505;
}

.play-cover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 12px;
    color: #fff;
    border: 0;
    cursor: pointer;
    background:
        radial-gradient(circle at center, rgba(234, 88, 12, 0.18), transparent 34%),
        rgba(0, 0, 0, 0.36);
}

.play-cover span {
    width: 84px;
    height: 84px;
    display: grid;
    place-items: center;
    padding-left: 5px;
    color: #fff;
    font-size: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
    box-shadow: 0 20px 40px rgba(234, 88, 12, 0.34);
}

.play-cover strong {
    font-size: 18px;
    letter-spacing: 0.18em;
}

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

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

.story-card {
    padding: 28px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 18px 40px rgba(146, 64, 14, 0.1);
}

.story-card h2 {
    margin: 0 0 14px;
    font-size: 28px;
}

.story-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.95;
    font-size: 16px;
}

.site-footer {
    margin-top: 70px;
    color: #fff7ed;
    background: linear-gradient(135deg, #78350f, #7c2d12, #713f12);
}

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

.footer-brand p {
    max-width: 520px;
    color: rgba(255, 247, 237, 0.78);
    line-height: 1.8;
}

.footer-logo .brand-copy strong,
.footer-logo .brand-copy small {
    color: #fff7ed;
}

.footer-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-content: start;
}

.footer-links a {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

.copyright {
    grid-column: 1 / -1;
    margin: 0;
    color: rgba(255, 247, 237, 0.62);
}

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

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

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

    .category-list,
    .article-section {
        grid-template-columns: 1fr;
    }

    .detail-layout {
        grid-template-columns: 260px 1fr;
    }

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

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

    .menu-toggle {
        display: block;
    }

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

    .mobile-link {
        display: block;
        margin: 6px 0;
    }

    .hero-slider {
        min-height: 620px;
        border-radius: 26px;
    }

    .hero-content {
        width: 100%;
        padding: 54px 26px;
    }

    .hero-panel {
        left: 24px;
        right: 24px;
        bottom: 116px;
    }

    .hero-category-strip {
        left: 22px;
        right: 22px;
    }

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

    .section,
    .page-hero,
    .detail-inner,
    .header-inner,
    .mobile-nav,
    .footer-inner {
        width: min(100% - 24px, 1180px);
    }

    .page-hero {
        padding: 42px 24px;
        border-radius: 26px;
    }

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

    .filter-bar {
        flex-direction: column;
    }

    .detail-layout {
        grid-template-columns: 1fr;
        gap: 26px;
    }

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

    .player-section {
        margin-top: -34px;
    }

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

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 520px) {
    .brand-copy strong {
        font-size: 17px;
    }

    .brand-copy small {
        display: none;
    }

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

    .hero-content h2 {
        font-size: 25px;
    }

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

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

    .large-search {
        border-radius: 24px;
        flex-direction: column;
    }

    .large-search button {
        min-height: 46px;
    }
}
