:root {
    --site-bg: #fff7f7;
    --paper: #ffffff;
    --ink: #1f2937;
    --muted: #6b7280;
    --line: rgba(220, 38, 38, 0.12);
    --red: #dc2626;
    --rose: #e11d48;
    --orange: #ea580c;
    --soft-red: #fef2f2;
    --shadow: 0 24px 80px rgba(127, 29, 29, 0.12);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: linear-gradient(180deg, #fff7f7 0%, #ffffff 42%, #fff7ed 100%);
    min-height: 100vh;
}

body.menu-open {
    overflow: hidden;
}

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

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

img.is-missing {
    opacity: 0;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(220, 38, 38, 0.08);
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 30px rgba(127, 29, 29, 0.08);
}

.nav-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    height: 74px;
    display: flex;
    align-items: center;
    gap: 26px;
}

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

.brand__mark {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--red), var(--rose));
    box-shadow: 0 14px 30px rgba(220, 38, 38, 0.28);
}

.brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

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

.brand__text small {
    color: var(--muted);
    font-size: 12px;
    margin-top: 3px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-left: auto;
    font-weight: 650;
    color: #374151;
}

.desktop-nav > a,
.nav-dropdown > button {
    border: 0;
    background: transparent;
    padding: 9px 0;
    cursor: pointer;
    font: inherit;
    color: inherit;
}

.desktop-nav > a:hover,
.nav-dropdown > button:hover,
.nav-dropdown__menu a:hover {
    color: var(--red);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown__menu {
    position: absolute;
    top: 100%;
    left: -18px;
    width: 190px;
    background: #ffffff;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-dropdown__menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    color: #4b5563;
}

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

.nav-search input,
.hero-search input,
.page-filter input {
    border: 1px solid rgba(220, 38, 38, 0.16);
    background: rgba(255, 255, 255, 0.92);
    border-radius: 999px;
    padding: 12px 16px;
    outline: 0;
    min-width: 210px;
    color: var(--ink);
}

.nav-search input:focus,
.hero-search input:focus,
.page-filter input:focus {
    border-color: rgba(220, 38, 38, 0.45);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08);
}

.nav-search button,
.hero-search button,
.page-filter button,
.button {
    border: 0;
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 750;
    cursor: pointer;
    transition: 0.22s ease;
}

.nav-search button,
.hero-search button,
.page-filter button,
.button--primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--red), var(--rose));
    box-shadow: 0 14px 34px rgba(220, 38, 38, 0.24);
}

.button--soft {
    color: #991b1b;
    background: #fee2e2;
}

.button--ghost {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.16);
}

.button:hover,
.nav-search button:hover,
.hero-search button:hover,
.page-filter button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(220, 38, 38, 0.28);
}

.menu-button {
    display: none;
    margin-left: auto;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: #fee2e2;
    color: #991b1b;
    font-size: 22px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 18px;
    padding: 18px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.mobile-menu.is-open {
    display: grid;
    gap: 13px;
}

.mobile-menu form {
    display: flex;
    gap: 8px;
}

.mobile-menu input {
    flex: 1;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 12px 14px;
}

.mobile-menu button {
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--red), var(--rose));
    padding: 0 16px;
    font-weight: 700;
}

.mobile-menu > a,
.mobile-menu__grid a {
    padding: 12px 14px;
    border-radius: 14px;
    background: #fff7f7;
    color: #7f1d1d;
    font-weight: 650;
}

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

.hero {
    position: relative;
    overflow: hidden;
    min-height: 720px;
    padding: 128px 0 70px;
    background:
        radial-gradient(circle at 15% 15%, rgba(248, 113, 113, 0.2), transparent 34%),
        radial-gradient(circle at 82% 30%, rgba(225, 29, 72, 0.2), transparent 30%),
        linear-gradient(135deg, #fff7f7 0%, #fff1f2 52%, #ffedd5 100%);
}

.hero__glow {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 999px;
    filter: blur(22px);
    opacity: 0.36;
}

.hero__glow--one {
    left: -100px;
    top: 100px;
    background: #fb7185;
}

.hero__glow--two {
    right: -140px;
    bottom: 30px;
    background: #f97316;
}

.hero-shell {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    gap: 36px;
    align-items: center;
}

.hero-intro,
.hero-carousel,
.page-hero,
.detail-hero {
    border: 1px solid rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.hero-intro {
    border-radius: var(--radius-xl);
    padding: 38px;
}

.hero-kicker,
.eyebrow,
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--red);
    background: #fee2e2;
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.hero-intro h1,
.page-hero h1,
.detail-hero h1 {
    margin: 22px 0 18px;
    font-size: clamp(38px, 5vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.06em;
}

.hero-intro p,
.page-hero p,
.detail-hero p,
.section-head p,
.split-panel p,
.category-card p,
.detail-article p {
    color: var(--muted);
    line-height: 1.8;
}

.hero-search,
.page-filter {
    display: flex;
    gap: 10px;
    margin: 28px 0 18px;
}

.hero-search input,
.page-filter input {
    flex: 1;
}

.hero-link-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-link-row a,
.text-link {
    color: #be123c;
    font-weight: 800;
}

.hero-carousel {
    position: relative;
    min-height: 510px;
    border-radius: 34px;
    overflow: hidden;
    background: linear-gradient(135deg, #7f1d1d, #be123c 52%, #f97316);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 24px;
    padding: 34px;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.985);
    transition: opacity 0.5s ease, transform 0.5s ease;
    color: #ffffff;
}

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

.hero-slide__content {
    align-self: end;
    padding-bottom: 20px;
}

.hero-slide h2 {
    font-size: clamp(30px, 4.2vw, 56px);
    line-height: 1.02;
    letter-spacing: -0.05em;
    margin: 20px 0 16px;
}

.hero-slide p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    max-width: 620px;
}

.hero-tags,
.detail-tags,
.movie-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tags span,
.detail-tags span {
    border-radius: 999px;
    padding: 7px 12px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
}

.hero-actions,
.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.hero-slide__poster,
.detail-hero__poster {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    min-height: 440px;
    background: linear-gradient(135deg, #fee2e2, #fb7185 48%, #7f1d1d);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.24);
}

.hero-slide__poster img,
.detail-hero__poster img,
.player-cover img,
.category-card__covers img,
.movie-card__poster img,
.rank-item__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide__poster span,
.detail-hero__poster span,
.movie-card__poster-title {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    color: #ffffff;
    font-weight: 850;
    z-index: 2;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

.hero-slide__poster::after,
.detail-hero__poster::after,
.movie-card__poster::after,
.category-card__covers a::after,
.player-cover::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 55%;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.68));
    pointer-events: none;
}

.hero-controls {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: -10px;
}

.hero-controls button {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    color: #991b1b;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(127, 29, 29, 0.12);
    cursor: pointer;
}

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

.hero-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    background: rgba(220, 38, 38, 0.22);
}

.hero-dots button.is-active {
    width: 34px;
    background: var(--red);
}

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

.section {
    padding: 76px 0;
}

.section--narrow {
    padding-top: 44px;
}

.section--white {
    background: transparent;
}

.section--tint {
    width: 100%;
    max-width: none;
    padding-left: max(16px, calc((100% - 1180px) / 2));
    padding-right: max(16px, calc((100% - 1180px) / 2));
    background: linear-gradient(135deg, #fff1f2, #fff7ed);
}

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 36px;
}

.section-head--left {
    text-align: left;
    margin-left: 0;
}

.section-head h2,
.split-panel h2,
.category-card h2,
.detail-article h2,
.detail-aside h2 {
    margin: 14px 0 10px;
    font-size: clamp(26px, 3vw, 42px);
    letter-spacing: -0.045em;
}

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

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

.movie-card {
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
    background: var(--paper);
    box-shadow: 0 12px 34px rgba(127, 29, 29, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(127, 29, 29, 0.15);
}

.movie-card__poster {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, #fee2e2, #fb7185 48%, #7f1d1d);
}

.movie-card__poster img {
    transition: transform 0.45s ease, opacity 0.2s ease;
}

.movie-card:hover .movie-card__poster img {
    transform: scale(1.08);
}

.movie-card__shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.28) 45%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.55s ease;
}

.movie-card:hover .movie-card__shine {
    transform: translateX(100%);
}

.movie-card__play {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(220, 38, 38, 0.92);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.movie-card__body {
    padding: 18px;
}

.movie-card__meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--red);
    font-size: 13px;
    font-weight: 750;
}

.movie-card h3 {
    margin: 12px 0 8px;
    font-size: 18px;
    line-height: 1.35;
}

.movie-card h3 a:hover {
    color: var(--red);
}

.movie-card p {
    margin: 0 0 14px;
    min-height: 48px;
    color: var(--muted);
    line-height: 1.6;
    font-size: 14px;
}

.movie-card__tags span {
    padding: 6px 9px;
    border-radius: 999px;
    background: #fff1f2;
    color: #991b1b;
    font-size: 12px;
    font-weight: 700;
}

.center-action {
    text-align: center;
    margin-top: 40px;
}

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

.category-tile,
.category-card {
    display: block;
    border: 1px solid rgba(220, 38, 38, 0.12);
    border-radius: 26px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 44px rgba(127, 29, 29, 0.08);
    transition: 0.25s ease;
}

.category-tile:hover,
.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 26px 60px rgba(127, 29, 29, 0.13);
}

.category-tile span {
    display: block;
    color: var(--red);
    font-size: 22px;
    font-weight: 850;
    margin-bottom: 10px;
}

.category-tile strong {
    color: var(--muted);
    line-height: 1.7;
    font-weight: 500;
}

.category-card {
    display: grid;
    grid-template-columns: 1fr 180px;
    gap: 22px;
    align-items: center;
}

.category-card__covers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.category-card__covers a {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 16px;
    background: linear-gradient(135deg, #fee2e2, #fb7185 48%, #7f1d1d);
}

.category-card__covers span {
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 8px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    z-index: 1;
}

.section--split {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 24px;
}

.split-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: 30px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow);
}

.split-panel--banner {
    color: #ffffff;
    background:
        radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.26), transparent 24%),
        linear-gradient(135deg, #991b1b, #e11d48 52%, #f97316);
}

.split-panel--banner p {
    color: rgba(255, 255, 255, 0.82);
}

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

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

.rank-item {
    display: grid;
    grid-template-columns: 46px 64px 1fr;
    gap: 12px;
    align-items: center;
    border: 1px solid rgba(220, 38, 38, 0.1);
    border-radius: 18px;
    padding: 10px;
    background: #ffffff;
    transition: 0.22s ease;
}

.rank-item:hover {
    transform: translateX(4px);
    border-color: rgba(220, 38, 38, 0.35);
}

.rank-item__num {
    color: var(--red);
    font-size: 22px;
    font-weight: 900;
}

.rank-item__cover {
    width: 64px;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 12px;
    background: linear-gradient(135deg, #fee2e2, #fb7185 48%, #7f1d1d);
}

.rank-item__body {
    display: grid;
    gap: 6px;
}

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

.page-main {
    padding-top: 110px;
}

.page-hero {
    border-radius: var(--radius-xl);
    padding: 48px;
    margin: 22px 0 18px;
    background:
        radial-gradient(circle at 15% 20%, rgba(251, 113, 133, 0.2), transparent 35%),
        rgba(255, 255, 255, 0.82);
}

.page-hero--ranking,
.page-hero--category {
    background:
        radial-gradient(circle at 15% 20%, rgba(248, 113, 113, 0.18), transparent 34%),
        linear-gradient(135deg, #ffffff, #fff1f2);
}

.page-filter--large {
    max-width: 760px;
}

.detail-main {
    padding-top: 110px;
}

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

.breadcrumb a {
    color: #be123c;
    font-weight: 700;
}

.detail-hero {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 32px;
    border-radius: var(--radius-xl);
    padding: 30px;
    margin-bottom: 28px;
}

.detail-hero__poster {
    min-height: 430px;
}

.detail-hero__content {
    align-self: center;
}

.detail-tags span {
    color: #991b1b;
    background: #fee2e2;
}

.player-section {
    margin: 28px 0;
}

.player-box {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #111827;
    box-shadow: 0 30px 80px rgba(17, 24, 39, 0.26);
    aspect-ratio: 16 / 9;
}

.player-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 1;
}

.player-cover {
    position: absolute;
    inset: 0;
    z-index: 2;
    border: 0;
    cursor: pointer;
    color: #ffffff;
    background: linear-gradient(135deg, #7f1d1d, #be123c 52%, #f97316);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.player-cover img {
    position: absolute;
    inset: 0;
    opacity: 0.72;
}

.player-cover__button {
    position: relative;
    z-index: 3;
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(220, 38, 38, 0.9);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    font-size: 34px;
    padding-left: 4px;
}

.player-cover strong {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 28px;
    z-index: 3;
    font-size: clamp(24px, 3vw, 44px);
    text-align: left;
}

.player-cover.is-hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

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

.detail-article,
.detail-aside {
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: 30px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow);
}

.detail-article p {
    font-size: 17px;
}

.detail-aside dl {
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 14px 16px;
    margin: 0;
}

.detail-aside dt {
    color: var(--red);
    font-weight: 800;
}

.detail-aside dd {
    margin: 0;
    color: #374151;
}

.detail-related {
    width: 100%;
}

.site-footer {
    margin-top: 60px;
    padding: 46px 0;
    color: #fecaca;
    background: linear-gradient(135deg, #7f1d1d, #111827);
}

.footer-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.footer-brand {
    color: #ffffff;
    font-size: 24px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    color: #ffffff;
    font-weight: 700;
}

[data-card].is-hidden {
    display: none;
}

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

    .menu-button {
        display: block;
    }

    .hero-shell,
    .hero-slide,
    .detail-hero,
    .detail-layout,
    .section--split,
    .category-card {
        grid-template-columns: 1fr;
    }

    .hero-controls {
        grid-column: 1;
    }

    .movie-grid,
    .movie-grid--featured,
    .movie-grid--related,
    .category-grid,
    .category-card-grid,
    .rank-list--wide {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-slide__poster,
    .detail-hero__poster {
        min-height: 360px;
    }
}

@media (max-width: 680px) {
    .nav-shell {
        height: 66px;
    }

    .brand__text small {
        display: none;
    }

    .hero {
        padding-top: 96px;
        min-height: auto;
    }

    .hero-intro,
    .hero-slide,
    .page-hero,
    .detail-hero,
    .split-panel,
    .detail-article,
    .detail-aside {
        padding: 22px;
        border-radius: 22px;
    }

    .hero-search,
    .page-filter,
    .mobile-menu form,
    .footer-shell,
    .hero-actions,
    .detail-actions {
        flex-direction: column;
    }

    .hero-search button,
    .page-filter button,
    .mobile-menu button {
        min-height: 46px;
    }

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

    .hero-slide__poster,
    .detail-hero__poster {
        min-height: 330px;
    }

    .movie-grid,
    .movie-grid--featured,
    .movie-grid--related,
    .category-grid,
    .category-card-grid,
    .rank-list--wide {
        grid-template-columns: 1fr;
    }

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

    .section {
        padding: 48px 0;
    }

    .page-main,
    .detail-main {
        padding-top: 84px;
    }
}
