:root {
    color-scheme: dark;
    --bg: #020617;
    --bg-soft: #0f172a;
    --panel: rgba(15, 23, 42, 0.72);
    --panel-strong: rgba(30, 41, 59, 0.88);
    --text: #f8fafc;
    --muted: #94a3b8;
    --muted-strong: #cbd5e1;
    --amber: #f59e0b;
    --amber-soft: #fcd34d;
    --red: #dc2626;
    --red-dark: #7f1d1d;
    --line: rgba(248, 113, 113, 0.24);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
    --radius: 20px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 20% 0%, rgba(127, 29, 29, 0.35), transparent 32rem),
        radial-gradient(circle at 84% 8%, rgba(245, 158, 11, 0.16), transparent 26rem),
        linear-gradient(180deg, #020617 0%, #0f172a 46%, #020617 100%);
    color: var(--text);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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(15, 23, 42, 0.96), rgba(127, 29, 29, 0.94), rgba(15, 23, 42, 0.96));
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
}

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

.brand,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--amber), var(--red));
    color: white;
    box-shadow: 0 12px 24px rgba(245, 158, 11, 0.28);
    transition: transform 0.3s ease;
}

.brand:hover .brand-mark {
    transform: rotate(10deg) scale(1.05);
}

.brand-name {
    font-size: clamp(1.15rem, 2vw, 1.6rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    background: linear-gradient(90deg, #fde68a, #fecaca, #fde68a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.nav-link {
    color: #e2e8f0;
    font-weight: 600;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--amber-soft);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.72);
    color: var(--text);
    cursor: pointer;
}

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

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

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

.mobile-link {
    display: block;
    padding: 12px 0;
    color: #e2e8f0;
    font-weight: 600;
}

.mobile-link.active,
.mobile-link:hover {
    color: var(--amber-soft);
}

.mobile-category-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 10px;
}

.mobile-category-links a {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.75);
    color: #cbd5e1;
    font-size: 0.9rem;
}

main {
    min-height: 60vh;
}

.hero-slider {
    position: relative;
    height: min(72vh, 760px);
    min-height: 520px;
    overflow: hidden;
    background: #020617;
}

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

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

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

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

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

.hero-cover {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.54), rgba(2, 6, 23, 0.12)),
        linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.2) 54%, rgba(2, 6, 23, 0.15) 100%);
}

.hero-content {
    position: absolute;
    left: max(32px, calc((100vw - 1180px) / 2));
    bottom: 76px;
    width: min(680px, calc(100% - 64px));
}

.hero-label,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--amber-soft);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-content h1,
.page-hero h1,
.detail-info h1 {
    margin: 16px 0;
    font-size: clamp(2.6rem, 7vw, 5.8rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
    text-shadow: 0 18px 45px rgba(0, 0, 0, 0.52);
}

.hero-content p {
    max-width: 640px;
    margin: 0 0 24px;
    color: #e5e7eb;
    font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero-tags,
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-tags span,
.tag-list span,
.tag-list a {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 12px;
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.7);
    color: #fde68a;
    font-size: 0.85rem;
}

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

.primary-btn,
.ghost-btn,
.section-more,
.text-link,
.search-box button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.primary-btn,
.search-box button {
    background: linear-gradient(90deg, var(--amber), var(--red));
    color: white;
    box-shadow: 0 18px 38px rgba(220, 38, 38, 0.28);
}

.primary-btn:hover,
.search-box button:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 22px 50px rgba(245, 158, 11, 0.32);
}

.ghost-btn,
.section-more,
.text-link {
    margin-left: 10px;
    border: 1px solid rgba(245, 158, 11, 0.28);
    background: rgba(15, 23, 42, 0.65);
    color: #fde68a;
}

.ghost-btn:hover,
.section-more:hover,
.text-link:hover {
    background: rgba(245, 158, 11, 0.16);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: rgba(2, 6, 23, 0.62);
    color: white;
    font-size: 2.4rem;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background 0.2s ease, transform 0.2s ease;
}

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

.hero-prev {
    left: 22px;
}

.hero-next {
    right: 22px;
}

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

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

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

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

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

.section-heading p {
    margin: 8px 0 0;
    color: var(--muted);
}

.movie-grid {
    display: grid;
    gap: 22px;
}

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

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

.movie-card,
.movie-row,
.overview-card {
    background: var(--panel);
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.16);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.movie-card:hover,
.movie-row:hover,
.overview-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 158, 11, 0.35);
    background: var(--panel-strong);
    box-shadow: 0 22px 55px rgba(127, 29, 29, 0.28);
}

.poster-wrap {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #0f172a;
}

.movie-card-large .poster-wrap {
    aspect-ratio: 16 / 8.8;
}

.poster-wrap img,
.row-poster img,
.category-tile img,
.overview-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.movie-card:hover .poster-wrap img,
.movie-row:hover .row-poster img,
.category-tile:hover img,
.overview-card:hover img {
    transform: scale(1.06);
}

.poster-shade,
.category-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.75), transparent 62%);
}

.duration,
.rank-badge {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: white;
    font-size: 0.76rem;
    font-weight: 800;
}

.duration {
    right: 10px;
    bottom: 10px;
    padding: 4px 9px;
    background: rgba(0, 0, 0, 0.72);
}

.rank-badge {
    left: 10px;
    top: 10px;
    min-width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--amber), var(--red));
    box-shadow: 0 12px 24px rgba(220, 38, 38, 0.28);
}

.poster-title {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    font-size: clamp(1.25rem, 2vw, 1.8rem);
    font-weight: 900;
    color: white;
}

.card-body {
    padding: 16px;
}

.card-body h3 {
    margin: 0 0 8px;
    color: #f8fafc;
    font-size: 1rem;
    line-height: 1.35;
}

.card-body h3 a:hover,
.row-title:hover,
.overview-body h2 a:hover {
    color: var(--amber-soft);
}

.card-body p,
.row-content p,
.overview-body p,
.detail-lead {
    margin: 0;
    color: var(--muted);
}

.meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
    color: #64748b;
    font-size: 0.85rem;
}

.meta-line span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

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

.movie-row {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 14px;
}

.row-poster {
    position: relative;
    min-height: 100px;
    overflow: hidden;
    background: #0f172a;
}

.row-content {
    min-width: 0;
    padding: 12px 14px 12px 0;
}

.row-title {
    display: block;
    margin-bottom: 6px;
    color: #f8fafc;
    font-weight: 800;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
    gap: 32px;
    align-items: start;
}

.ranking-panel {
    position: sticky;
    top: 92px;
    padding: 22px;
    border: 1px solid rgba(245, 158, 11, 0.18);
    border-radius: var(--radius);
    background: rgba(15, 23, 42, 0.64);
    box-shadow: var(--shadow);
}

.compact .movie-row {
    grid-template-columns: 118px 1fr;
}

.compact .row-poster {
    min-height: 76px;
}

.compact .row-content p {
    display: none;
}

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

.category-tile {
    position: relative;
    min-height: 190px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 20px;
    background: #0f172a;
}

.category-tile img,
.category-shade {
    position: absolute;
    inset: 0;
}

.category-tile strong,
.category-tile em {
    position: relative;
    z-index: 2;
}

.category-tile strong {
    font-size: 1.3rem;
    color: white;
}

.category-tile em {
    margin-top: 6px;
    color: #cbd5e1;
    font-size: 0.9rem;
    font-style: normal;
}

.page-hero,
.detail-hero {
    position: relative;
    min-height: 380px;
    overflow: hidden;
    background: #020617;
}

.small-hero {
    min-height: 320px;
    display: grid;
    place-items: center;
    text-align: center;
}

.page-hero img,
.detail-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-mask,
.detail-mask {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.58), rgba(2, 6, 23, 0.76)),
        linear-gradient(0deg, #020617, rgba(2, 6, 23, 0.12));
}

.page-hero-inner,
.detail-hero-inner {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 76px 0;
}

.page-hero h1 {
    max-width: 880px;
    margin-bottom: 14px;
}

.page-hero p {
    max-width: 720px;
    margin: 0;
    color: #d1d5db;
    font-size: 1.1rem;
}

.small-hero .page-hero-inner p {
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
    color: #cbd5e1;
    font-size: 0.92rem;
}

.breadcrumb a {
    color: #fde68a;
}

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

.overview-card {
    display: grid;
    grid-template-rows: 150px 1fr;
}

.overview-cover {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    overflow: hidden;
    background: #0f172a;
}

.overview-body {
    padding: 20px;
}

.overview-body h2 {
    margin: 0 0 8px;
    font-size: 1.2rem;
}

.listing-tools {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(160px, 220px) minmax(160px, 220px);
    gap: 16px;
    margin-bottom: 26px;
    padding: 18px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.65);
}

.listing-tools label {
    display: grid;
    gap: 8px;
    color: #cbd5e1;
    font-weight: 700;
}

.listing-tools input,
.listing-tools select,
.search-box input {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 14px;
    background: rgba(2, 6, 23, 0.72);
    color: white;
    padding: 0 14px;
    outline: none;
}

.listing-tools input:focus,
.listing-tools select:focus,
.search-box input:focus {
    border-color: rgba(245, 158, 11, 0.72);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.16);
}

.detail-hero {
    min-height: 600px;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(220px, 320px) 1fr;
    gap: 36px;
    align-items: end;
}

.detail-cover {
    overflow: hidden;
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 24px;
    background: #0f172a;
    box-shadow: var(--shadow);
}

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

.detail-info h1 {
    max-width: 840px;
    margin-bottom: 18px;
}

.detail-lead {
    max-width: 780px;
    color: #e5e7eb;
    font-size: 1.18rem;
}

.detail-tags {
    margin: 22px 0;
}

.detail-meta {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    max-width: 900px;
    margin: 0;
}

.detail-meta div {
    padding: 13px 14px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.62);
}

.detail-meta dt {
    margin: 0 0 5px;
    color: #94a3b8;
    font-size: 0.82rem;
}

.detail-meta dd {
    margin: 0;
    color: #f8fafc;
    font-weight: 800;
}

.detail-meta a {
    color: #fde68a;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 24px;
    background: black;
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 9;
}

.movie-video,
.player-cover,
.player-cover img,
.player-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.movie-video {
    z-index: 1;
    background: black;
    object-fit: contain;
}

.player-cover {
    z-index: 3;
    cursor: pointer;
}

.player-cover.hidden {
    display: none;
}

.player-cover img {
    object-fit: cover;
}

.player-overlay {
    background:
        radial-gradient(circle at center, rgba(245, 158, 11, 0.2), transparent 18rem),
        linear-gradient(0deg, rgba(2, 6, 23, 0.72), rgba(2, 6, 23, 0.32));
}

.player-play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 4;
    width: clamp(70px, 9vw, 98px);
    height: clamp(70px, 9vw, 98px);
    border: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--amber), var(--red));
    color: white;
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    cursor: pointer;
    transform: translate(-50%, -50%);
    box-shadow: 0 28px 60px rgba(220, 38, 38, 0.38);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.player-play:hover {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 32px 70px rgba(245, 158, 11, 0.42);
}

.detail-text {
    color: #d1d5db;
}

.detail-text h2 {
    margin: 0 0 14px;
    color: #f8fafc;
    font-size: 1.7rem;
}

.detail-text p {
    margin: 0 0 30px;
    padding: 24px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.58);
    font-size: 1.05rem;
}

.search-section {
    padding-bottom: 54px;
}

.search-box {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    margin-bottom: 16px;
    padding: 18px;
    border: 1px solid rgba(245, 158, 11, 0.16);
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.64);
}

.search-hints {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.search-hints button {
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.72);
    color: #cbd5e1;
    padding: 7px 14px;
    cursor: pointer;
}

.search-hints button:hover {
    border-color: rgba(245, 158, 11, 0.45);
    color: #fde68a;
}

.site-footer {
    margin-top: 70px;
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.72), #020617);
}

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

.footer-brand p {
    max-width: 360px;
    color: var(--muted);
}

.footer-links h2 {
    margin: 0 0 14px;
    color: #fde68a;
    font-size: 1rem;
}

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

.footer-grid-links a {
    color: #94a3b8;
}

.footer-grid-links a:hover {
    color: #fde68a;
}

.footer-bottom {
    padding: 18px 16px 26px;
    color: #64748b;
    text-align: center;
}

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

    .split-section,
    .footer-inner,
    .overview-grid {
        grid-template-columns: 1fr;
    }

    .ranking-panel {
        position: static;
    }

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

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

    .menu-toggle {
        display: block;
    }

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

    .hero-content {
        left: 24px;
        right: 24px;
        bottom: 74px;
        width: auto;
    }

    .hero-arrow {
        display: none;
    }

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

    .listing-tools {
        grid-template-columns: 1fr;
    }

    .detail-layout {
        grid-template-columns: 1fr;
        align-items: start;
    }

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

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

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

    .hero-content h1,
    .page-hero h1,
    .detail-info h1 {
        font-size: clamp(2.1rem, 15vw, 3.6rem);
    }

    .hero-actions {
        display: grid;
        gap: 12px;
    }

    .ghost-btn,
    .section-more,
    .text-link {
        margin-left: 0;
    }

    .section-heading {
        display: block;
    }

    .section-more {
        margin-top: 14px;
    }

    .four-cols,
    .feature-grid,
    .category-grid,
    .overview-grid,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .movie-row,
    .compact .movie-row {
        grid-template-columns: 126px 1fr;
    }

    .row-poster {
        min-height: 92px;
    }

    .row-content p {
        display: none;
    }

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

    .search-box {
        grid-template-columns: 1fr;
    }
}
