:root {
    --slate-950: #020617;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;
    --cyan-600: #0891b2;
    --cyan-500: #06b6d4;
    --cyan-400: #22d3ee;
    --blue-500: #3b82f6;
    --yellow-400: #facc15;
    --white: #ffffff;
    --shadow-soft: 0 20px 45px rgba(15, 23, 42, 0.14);
    --shadow-card: 0 10px 28px rgba(15, 23, 42, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    color: var(--slate-800);
    background: linear-gradient(180deg, var(--slate-50), var(--slate-100));
    min-height: 100vh;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    color: var(--white);
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.98), rgba(15, 23, 42, 0.98));
    box-shadow: 0 10px 30px rgba(2, 6, 23, 0.25);
    backdrop-filter: blur(12px);
}

.site-nav {
    max-width: 1280px;
    height: 64px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.brand-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(135deg, var(--cyan-400), var(--blue-500));
    box-shadow: 0 0 24px rgba(34, 211, 238, 0.45);
}

.brand-text {
    font-size: 22px;
    background: linear-gradient(90deg, var(--cyan-400), #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 15px;
}

.nav-link,
.mobile-link {
    color: rgba(255, 255, 255, 0.88);
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
    color: var(--cyan-400);
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.mobile-menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    border-radius: 2px;
    background: var(--white);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu-button.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-button.open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-panel {
    display: none;
    padding: 12px 24px 20px;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    background: rgba(15, 23, 42, 0.98);
}

.mobile-panel.open {
    display: grid;
    gap: 12px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero {
    position: relative;
    height: 70vh;
    min-height: 540px;
    overflow: hidden;
    background: var(--slate-950);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

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

.hero-slide.active img {
    animation: heroZoom 9s ease forwards;
}

@keyframes heroZoom {
    from {
        transform: scale(1.02);
    }
    to {
        transform: scale(1.1);
    }
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.98), rgba(2, 6, 23, 0.6) 44%, rgba(2, 6, 23, 0.14));
}

.hero-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 56px 0 74px;
    color: var(--white);
}

.hero-copy {
    max-width: 820px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 7px 13px;
    border: 1px solid rgba(34, 211, 238, 0.45);
    border-radius: 999px;
    color: var(--cyan-400);
    background: rgba(8, 145, 178, 0.12);
    backdrop-filter: blur(8px);
    font-size: 14px;
    font-weight: 700;
}

.hero h1 {
    margin: 0 0 18px;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1.05;
    font-weight: 900;
    text-shadow: 0 14px 30px rgba(0, 0, 0, 0.55);
}

.hero p {
    max-width: 760px;
    margin: 0 0 24px;
    color: rgba(226, 232, 240, 0.94);
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.7;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.hero-meta span {
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.56);
    color: rgba(255, 255, 255, 0.92);
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 12px 22px;
    border-radius: 12px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
    color: var(--white);
    background: linear-gradient(135deg, var(--cyan-500), var(--blue-500));
    box-shadow: 0 16px 34px rgba(6, 182, 212, 0.33);
}

.secondary-button {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.primary-button:hover,
.secondary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(6, 182, 212, 0.28);
}

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

.hero-arrow {
    position: absolute;
    top: 50%;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: rgba(0, 0, 0, 0.42);
    cursor: pointer;
    transform: translateY(-50%);
    transition: background 0.2s ease;
}

.hero-arrow:hover {
    background: rgba(0, 0, 0, 0.72);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 28px;
    display: flex;
    gap: 9px;
    transform: translateX(-50%);
}

.hero-dots button {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

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

.page-block {
    padding: 52px 0;
}

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

.section-heading h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: var(--slate-800);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
}

.section-heading h2 span {
    width: 5px;
    height: 34px;
    border-radius: 99px;
    background: var(--cyan-500);
}

.section-action {
    color: var(--cyan-600);
    font-weight: 800;
}

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

.feature-card {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: var(--shadow-card);
    background: var(--slate-800);
}

.feature-card:first-child {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 464px;
}

.feature-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-card:hover img,
.movie-card:hover img,
.movie-row:hover img,
.related-card:hover img,
.category-card:hover img {
    transform: scale(1.1);
}

.feature-gradient,
.poster-shade,
.category-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.32) 56%, rgba(2, 6, 23, 0.06));
}

.feature-text {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 18px;
    color: var(--white);
}

.feature-text strong {
    display: block;
    margin-bottom: 6px;
    font-size: 20px;
    font-weight: 900;
}

.feature-card:first-child .feature-text strong {
    font-size: 30px;
}

.feature-text small {
    color: rgba(226, 232, 240, 0.92);
    font-weight: 700;
}

.scroll-row {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    padding: 4px 0 18px;
    scroll-snap-type: x mandatory;
}

.scroll-row::-webkit-scrollbar {
    height: 8px;
}

.scroll-row::-webkit-scrollbar-thumb {
    border-radius: 99px;
    background: rgba(100, 116, 139, 0.25);
}

.scroll-row .movie-card {
    flex: 0 0 240px;
    scroll-snap-align: start;
}

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

.movie-card {
    min-width: 0;
}

.poster-wrap {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: var(--shadow-card);
    background: linear-gradient(135deg, var(--slate-800), var(--slate-900));
}

.poster-wrap img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.rating-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    padding: 5px 8px;
    border-radius: 8px;
    color: var(--white);
    background: rgba(0, 0, 0, 0.72);
    font-size: 12px;
    font-weight: 900;
}

.poster-copy {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 44px 14px 14px;
    color: var(--white);
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.poster-wrap:hover .poster-copy {
    opacity: 1;
    transform: translateY(0);
}

.poster-copy strong {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 1.35;
}

.poster-copy small {
    color: rgba(226, 232, 240, 0.92);
}

.card-body h3 {
    margin: 12px 0 6px;
    color: var(--slate-800);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.4;
}

.card-body h3 a:hover {
    color: var(--cyan-600);
}

.card-body p {
    margin: 0 0 10px;
    color: var(--slate-600);
    font-size: 13px;
    line-height: 1.6;
}

.mini-tags,
.detail-tags,
.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mini-tags span,
.detail-tags span,
.category-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 4px 9px;
    border-radius: 999px;
    color: var(--slate-700);
    background: var(--slate-100);
    font-size: 12px;
    font-weight: 700;
}

.region-grid,
.year-grid,
.category-overview {
    display: grid;
    gap: 24px;
}

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

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

.panel {
    padding: 24px;
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow-card);
}

.panel h3 {
    margin: 0 0 18px;
    color: var(--slate-700);
    font-size: 22px;
}

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

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

.timeline-group {
    position: relative;
    padding-left: 26px;
    border-left: 4px solid var(--cyan-500);
}

.timeline-group::before {
    content: "";
    position: absolute;
    left: -12px;
    top: 0;
    width: 20px;
    height: 20px;
    border: 4px solid var(--white);
    border-radius: 50%;
    background: var(--cyan-500);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.35);
}

.timeline-group h3 {
    margin: 0 0 16px;
    color: var(--slate-700);
    font-size: 22px;
}

.movie-list {
    display: grid;
    gap: 16px;
}

.movie-row {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px;
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-card);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.movie-row:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.rank-num {
    flex: 0 0 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(135deg, var(--cyan-500), var(--blue-500));
    font-weight: 900;
}

.row-poster {
    flex: 0 0 132px;
    overflow: hidden;
    border-radius: 12px;
    background: var(--slate-800);
}

.row-poster img {
    width: 132px;
    height: 82px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.row-main {
    min-width: 0;
}

.row-main h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 900;
}

.row-main h3 a:hover {
    color: var(--cyan-600);
}

.row-main p {
    margin: 0;
    color: var(--slate-600);
    line-height: 1.6;
}

.row-meta,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
    color: var(--slate-500);
    font-size: 14px;
    font-weight: 700;
}

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

.category-card {
    position: relative;
    min-height: 210px;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: var(--shadow-card);
    background: var(--slate-900);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card-text {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    color: var(--white);
}

.category-card-text h2,
.category-card-text h3 {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 900;
}

.category-card-text p {
    margin: 0;
    color: rgba(226, 232, 240, 0.92);
    line-height: 1.6;
}

.page-hero {
    padding: 64px 0 34px;
    color: var(--white);
    background: radial-gradient(circle at top left, rgba(6, 182, 212, 0.32), transparent 34%), linear-gradient(135deg, var(--slate-900), var(--slate-800));
}

.page-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 900;
}

.page-hero p {
    max-width: 780px;
    margin: 0;
    color: rgba(226, 232, 240, 0.92);
    font-size: 18px;
    line-height: 1.8;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
    color: rgba(226, 232, 240, 0.8);
    font-size: 14px;
}

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

.pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 44px;
}

.pagination a,
.pagination span {
    min-width: 42px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid var(--slate-200);
    background: var(--white);
    text-align: center;
    font-weight: 800;
}

.pagination a:hover,
.pagination .current {
    color: var(--white);
    border-color: var(--cyan-500);
    background: var(--cyan-500);
}

.detail-shell {
    padding: 36px 0 70px;
}

.detail-card {
    overflow: hidden;
    border-radius: 26px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.player-wrap {
    position: relative;
    background: #000000;
}

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

.play-layer {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: rgba(2, 6, 23, 0.2);
}

.play-layer.hidden {
    display: none;
}

.play-layer img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.62;
}

.play-layer::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.82), rgba(2, 6, 23, 0.2));
}

.play-action {
    position: relative;
    z-index: 2;
    width: 92px;
    height: 92px;
    border: 0;
    border-radius: 50%;
    color: var(--white);
    background: linear-gradient(135deg, var(--cyan-500), var(--blue-500));
    box-shadow: 0 18px 45px rgba(6, 182, 212, 0.4);
    cursor: pointer;
    font-size: 34px;
    text-indent: 5px;
}

.detail-body {
    padding: 34px;
}

.detail-body h1 {
    margin: 0 0 16px;
    color: var(--slate-800);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 900;
    line-height: 1.2;
}

.detail-meta {
    margin: 0 0 24px;
}

.detail-meta span {
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--slate-100);
}

.detail-section {
    margin-top: 30px;
    padding-top: 26px;
    border-top: 1px solid var(--slate-200);
}

.detail-section h2 {
    margin: 0 0 12px;
    color: var(--slate-800);
    font-size: 24px;
    font-weight: 900;
}

.detail-section p {
    margin: 0;
    color: var(--slate-700);
    font-size: 17px;
    line-height: 1.9;
    text-align: justify;
}

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

.related-card {
    min-width: 0;
}

.related-card a:first-child {
    display: block;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    background: var(--slate-900);
}

.related-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.related-card h3 {
    margin: 10px 0 4px;
    color: var(--slate-800);
    font-size: 14px;
    line-height: 1.4;
}

.related-card p {
    margin: 0;
    color: var(--slate-500);
    font-size: 12px;
}

.search-panel {
    display: grid;
    grid-template-columns: 1fr 180px 180px;
    gap: 16px;
    padding: 18px;
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow-card);
}

.search-panel input,
.search-panel select {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--slate-200);
    border-radius: 13px;
    padding: 0 14px;
    color: var(--slate-800);
    background: var(--slate-50);
    outline: none;
}

.search-panel input:focus,
.search-panel select:focus {
    border-color: var(--cyan-500);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.16);
}

.empty-state {
    display: none;
    padding: 64px 24px;
    text-align: center;
    color: var(--slate-500);
    font-size: 18px;
}

.empty-state.visible {
    display: block;
}

.site-footer {
    margin-top: 54px;
    color: rgba(226, 232, 240, 0.9);
    background: linear-gradient(180deg, var(--slate-900), var(--slate-950));
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 52px 24px 38px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 46px;
}

.footer-brand {
    margin-bottom: 16px;
    color: var(--white);
    font-size: 22px;
}

.footer-about p {
    max-width: 560px;
    color: rgba(203, 213, 225, 0.82);
    line-height: 1.8;
}

.site-footer h2 {
    margin: 0 0 16px;
    color: var(--white);
    font-size: 18px;
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.site-footer a:hover {
    color: var(--cyan-400);
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px;
    border-top: 1px solid rgba(148, 163, 184, 0.14);
    color: rgba(148, 163, 184, 0.82);
    text-align: center;
    font-size: 14px;
}

.line-clamp-1,
.line-clamp-2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-1 {
    -webkit-line-clamp: 1;
}

.line-clamp-2 {
    -webkit-line-clamp: 2;
}

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

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

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

    .mobile-menu-button {
        display: block;
    }

    .hero {
        height: 68vh;
        min-height: 500px;
    }

    .hero-arrow {
        display: none;
    }

    .feature-grid,
    .region-grid,
    .year-grid,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .feature-card:first-child {
        grid-column: span 1;
        min-height: 320px;
    }

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

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

@media (max-width: 640px) {
    .site-nav,
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .brand-text {
        font-size: 19px;
    }

    .hero {
        min-height: 520px;
    }

    .hero-content {
        padding-bottom: 58px;
    }

    .hero-meta span {
        font-size: 13px;
    }

    .hero-actions a {
        width: 100%;
    }

    .page-block {
        padding: 38px 0;
    }

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

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

    .movie-row {
        align-items: flex-start;
        gap: 12px;
    }

    .rank-num {
        flex-basis: 32px;
        height: 32px;
    }

    .row-poster {
        flex-basis: 96px;
    }

    .row-poster img {
        width: 96px;
        height: 72px;
    }

    .row-main p {
        display: none;
    }

    .detail-body {
        padding: 22px;
    }

    .play-action {
        width: 72px;
        height: 72px;
        font-size: 28px;
    }
}
