:root {
    color-scheme: light;
    --emerald: #059669;
    --emerald-dark: #047857;
    --emerald-soft: #d1fae5;
    --slate-950: #020617;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;
    --white: #ffffff;
    --amber: #f59e0b;
    --radius-xl: 28px;
    --radius-lg: 20px;
    --shadow-soft: 0 24px 70px rgba(15, 23, 42, 0.16);
    --shadow-card: 0 16px 36px rgba(15, 23, 42, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    color: var(--slate-800);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 42%, #eef2ff 100%);
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    color: var(--white);
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.98), rgba(4, 120, 87, 0.98));
    box-shadow: 0 12px 30px rgba(4, 120, 87, 0.28);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    width: min(1240px, calc(100% - 32px));
    min-height: 76px;
    margin: 0 auto;
}

.site-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.03em;
    white-space: nowrap;
}

.logo-mark {
    display: inline-grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 14px;
    color: var(--emerald-dark);
    background: var(--white);
    box-shadow: 0 10px 24px rgba(2, 6, 23, 0.2);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.desktop-nav::-webkit-scrollbar {
    display: none;
}

.nav-link {
    padding: 8px 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.86);
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--white);
    border-color: var(--white);
}

.header-search,
.mobile-search,
.hero-search,
.search-page-form {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-search {
    width: 260px;
    padding: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
}

.header-search input,
.mobile-search input,
.hero-search input,
.search-page-form input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    color: inherit;
    background: transparent;
}

.header-search input::placeholder,
.mobile-search input::placeholder {
    color: rgba(255, 255, 255, 0.72);
}

.header-search button,
.mobile-search button,
.hero-search button,
.search-page-form button,
.primary-button {
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: var(--emerald);
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.header-search button,
.mobile-search button {
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.22);
}

.header-search button:hover,
.mobile-search button:hover,
.hero-search button:hover,
.search-page-form button:hover,
.primary-button:hover {
    transform: translateY(-1px);
    background: var(--emerald-dark);
    box-shadow: 0 16px 30px rgba(5, 150, 105, 0.24);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.16);
}

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

.mobile-panel.is-open {
    display: block;
}

.mobile-search {
    padding: 10px 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.16);
}

.mobile-nav {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 12px;
}

.mobile-nav a {
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
}

.hero {
    position: relative;
    height: min(680px, calc(100vh - 76px));
    min-height: 560px;
    overflow: hidden;
    color: var(--white);
    background: var(--slate-950);
}

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

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

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

.hero-shade,
.detail-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.88), rgba(15, 23, 42, 0.58), rgba(15, 23, 42, 0.18));
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: min(1240px, calc(100% - 32px));
    height: 100%;
    margin: 0 auto;
    padding-bottom: 54px;
}

.hero-badge,
.section-kicker {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    color: #ecfdf5;
    background: rgba(5, 150, 105, 0.9);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.hero h1 {
    max-width: 780px;
    margin: 24px 0 16px;
    font-size: clamp(42px, 8vw, 84px);
    line-height: 0.98;
    font-weight: 950;
    letter-spacing: -0.06em;
}

.hero-desc {
    max-width: 680px;
    margin: 0 0 22px;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.86);
}

.hero-meta,
.detail-meta,
.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.hero-meta span,
.detail-meta span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.9);
}

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

.primary-button,
.ghost-button,
.ghost-dark,
.section-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    font-weight: 850;
}

.ghost-button {
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 999px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

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

.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 122px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 16px;
    transform: translateX(-50%);
}

.hero-arrow,
.hero-dot {
    border: 0;
    cursor: pointer;
}

.hero-arrow {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.18);
    font-size: 34px;
    line-height: 1;
}

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

.hero-dot {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.48);
    transition: width 0.2s ease, background 0.2s ease;
}

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

.hero-search {
    position: absolute;
    left: 50%;
    bottom: 34px;
    z-index: 4;
    width: min(820px, calc(100% - 32px));
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: var(--white);
    background: rgba(15, 23, 42, 0.56);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
}

.hero-search input {
    padding: 0 16px;
}

.hero-search input::placeholder {
    color: rgba(255, 255, 255, 0.68);
}

.hero-search button,
.search-page-form button {
    min-height: 46px;
    padding: 0 24px;
}

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

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

.section-heading h2,
.page-hero h1,
.ranking-head h2,
.detail-info h1 {
    margin: 10px 0 0;
    color: var(--slate-900);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.section-heading p,
.page-hero p {
    max-width: 780px;
    margin: 12px 0 0;
    color: var(--slate-600);
    line-height: 1.8;
}

.section-link,
.ghost-dark {
    border-radius: 999px;
    color: var(--emerald-dark);
    background: var(--emerald-soft);
}

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

.category-tile {
    min-height: 150px;
    padding: 24px;
    border: 1px solid rgba(5, 150, 105, 0.14);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #ffffff, #ecfdf5);
    box-shadow: var(--shadow-card);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover,
.movie-card:hover,
.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 54px rgba(15, 23, 42, 0.18);
}

.category-tile strong {
    display: block;
    margin-bottom: 10px;
    color: var(--slate-900);
    font-size: 22px;
    font-weight: 900;
}

.category-tile span {
    color: var(--slate-600);
    line-height: 1.7;
}

.filter-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px 180px;
    gap: 12px;
    margin-bottom: 24px;
}

.filter-bar input,
.filter-bar select,
.search-page-form input {
    min-height: 50px;
    border: 1px solid rgba(100, 116, 139, 0.18);
    border-radius: 16px;
    padding: 0 16px;
    color: var(--slate-800);
    background: var(--white);
    outline: 0;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

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

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

.movie-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--slate-100);
}

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

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

.duration,
.rank-badge {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--white);
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(2, 6, 23, 0.22);
}

.duration {
    right: 12px;
    bottom: 12px;
    padding: 6px 10px;
    background: rgba(15, 23, 42, 0.78);
    font-size: 12px;
}

.rank-badge {
    left: 12px;
    top: 12px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f97316, #f59e0b);
    font-style: normal;
}

.card-body {
    padding: 18px;
}

.card-title {
    display: -webkit-box;
    min-height: 52px;
    overflow: hidden;
    color: var(--slate-900);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.card-title:hover {
    color: var(--emerald-dark);
}

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

.card-meta {
    color: var(--slate-500);
    font-size: 13px;
}

.card-meta span {
    padding: 4px 8px;
    border-radius: 999px;
    background: var(--slate-100);
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.tag-row span {
    padding: 5px 9px;
    border-radius: 999px;
    color: var(--emerald-dark);
    background: var(--emerald-soft);
    font-size: 12px;
    font-weight: 800;
}

.large-tags span {
    font-size: 14px;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: start;
    gap: 34px;
}

.ranking-panel {
    position: sticky;
    top: 100px;
    padding: 24px;
    border-radius: var(--radius-xl);
    color: var(--white);
    background: linear-gradient(180deg, var(--slate-900), var(--slate-800));
    box-shadow: var(--shadow-soft);
}

.ranking-head span {
    color: var(--amber);
    font-weight: 950;
    letter-spacing: 0.18em;
}

.ranking-head h2 {
    color: var(--white);
}

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

.ranking-item {
    display: grid;
    grid-template-columns: 32px 56px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
}

.ranking-item img {
    width: 56px;
    height: 74px;
    border-radius: 12px;
    object-fit: cover;
}

.ranking-item span,
.ranking-item em {
    color: var(--amber);
    font-weight: 950;
    font-style: normal;
}

.ranking-item strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wide {
    width: 100%;
}

.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--slate-900);
}

.page-hero {
    min-height: 360px;
    display: grid;
    place-items: center;
    padding: 80px 16px;
    background: radial-gradient(circle at 15% 20%, rgba(16, 185, 129, 0.45), transparent 32%), linear-gradient(135deg, #064e3b, #0f172a 72%);
}

.page-hero > div {
    width: min(1120px, 100%);
}

.page-hero h1,
.page-hero p {
    color: var(--white);
}

.page-hero p {
    color: rgba(255, 255, 255, 0.78);
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.pill-link {
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
}

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

.category-card {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 22px;
    overflow: hidden;
    padding: 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-card);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card img {
    height: 250px;
    border-radius: 22px;
    object-fit: cover;
}

.category-card span {
    color: var(--emerald-dark);
    font-weight: 950;
    letter-spacing: 0.08em;
}

.category-card h2 {
    margin: 8px 0 10px;
    color: var(--slate-900);
    font-size: 28px;
    font-weight: 950;
}

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

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

.category-samples a {
    padding: 6px 9px;
    border-radius: 999px;
    color: var(--slate-700);
    background: var(--slate-100);
    font-size: 13px;
}

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

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

.mini-rank-wrap {
    display: grid;
    gap: 18px;
}

.mini-rank {
    padding: 20px;
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow-card);
}

.mini-rank h2 {
    margin: 0 0 14px;
    color: var(--slate-900);
    font-size: 22px;
    font-weight: 950;
}

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

.mini-rank a {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
}

.mini-rank span,
.mini-rank em {
    color: var(--emerald-dark);
    font-weight: 950;
    font-style: normal;
}

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

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

.detail-content {
    position: relative;
    z-index: 2;
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: 36px 0 78px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 46px;
    color: rgba(255, 255, 255, 0.78);
}

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

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

.detail-poster img {
    aspect-ratio: 3 / 4;
    border: 8px solid rgba(255, 255, 255, 0.18);
    border-radius: 32px;
    object-fit: cover;
    box-shadow: var(--shadow-soft);
}

.detail-info h1 {
    max-width: 860px;
    margin: 18px 0;
    color: var(--white);
    font-size: clamp(42px, 7vw, 76px);
}

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

.detail-info .primary-button {
    margin-top: 28px;
}

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

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: #000000;
    box-shadow: var(--shadow-soft);
    aspect-ratio: 16 / 9;
}

.movie-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000000;
}

.player-start {
    position: absolute;
    inset: 0;
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    border: 0;
    color: var(--white);
    background: radial-gradient(circle, rgba(5, 150, 105, 0.16), rgba(2, 6, 23, 0.42));
    cursor: pointer;
}

.player-start span {
    display: grid;
    width: 96px;
    height: 96px;
    place-items: center;
    padding-left: 7px;
    border-radius: 999px;
    background: rgba(5, 150, 105, 0.92);
    box-shadow: 0 18px 52px rgba(5, 150, 105, 0.38);
    font-size: 42px;
}

.player-shell.is-playing .player-start {
    display: none;
}

.detail-text {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    padding-top: 10px;
}

.article-card {
    padding: 30px;
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-card);
}

.article-card h2 {
    margin: 0 0 14px;
    color: var(--slate-900);
    font-size: 26px;
    font-weight: 950;
}

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

.search-page-form {
    max-width: 720px;
    margin-top: 28px;
    padding: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
}

.site-footer {
    color: rgba(255, 255, 255, 0.78);
    background: linear-gradient(180deg, var(--slate-900), var(--slate-950));
}

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

.footer-logo {
    color: var(--white);
}

.footer-inner p {
    max-width: 640px;
    margin: 16px 0 0;
    line-height: 1.8;
}

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

.footer-links a {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
}

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

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

    .split-section,
    .rank-layout {
        grid-template-columns: 1fr;
    }

    .ranking-panel {
        position: static;
    }
}

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

    .menu-toggle {
        display: inline-grid;
        place-items: center;
        margin-left: auto;
    }

    .hero {
        min-height: 620px;
    }

    .hero-content {
        justify-content: flex-start;
        padding-top: 76px;
    }

    .hero-actions,
    .section-heading,
    .footer-inner,
    .detail-grid,
    .detail-text,
    .category-card,
    .filter-bar {
        grid-template-columns: 1fr;
    }

    .section-heading {
        display: grid;
        align-items: start;
    }

    .movie-grid,
    .compact-grid,
    .ranking-grid,
    .category-grid,
    .category-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 560px) {
    .header-inner {
        min-height: 66px;
    }

    .site-logo,
    .footer-logo {
        font-size: 18px;
    }

    .logo-mark {
        width: 32px;
        height: 32px;
        border-radius: 12px;
    }

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

    .hero h1 {
        font-size: 44px;
    }

    .hero-search,
    .search-page-form {
        border-radius: 24px;
        flex-direction: column;
        align-items: stretch;
    }

    .hero-search {
        bottom: 22px;
    }

    .hero-controls {
        bottom: 128px;
    }

    .movie-grid,
    .compact-grid,
    .ranking-grid,
    .category-grid,
    .category-card-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 46px 0;
    }

    .detail-hero {
        min-height: auto;
    }

    .detail-content {
        padding-bottom: 52px;
    }

    .detail-info h1 {
        font-size: 42px;
    }
}
