:root {
    --rose-50: #fff1f5;
    --rose-100: #ffe4ec;
    --rose-500: #f43f5e;
    --rose-600: #e11d48;
    --rose-700: #be123c;
    --purple-50: #faf5ff;
    --purple-100: #f3e8ff;
    --purple-600: #9333ea;
    --indigo-700: #4338ca;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-500: #6b7280;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(17, 24, 39, 0.12);
    --soft-shadow: 0 10px 25px rgba(17, 24, 39, 0.08);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--gray-800);
    background: linear-gradient(180deg, var(--purple-50) 0%, var(--white) 38%, var(--rose-50) 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 90;
    background: linear-gradient(90deg, rgba(250, 245, 255, 0.94), rgba(255, 241, 245, 0.94));
    border-bottom: 1px solid rgba(244, 63, 94, 0.12);
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
}

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

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

.brand-icon {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: var(--white);
    font-weight: 800;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--rose-600), var(--purple-600));
    box-shadow: 0 12px 22px rgba(225, 29, 72, 0.25);
}

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

.brand-text strong {
    color: var(--gray-900);
    font-size: 20px;
    font-weight: 800;
}

.brand-text em {
    margin-top: 4px;
    color: var(--gray-500);
    font-size: 12px;
    font-style: normal;
}

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

.nav-link {
    position: relative;
    color: var(--gray-700);
    font-weight: 700;
    transition: color 0.25s ease;
}

.nav-link::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 3px;
    content: "";
    border-radius: 999px;
    background: var(--rose-600);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--rose-600);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 12px;
    background: rgba(225, 29, 72, 0.08);
}

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

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 14px;
    padding: 12px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--soft-shadow);
}

.mobile-nav.open {
    display: grid;
    gap: 8px;
}

.mobile-link {
    padding: 12px;
    color: var(--gray-700);
    font-weight: 700;
    border-radius: 10px;
}

.mobile-link.active,
.mobile-link:hover {
    color: var(--rose-700);
    background: var(--rose-50);
}

.hero-slider {
    position: relative;
    height: 640px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--rose-600), var(--purple-600));
}

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

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

.hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.46;
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(17, 24, 39, 0.86), rgba(17, 24, 39, 0.42), rgba(17, 24, 39, 0.1));
}

.hero-copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: min(1180px, calc(100% - 32px));
    height: 100%;
    margin: 0 auto;
    color: var(--white);
}

.hero-copy h1 {
    max-width: 780px;
    margin: 16px 0 18px;
    font-size: clamp(34px, 5vw, 68px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.hero-copy p {
    max-width: 720px;
    margin: 0 0 34px;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(17px, 2vw, 24px);
    line-height: 1.7;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 14px;
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    border-radius: 999px;
    background: rgba(244, 63, 94, 0.84);
}

.eyebrow.dark {
    color: var(--rose-700);
    background: var(--rose-100);
}

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

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

.primary-btn {
    color: var(--white);
    background: linear-gradient(135deg, var(--rose-600), var(--purple-600));
    box-shadow: 0 16px 32px rgba(225, 29, 72, 0.28);
}

.ghost-btn {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
}

.primary-btn:hover,
.ghost-btn:hover,
.text-link:hover {
    transform: translateY(-2px);
}

.hero-dots {
    position: absolute;
    z-index: 3;
    right: max(24px, calc((100vw - 1180px) / 2));
    bottom: 42px;
    display: flex;
    gap: 10px;
}

.hero-dots button {
    width: 38px;
    height: 8px;
    padding: 0;
    cursor: pointer;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
}

.hero-dots button.active {
    background: var(--white);
}

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

.intro-strip {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: center;
    margin-top: -54px;
    padding: 34px;
    border: 1px solid rgba(225, 29, 72, 0.12);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
}

.intro-strip h2,
.section-title h2,
.page-hero h1 {
    margin: 14px 0 10px;
    color: var(--gray-900);
    font-weight: 900;
    letter-spacing: -0.03em;
}

.intro-strip h2,
.section-title h2 {
    font-size: clamp(26px, 3vw, 40px);
}

.intro-strip p,
.page-hero p,
.category-overview-card p {
    color: var(--gray-500);
    line-height: 1.8;
}

.home-search,
.search-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.home-search input,
.search-box input {
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    outline: none;
    background: var(--white);
    transition: border 0.25s ease, box-shadow 0.25s ease;
}

.home-search input:focus,
.search-box input:focus {
    border-color: var(--rose-500);
    box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.12);
}

.home-search button {
    min-height: 54px;
    padding: 0 24px;
    color: var(--white);
    font-weight: 800;
    cursor: pointer;
    border: 0;
    border-radius: 999px;
    background: var(--rose-600);
    white-space: nowrap;
}

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

.section-title a {
    color: var(--rose-600);
    font-weight: 800;
}

.section-title.light h2,
.section-title.light a {
    color: var(--white);
}

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

.movie-grid.featured-grid,
.ranking-grid,
.related-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
}

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

.movie-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(229, 231, 235, 0.9);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--soft-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-5px);
    border-color: rgba(244, 63, 94, 0.25);
    box-shadow: var(--shadow);
}

.movie-poster {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    background: linear-gradient(135deg, var(--rose-100), var(--purple-100));
}

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

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

.play-chip,
.rank-mark {
    position: absolute;
    z-index: 3;
    border-radius: 999px;
    font-weight: 900;
}

.play-chip {
    right: 12px;
    bottom: 12px;
    padding: 7px 12px;
    color: var(--white);
    font-size: 12px;
    background: rgba(225, 29, 72, 0.92);
    box-shadow: 0 12px 24px rgba(225, 29, 72, 0.25);
}

.rank-mark {
    top: 12px;
    left: 12px;
    display: inline-grid;
    place-items: center;
    min-width: 34px;
    height: 34px;
    padding: 0 8px;
    color: var(--rose-700);
    background: rgba(255, 255, 255, 0.92);
}

.movie-card-body {
    padding: 16px;
}

.movie-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.movie-meta-row span,
.tag-list span,
.detail-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 9px;
    color: var(--rose-700);
    font-size: 12px;
    font-weight: 800;
    border-radius: 999px;
    background: var(--rose-50);
}

.movie-card h2 {
    margin: 0 0 8px;
    color: var(--gray-900);
    font-size: 18px;
    line-height: 1.35;
    font-weight: 900;
}

.movie-card h2 a:hover {
    color: var(--rose-600);
}

.movie-card p {
    display: -webkit-box;
    overflow: hidden;
    min-height: 44px;
    margin: 0 0 12px;
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1.55;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-card.compact h2 {
    font-size: 16px;
}

.movie-card.compact .movie-card-body {
    padding: 13px;
}

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

.category-section {
    padding: 56px 32px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--rose-100), var(--purple-100));
}

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

.category-card,
.category-overview-card {
    overflow: hidden;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--soft-shadow);
}

.category-card {
    position: relative;
    min-height: 210px;
    padding: 22px;
    color: var(--white);
}

.category-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55);
    transition: transform 0.45s ease;
}

.category-card:hover img {
    transform: scale(1.06);
}

.category-card span,
.category-card em {
    position: relative;
    z-index: 2;
    display: block;
}

.category-card span {
    margin-top: 82px;
    font-size: 23px;
    font-weight: 900;
}

.category-card em {
    margin-top: 10px;
    font-size: 14px;
    font-style: normal;
    line-height: 1.6;
    opacity: 0.86;
}

.ranking-strip {
    margin-top: 72px;
    margin-bottom: 72px;
    padding: 48px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--rose-600), var(--indigo-700));
    box-shadow: var(--shadow);
}

.page-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 320px;
    color: var(--white);
    background: linear-gradient(135deg, var(--rose-600), var(--purple-600));
}

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

.page-hero h1 {
    max-width: 760px;
    color: var(--white);
    font-size: clamp(34px, 4vw, 58px);
}

.page-hero p {
    max-width: 780px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
}

.simple-hero,
.category-hero,
.search-hero,
.ranking-hero {
    overflow: hidden;
}

.simple-hero::after,
.category-hero::after,
.search-hero::after,
.ranking-hero::after {
    position: absolute;
    right: -160px;
    bottom: -180px;
    width: 420px;
    height: 420px;
    content: "";
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
}

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

.category-overview-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 20px;
    padding: 18px;
}

.category-cover {
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 2 / 3;
}

.category-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-overview-card h2 {
    margin: 12px 0 8px;
    color: var(--gray-900);
    font-size: 24px;
    font-weight: 900;
}

.category-samples {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0;
}

.category-samples span {
    padding: 7px 10px;
    color: var(--gray-700);
    font-size: 12px;
    font-weight: 700;
    border-radius: 999px;
    background: var(--gray-100);
}

.text-link {
    min-height: 40px;
    padding: 0 16px;
    color: var(--rose-700);
    background: var(--rose-50);
}

.tools-panel {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) auto;
    gap: 18px;
    align-items: center;
    margin-bottom: 28px;
    padding: 18px;
    border: 1px solid rgba(229, 231, 235, 0.92);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--soft-shadow);
}

.search-box span {
    color: var(--gray-700);
    font-weight: 900;
}

.type-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.type-filters button {
    min-height: 42px;
    padding: 0 14px;
    cursor: pointer;
    border: 0;
    border-radius: 999px;
    color: var(--gray-700);
    font-weight: 800;
    background: var(--gray-100);
}

.type-filters button.active,
.type-filters button:hover {
    color: var(--white);
    background: var(--rose-600);
}

.movie-card.is-hidden {
    display: none;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    width: min(1180px, calc(100% - 32px));
    margin: 22px auto;
    color: var(--gray-500);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--rose-700);
    font-weight: 800;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    color: var(--white);
    background: var(--gray-900);
}

.detail-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.38;
    filter: blur(1px);
}

.detail-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(17, 24, 39, 0.93), rgba(17, 24, 39, 0.62), rgba(17, 24, 39, 0.2));
}

.detail-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 310px 1fr;
    gap: 42px;
    align-items: center;
    width: min(1180px, calc(100% - 32px));
    min-height: 560px;
    margin: 0 auto;
    padding: 48px 0;
}

.detail-poster {
    overflow: hidden;
    border: 8px solid rgba(255, 255, 255, 0.18);
    border-radius: 28px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

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

.detail-info h1 {
    max-width: 820px;
    margin: 18px 0;
    font-size: clamp(34px, 4vw, 62px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.detail-one-line {
    max-width: 820px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 20px;
    line-height: 1.8;
}

.detail-meta,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 20px;
}

.detail-meta span {
    color: var(--white);
    background: rgba(255, 255, 255, 0.16);
}

.detail-tags span {
    color: var(--white);
    background: rgba(244, 63, 94, 0.65);
}

.player-section {
    padding-top: 64px;
}

.player-box {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #000000;
    box-shadow: var(--shadow);
}

.player-video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.player-play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 4;
    min-width: 144px;
    min-height: 54px;
    color: var(--white);
    font-weight: 900;
    cursor: pointer;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--rose-600), var(--purple-600));
    box-shadow: 0 18px 38px rgba(225, 29, 72, 0.35);
    transform: translate(-50%, -50%);
}

.player-box.playing .player-play {
    display: none;
}

.detail-article {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 28px;
}

.detail-article article,
.detail-side {
    padding: 30px;
    border: 1px solid rgba(229, 231, 235, 0.92);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--soft-shadow);
}

.detail-article h2,
.detail-side h2 {
    margin: 0 0 16px;
    color: var(--gray-900);
    font-size: 26px;
    font-weight: 900;
}

.detail-article p {
    margin: 0 0 28px;
    color: var(--gray-700);
    font-size: 17px;
    line-height: 2;
}

.detail-side dl {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 14px 12px;
    margin: 0;
}

.detail-side dt {
    color: var(--gray-500);
    font-weight: 800;
}

.detail-side dd {
    margin: 0;
    color: var(--gray-800);
    font-weight: 700;
}

.site-footer {
    margin-top: 86px;
    color: rgba(255, 255, 255, 0.76);
    background: linear-gradient(135deg, var(--gray-900), #20243a);
}

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 54px 0 34px;
}

.footer-brand {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 34px;
}

.footer-brand strong,
.footer-links h2 {
    color: var(--white);
}

.footer-brand p {
    max-width: 680px;
    margin: 8px 0 0;
    line-height: 1.8;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-links h2 {
    margin: 0 0 16px;
    font-size: 18px;
}

.footer-link-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
}

.footer-link-grid a:hover {
    color: var(--rose-100);
}

.footer-copy {
    margin: 34px 0 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 14px;
}

@media (max-width: 1100px) {
    .movie-grid,
    .all-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

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

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

    .menu-toggle {
        display: block;
    }

    .hero-slider {
        height: 560px;
    }

    .intro-strip,
    .tools-panel,
    .detail-article,
    .footer-links {
        grid-template-columns: 1fr;
    }

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

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

    .detail-content {
        grid-template-columns: 220px 1fr;
    }
}

@media (max-width: 640px) {
    .site-header-inner {
        height: 64px;
    }

    .brand-text strong {
        font-size: 18px;
    }

    .brand-text em {
        display: none;
    }

    .hero-slider {
        height: 520px;
    }

    .hero-copy p {
        font-size: 16px;
    }

    .hero-dots {
        right: 18px;
        bottom: 24px;
    }

    .section-wrap {
        width: min(100% - 22px, 1180px);
        padding-top: 46px;
    }

    .intro-strip,
    .category-section,
    .ranking-strip {
        padding: 22px;
        border-radius: 22px;
    }

    .home-search {
        flex-direction: column;
    }

    .home-search button {
        width: 100%;
    }

    .section-title {
        align-items: flex-start;
        flex-direction: column;
    }

    .movie-grid,
    .all-grid,
    .movie-grid.featured-grid,
    .ranking-grid,
    .related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

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

    .category-overview-card {
        grid-template-columns: 130px 1fr;
        gap: 14px;
        padding: 14px;
    }

    .tools-panel {
        padding: 14px;
    }

    .type-filters button {
        min-height: 38px;
    }

    .detail-content {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 30px 0;
    }

    .detail-poster {
        width: min(240px, 72vw);
    }

    .detail-one-line {
        font-size: 16px;
    }

    .detail-article article,
    .detail-side {
        padding: 22px;
    }
}
