:root {
    --bg: #fff7ed;
    --bg-soft: #fffbeb;
    --text: #111827;
    --muted: #6b7280;
    --line: rgba(15, 23, 42, 0.08);
    --amber: #d97706;
    --amber-dark: #b45309;
    --orange: #ea580c;
    --slate: #0f172a;
    --card: #ffffff;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--text);
    background: linear-gradient(135deg, #f8fafc 0%, #fff7ed 46%, #ffedd5 100%);
    min-height: 100vh;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(18px);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
}

.nav-shell {
    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.04em;
}

.brand {
    font-size: 24px;
    background: linear-gradient(90deg, var(--amber), var(--orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
}

.brand-icon {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    box-shadow: 0 10px 24px rgba(217, 119, 6, 0.28);
    font-size: 14px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    color: #374151;
    font-weight: 650;
}

.site-nav a,
.nav-group > a {
    transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active,
.nav-group:hover > a {
    color: var(--amber);
}

.nav-group {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    left: 0;
    top: 28px;
    min-width: 180px;
    padding: 10px;
    display: grid;
    gap: 2px;
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.2s ease;
}

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

.nav-dropdown a {
    padding: 10px 12px;
    border-radius: 10px;
}

.nav-dropdown a:hover {
    background: #fffbeb;
}

.nav-search {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 260px;
}

.nav-search input,
.filter-bar input,
.filter-bar select {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: 11px 16px;
    background: rgba(255, 255, 255, 0.92);
    color: #111827;
    outline: none;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.nav-search input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
    border-color: rgba(217, 119, 6, 0.65);
    box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.12);
}

.nav-search button,
.primary-small,
.primary-btn,
.ghost-btn {
    border: 0;
    cursor: pointer;
    border-radius: 999px;
    white-space: nowrap;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nav-search button,
.primary-small,
.primary-btn {
    color: #fff;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    box-shadow: 0 12px 28px rgba(217, 119, 6, 0.24);
}

.nav-search button {
    padding: 10px 18px;
}

.primary-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 14px 28px;
}

.primary-small {
    display: inline-flex;
    padding: 10px 16px;
}

.primary-btn:hover,
.primary-small:hover,
.nav-search button:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(217, 119, 6, 0.32);
}

.ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
}

.ghost-btn:hover {
    background: rgba(255, 255, 255, 0.22);
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    font-size: 26px;
    color: var(--slate);
}

.hero {
    padding: 32px 0 22px;
}

.hero-carousel {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.25);
    background: #111827;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.55s ease;
}

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

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.hero-layer {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 24%, rgba(245, 158, 11, 0.38), transparent 30%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.84)),
        linear-gradient(90deg, rgba(0, 0, 0, 0.84), transparent 64%);
}

.hero-content {
    position: absolute;
    left: clamp(24px, 6vw, 72px);
    bottom: clamp(32px, 8vw, 76px);
    max-width: 710px;
    color: #fff;
}

.eyebrow {
    margin: 0 0 12px;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 13px;
    font-weight: 850;
}

.hero-content h1,
.page-hero h1,
.detail-content h1 {
    margin: 0;
    letter-spacing: -0.05em;
    line-height: 1.05;
}

.hero-content h1 {
    font-size: clamp(40px, 7vw, 72px);
}

.hero-meta {
    margin: 18px 0 8px;
    color: #fcd34d;
    font-weight: 750;
}

.hero-desc {
    max-width: 680px;
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-list span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    color: #92400e;
    background: #fef3c7;
    font-size: 12px;
    font-weight: 800;
}

.hero-tags span,
.detail-tags span {
    color: #fff7ed;
    background: rgba(217, 119, 6, 0.82);
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
    font-size: 34px;
    cursor: pointer;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.26);
}

.hero-arrow.prev {
    left: 18px;
}

.hero-arrow.next {
    right: 18px;
}

.hero-dots {
    position: absolute;
    right: 34px;
    bottom: 34px;
    display: flex;
    gap: 9px;
}

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

.hero-dot.active {
    width: 28px;
    background: #f59e0b;
}

.plain,
.tinted {
    padding: 56px 0;
}

.tinted {
    background: rgba(255, 255, 255, 0.48);
    backdrop-filter: blur(8px);
}

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

.section-head > div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-head h2 {
    margin: 0;
    font-size: clamp(24px, 3vw, 34px);
    letter-spacing: -0.04em;
}

.section-head.compact h2 {
    font-size: 24px;
}

.section-icon {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    box-shadow: 0 12px 25px rgba(217, 119, 6, 0.22);
}

.section-more {
    color: var(--amber);
    font-weight: 800;
}

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

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

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

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

.movie-card {
    overflow: hidden;
    border-radius: 20px;
    background: var(--card);
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

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

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

.movie-card:hover .poster-wrap img,
.mini-card:hover img {
    transform: scale(1.08);
}

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

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

.play-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    color: #fff;
    background: var(--amber);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.26);
    transform: translate(-50%, -50%) scale(0.78);
    opacity: 0;
    transition: 0.25s ease;
}

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

.movie-info {
    padding: 16px;
}

.movie-info h3 {
    margin: 0 0 7px;
    font-size: 17px;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.movie-info h3 a:hover {
    color: var(--amber);
}

.meta,
.desc {
    margin: 0;
    color: var(--muted);
}

.meta {
    font-size: 13px;
    margin-bottom: 10px;
}

.desc {
    min-height: 45px;
    line-height: 1.55;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-info .tag-list {
    margin-top: 13px;
}

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

.category-tile,
.category-block,
.side-card,
.rank-panel {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: var(--radius);
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
}

.category-tile {
    min-height: 166px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 22px;
    transition: 0.25s ease;
}

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

.category-tile strong {
    font-size: 22px;
    letter-spacing: -0.04em;
}

.category-tile span,
.category-tile em {
    color: var(--muted);
    line-height: 1.6;
    font-style: normal;
}

.category-tile em {
    color: var(--amber-dark);
    font-size: 13px;
    margin-top: auto;
}

.two-column-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 28px;
    align-items: start;
}

.rank-panel {
    padding: 24px;
    position: sticky;
    top: 92px;
}

.rank-list {
    display: grid;
    gap: 10px;
}

.rank-row {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 14px;
    background: #fff;
    transition: 0.2s ease;
}

.rank-row:hover {
    transform: translateX(3px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.rank-row.large {
    grid-template-columns: 54px 74px minmax(0, 1fr) auto;
    padding: 14px;
}

.rank-row img {
    width: 74px;
    height: 98px;
    object-fit: cover;
    border-radius: 10px;
    background: linear-gradient(135deg, #fde68a, #fb923c);
}

.rank-num {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    font-weight: 900;
}

.rank-row strong,
.rank-row em,
.rank-row small {
    display: block;
}

.rank-row strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-row em,
.rank-row small {
    color: var(--muted);
    font-style: normal;
}

.rank-row small {
    margin-top: 6px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rank-row b {
    color: var(--amber-dark);
}

.page-hero {
    padding: 68px 0 48px;
    color: #fff;
    background:
        radial-gradient(circle at 86% 18%, rgba(245, 158, 11, 0.5), transparent 26%),
        linear-gradient(135deg, #111827 0%, #312e81 48%, #9a3412 100%);
}

.page-hero h1 {
    font-size: clamp(42px, 6vw, 72px);
}

.page-hero p:not(.eyebrow) {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
    font-size: 18px;
}

.filter-bar {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    max-width: 700px;
}

.filter-bar.wide {
    max-width: 850px;
}

.filter-bar select {
    max-width: 160px;
}

.stacked {
    display: grid;
    gap: 28px;
}

.category-block {
    padding: 26px;
}

.category-block-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
}

.category-block-head h2 {
    margin: 0 0 8px;
    letter-spacing: -0.04em;
}

.category-block-head p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

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

.mini-card {
    display: flex;
    gap: 12px;
    align-items: center;
    min-width: 0;
    padding: 12px;
    border-radius: 16px;
    background: #fff;
    transition: 0.2s ease;
}

.mini-card:hover {
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.mini-poster {
    width: 72px;
    height: 96px;
    flex: 0 0 auto;
    overflow: hidden;
    border-radius: 12px;
    background: linear-gradient(135deg, #fde68a, #fb923c);
}

.mini-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.25s ease;
}

.mini-info {
    min-width: 0;
    display: grid;
    gap: 6px;
}

.mini-info strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mini-info em,
.mini-info small {
    color: var(--muted);
    font-style: normal;
}

.mini-info small {
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.detail-shell {
    padding: 34px 0 60px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-wrap: wrap;
    margin-bottom: 22px;
    color: var(--muted);
    font-size: 14px;
}

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

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 28px;
    align-items: start;
}

.watch-area,
.detail-content {
    min-width: 0;
}

.player-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #020617;
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.25);
    aspect-ratio: 16 / 9;
}

.movie-player {
    width: 100%;
    height: 100%;
    background: #000;
    display: block;
}

.player-start {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    cursor: pointer;
    color: #fff;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.24), rgba(0, 0, 0, 0.36));
    transition: opacity 0.2s ease;
}

.player-start span {
    display: grid;
    place-items: center;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
    font-size: 36px;
    padding-left: 5px;
}

.player-card.playing .player-start {
    opacity: 0;
    pointer-events: none;
}

.detail-content {
    margin-top: 24px;
    padding: 30px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 38px rgba(15, 23, 42, 0.08);
}

.detail-content h1 {
    font-size: clamp(34px, 5vw, 56px);
}

.lead {
    color: #374151;
    font-size: 19px;
    line-height: 1.85;
}

.detail-content h2,
.side-card h2 {
    margin: 28px 0 12px;
    letter-spacing: -0.03em;
}

.detail-content p {
    line-height: 1.9;
}

.detail-side {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 92px;
}

.side-card {
    padding: 20px;
}

.poster-side img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fde68a, #fb923c);
}

.primary-btn.block {
    width: 100%;
}

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

.info-list div {
    display: grid;
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
}

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

.info-list dd {
    margin: 0;
    font-weight: 700;
}

.related-links {
    display: grid;
    gap: 10px;
}

.related-links h2 {
    margin-top: 0;
}

.empty-state {
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.82);
}

.site-footer {
    color: #cbd5e1;
    background: linear-gradient(180deg, #0f172a, #020617);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 38px;
    padding: 48px 0;
}

.footer-brand {
    color: #fff;
    font-size: 22px;
}

.site-footer p,
.site-footer li {
    color: #94a3b8;
    line-height: 1.8;
}

.site-footer h3 {
    color: #fff;
    margin: 0 0 14px;
}

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

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

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

@media (max-width: 1120px) {
    .five-grid,
    .six-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

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

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

@media (max-width: 900px) {
    .nav-shell {
        height: auto;
        padding: 14px 0;
        flex-wrap: wrap;
    }

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

    .site-nav,
    .nav-search {
        display: none;
        width: 100%;
    }

    .site-header.open .site-nav,
    .site-header.open .nav-search {
        display: flex;
    }

    .site-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding-top: 10px;
    }

    .nav-dropdown {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #fff7ed;
        margin-top: 8px;
    }

    .nav-group:hover .nav-dropdown {
        display: grid;
    }

    .nav-search {
        min-width: 0;
    }

    .hero-carousel {
        min-height: 520px;
    }

    .hero-arrow {
        display: none;
    }

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

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

@media (max-width: 640px) {
    .shell {
        width: min(100% - 22px, 1180px);
    }

    .brand {
        font-size: 20px;
    }

    .hero {
        padding-top: 16px;
    }

    .hero-carousel {
        min-height: 500px;
        border-radius: 20px;
    }

    .hero-content {
        left: 20px;
        right: 20px;
        bottom: 34px;
    }

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

    .hero-desc {
        font-size: 15px;
    }

    .hero-dots {
        left: 20px;
        right: auto;
        bottom: 16px;
    }

    .hero-actions {
        align-items: stretch;
    }

    .primary-btn,
    .ghost-btn {
        width: 100%;
    }

    .plain,
    .tinted {
        padding: 36px 0;
    }

    .section-head,
    .category-block-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .four-grid,
    .five-grid,
    .six-grid,
    .category-grid,
    .mini-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .movie-info {
        padding: 12px;
    }

    .movie-info h3 {
        font-size: 15px;
    }

    .desc {
        font-size: 13px;
    }

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

    .filter-bar select {
        max-width: none;
    }

    .rank-row.large {
        grid-template-columns: 42px 58px minmax(0, 1fr);
    }

    .rank-row.large b {
        grid-column: 3;
        justify-self: start;
    }

    .rank-row img {
        width: 58px;
        height: 78px;
    }

    .detail-content,
    .side-card,
    .category-block {
        padding: 18px;
        border-radius: 18px;
    }

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