:root {
    --color-primary: #7c3aed;
    --color-primary-dark: #5b21b6;
    --color-accent: #ec4899;
    --color-accent-soft: #fce7f3;
    --color-text: #111827;
    --color-muted: #6b7280;
    --color-soft: #f8f5ff;
    --color-line: #eee7ff;
    --shadow-card: 0 18px 45px rgba(88, 28, 135, 0.12);
    --shadow-hover: 0 24px 60px rgba(88, 28, 135, 0.2);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--color-text);
    background: #ffffff;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

body.nav-open {
    overflow: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(124, 58, 237, 0.12);
    transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 12px 35px rgba(88, 28, 135, 0.12);
    background: rgba(255, 255, 255, 0.98);
}

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

.header-inner {
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.35);
}

.brand-text {
    font-size: 22px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.nav-link,
.mobile-nav-link {
    font-weight: 700;
    color: #374151;
    border-radius: 999px;
    transition: all 0.22s ease;
}

.nav-link {
    padding: 10px 16px;
}

.nav-link:hover,
.nav-link.active,
.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--color-primary);
    background: #f3e8ff;
}

.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: #f5f3ff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.mobile-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--color-primary);
}

.mobile-nav {
    display: none;
    padding: 12px 16px 18px;
    border-top: 1px solid var(--color-line);
    background: #ffffff;
}

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

.mobile-nav-link {
    display: block;
    padding: 14px 16px;
}

.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #faf5ff 0%, #fdf2f8 48%, #f5f3ff 100%);
    min-height: 680px;
}

.hero-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 999px;
    filter: blur(50px);
    opacity: 0.28;
}

.hero-glow-left {
    top: 80px;
    left: -120px;
    background: #a855f7;
}

.hero-glow-right {
    right: -120px;
    bottom: -80px;
    background: #ec4899;
}

.hero-inner {
    position: relative;
    padding: 78px 0 96px;
}

.hero-slide {
    display: none;
    grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.7fr);
    gap: 56px;
    align-items: center;
    min-height: 500px;
}

.hero-slide.active {
    display: grid;
    animation: heroFade 0.65s ease both;
}

@keyframes heroFade {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.eyebrow,
.page-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--color-primary);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.1);
    font-weight: 800;
    font-size: 14px;
}

.hero-copy h1 {
    margin: 22px 0 18px;
    font-size: clamp(44px, 6vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.06em;
}

.hero-copy p {
    max-width: 720px;
    margin: 0;
    color: #4b5563;
    font-size: 19px;
    line-height: 1.85;
}

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

.hero-tags {
    margin: 22px 0 30px;
}

.hero-tags span,
.card-tags span,
.detail-tags span {
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--color-primary-dark);
    background: #ede9fe;
    font-size: 13px;
    font-weight: 700;
}

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

.primary-button,
.secondary-button,
.text-button,
.filter-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-weight: 800;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.primary-button,
.filter-submit {
    min-height: 50px;
    padding: 0 24px;
    color: #ffffff;
    border: 0;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    box-shadow: 0 16px 35px rgba(124, 58, 237, 0.28);
}

.primary-button:hover,
.filter-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 45px rgba(124, 58, 237, 0.34);
}

.secondary-button {
    min-height: 50px;
    padding: 0 22px;
    color: var(--color-primary);
    background: #ffffff;
    box-shadow: 0 16px 35px rgba(124, 58, 237, 0.12);
}

.secondary-button:hover {
    transform: translateY(-2px);
}

.text-button {
    color: var(--color-primary);
}

.hero-poster {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 34px;
    box-shadow: 0 32px 80px rgba(88, 28, 135, 0.28);
    transform: rotate(2deg);
    background: linear-gradient(135deg, #f3e8ff, #fce7f3);
}

.hero-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.hero-poster:hover img {
    transform: scale(1.05);
}

.hero-play,
.poster-play {
    position: absolute;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    box-shadow: 0 18px 40px rgba(88, 28, 135, 0.38);
}

.hero-play {
    width: 76px;
    height: 76px;
    right: 28px;
    bottom: 28px;
    font-size: 28px;
}

.hero-dots {
    position: absolute;
    left: 0;
    bottom: 48px;
    display: flex;
    gap: 9px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 999px;
    background: rgba(124, 58, 237, 0.22);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.active {
    width: 34px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
}

.quick-search-section {
    margin-top: -34px;
    position: relative;
    z-index: 5;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) 180px 170px auto;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(124, 58, 237, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(18px);
}

.filter-panel label {
    display: grid;
    gap: 6px;
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 800;
}

.filter-panel input,
.filter-panel select {
    width: 100%;
    min-height: 50px;
    padding: 0 14px;
    color: var(--color-text);
    border: 1px solid #e9d5ff;
    border-radius: 16px;
    outline: none;
    background: #ffffff;
}

.filter-panel input:focus,
.filter-panel select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.12);
}

.feature-strip,
.movie-section,
.category-section,
.ranking-page-section,
.detail-content-section,
.watch-section {
    padding: 72px 0;
}

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

.feature-card,
.category-card,
.movie-card,
.ranking-panel,
.detail-info-card,
.detail-article,
.category-preview {
    border: 1px solid rgba(124, 58, 237, 0.1);
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(88, 28, 135, 0.08);
}

.feature-card {
    padding: 26px;
}

.feature-card span,
.section-title span,
.category-preview-head span,
.ranking-head span {
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.feature-card strong {
    display: block;
    margin: 8px 0;
    font-size: 22px;
}

.feature-card p,
.category-card em,
.movie-card p,
.page-hero p,
.detail-article p,
.footer-brand p {
    color: var(--color-muted);
    line-height: 1.75;
}

.soft-bg {
    background: linear-gradient(135deg, #faf5ff, #fff1f8);
}

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

.section-title h2 {
    margin: 6px 0 0;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.section-title a,
.category-preview-head a {
    color: var(--color-primary);
    font-weight: 900;
}

.align-left {
    align-items: flex-start;
}

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

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

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

.movie-card {
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.poster-wrap {
    position: relative;
    display: block;
    overflow: hidden;
    background: linear-gradient(135deg, #f3e8ff, #fce7f3);
}

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

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

.poster-year {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 10px;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 900;
    font-size: 12px;
    background: rgba(17, 24, 39, 0.68);
    backdrop-filter: blur(12px);
}

.poster-play {
    right: 12px;
    bottom: 12px;
    width: 42px;
    height: 42px;
}

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

.card-meta {
    margin-bottom: 8px;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 900;
}

.movie-card h3 {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.32;
}

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

.movie-card p {
    margin: 0 0 14px;
    font-size: 14px;
}

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

.compact-card h3 {
    font-size: 17px;
}

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

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

.category-card {
    padding: 24px;
    display: grid;
    gap: 10px;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.category-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
}

.category-card strong {
    font-size: 22px;
}

.category-card em {
    font-style: normal;
}

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

.ranking-panel {
    padding: 24px;
    position: sticky;
    top: 96px;
}

.ranking-head h2 {
    margin: 4px 0 18px;
    font-size: 30px;
}

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

.ranking-row {
    display: grid;
    grid-template-columns: 42px 54px minmax(0, 1fr) 22px;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 16px;
    background: #faf5ff;
    transition: background 0.2s ease, transform 0.2s ease;
}

.ranking-row:hover {
    background: #f3e8ff;
    transform: translateX(3px);
}

.rank-number {
    color: var(--color-primary);
    font-weight: 900;
}

.ranking-row img {
    width: 54px;
    height: 72px;
    border-radius: 12px;
    object-fit: cover;
    background: #f3e8ff;
}

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

.rank-main strong,
.rank-main em {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.rank-main strong {
    font-size: 15px;
}

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

.rank-arrow {
    color: var(--color-primary);
    font-size: 28px;
}

.page-hero {
    padding: 82px 0 70px;
    background: radial-gradient(circle at top left, rgba(168, 85, 247, 0.22), transparent 36%), linear-gradient(135deg, #faf5ff, #fdf2f8);
}

.page-hero-inner {
    text-align: center;
}

.page-badge {
    margin: 0 auto;
}

.page-hero h1 {
    margin: 18px 0 14px;
    font-size: clamp(42px, 7vw, 68px);
    letter-spacing: -0.05em;
}

.page-hero p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 18px;
}

.stacked-sections {
    display: grid;
    gap: 30px;
}

.category-preview {
    padding: 26px;
}

.category-preview-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: end;
    margin-bottom: 22px;
}

.category-preview-head h2 {
    margin: 6px 0 0;
    font-size: 24px;
    line-height: 1.4;
}

.ranking-page-inner {
    max-width: 980px;
}

.large-ranking-head {
    text-align: center;
    margin-bottom: 24px;
}

.large-ranking-head h2 {
    font-size: 40px;
}

.page-ranking-list .ranking-row {
    grid-template-columns: 54px 64px minmax(0, 1fr) 28px;
    padding: 12px;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: #1f1235;
}

.detail-hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.28;
    filter: blur(2px);
}

.detail-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(31, 18, 53, 0.96), rgba(31, 18, 53, 0.72), rgba(31, 18, 53, 0.9));
}

.detail-hero-inner {
    position: relative;
    z-index: 1;
    padding: 48px 0 72px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
}

.breadcrumb a:hover {
    color: #ffffff;
}

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

.detail-poster {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
    background: linear-gradient(135deg, #f3e8ff, #fce7f3);
}

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

.detail-copy h1 {
    margin: 18px 0;
    font-size: clamp(42px, 6vw, 70px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

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

.detail-tags {
    margin: 20px 0 28px;
}

.detail-tags span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
}

.watch-section {
    background: #130b22;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #000000;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

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

.play-overlay {
    position: absolute;
    inset: 0;
    border: 0;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.68), rgba(88, 28, 135, 0.42));
    display: grid;
    place-items: center;
    align-content: center;
    gap: 12px;
    cursor: pointer;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.play-overlay span {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    font-size: 32px;
}

.play-overlay strong {
    font-size: clamp(24px, 4vw, 42px);
}

.play-overlay em {
    color: rgba(255, 255, 255, 0.78);
    font-style: normal;
}

.player-shell.is-playing .play-overlay {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.detail-article {
    padding: 32px;
}

.detail-article h2,
.detail-info-card h2 {
    margin: 0 0 16px;
    font-size: 28px;
}

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

.detail-article p:last-child {
    margin-bottom: 0;
}

.detail-info-card {
    padding: 28px;
    position: sticky;
    top: 96px;
}

.detail-info-card dl {
    display: grid;
    gap: 12px;
    margin: 0;
}

.detail-info-card dt {
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 900;
}

.detail-info-card dd {
    margin: -6px 0 4px;
    color: var(--color-text);
    font-weight: 800;
    line-height: 1.5;
}

.empty-state {
    display: none;
    margin-top: 24px;
    padding: 32px;
    text-align: center;
    color: var(--color-muted);
    border-radius: var(--radius-lg);
    background: #faf5ff;
}

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

.site-footer {
    color: #ffffff;
    background: linear-gradient(135deg, #3b0764, #831843);
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) 1fr 1fr;
    gap: 36px;
    padding: 56px 0;
}

.footer-logo .brand-mark {
    background: rgba(255, 255, 255, 0.14);
    box-shadow: none;
}

.footer-logo .brand-text {
    color: #ffffff;
    background: none;
}

.footer-brand p {
    max-width: 460px;
    color: rgba(255, 255, 255, 0.72);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.72);
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    padding: 18px 16px;
    text-align: center;
    color: rgba(255, 255, 255, 0.68);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 1080px) {
    .movie-grid,
    .category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .ranking-panel,
    .detail-info-card {
        position: static;
    }
}

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

    .mobile-toggle {
        display: flex;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        gap: 34px;
    }

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

    .hero-inner {
        padding: 54px 0 82px;
    }

    .hero-poster {
        max-width: 420px;
        margin: 0 auto;
        transform: none;
    }

    .hero-dots {
        left: 50%;
        transform: translateX(-50%);
        bottom: 34px;
    }

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

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

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

@media (max-width: 640px) {
    .header-inner,
    .section-inner,
    .footer-inner,
    .hero-inner,
    .page-hero-inner,
    .detail-hero-inner {
        width: min(100% - 24px, 1180px);
    }

    .header-inner {
        height: 66px;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
    }

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

    .hero-copy h1,
    .detail-copy h1,
    .page-hero h1 {
        letter-spacing: -0.04em;
    }

    .hero-copy p,
    .detail-one-line {
        font-size: 16px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .primary-button,
    .secondary-button,
    .text-button {
        width: 100%;
    }

    .movie-grid,
    .featured-grid,
    .compact-grid,
    .category-grid,
    .large-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

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

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

    .movie-card p {
        display: none;
    }

    .card-tags span {
        font-size: 11px;
    }

    .feature-strip,
    .movie-section,
    .category-section,
    .ranking-page-section,
    .detail-content-section,
    .watch-section {
        padding: 48px 0;
    }

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

    .category-card {
        padding: 18px;
    }

    .category-card strong {
        font-size: 18px;
    }

    .ranking-row,
    .page-ranking-list .ranking-row {
        grid-template-columns: 38px 48px minmax(0, 1fr) 18px;
        gap: 9px;
    }

    .ranking-row img {
        width: 48px;
        height: 64px;
    }

    .detail-article,
    .detail-info-card,
    .ranking-panel,
    .category-preview {
        padding: 20px;
    }

    .play-overlay span {
        width: 68px;
        height: 68px;
        font-size: 26px;
    }
}
