:root {
    --color-red: #dc2626;
    --color-red-dark: #b91c1c;
    --color-red-deep: #7f1d1d;
    --color-text: #111827;
    --color-muted: #6b7280;
    --color-soft: #f9fafb;
    --color-border: #e5e7eb;
    --color-dark: #111827;
    --shadow-sm: 0 6px 20px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 16px 38px rgba(15, 23, 42, 0.12);
    --shadow-xl: 0 28px 70px rgba(15, 23, 42, 0.26);
    --radius: 18px;
    --radius-lg: 28px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--color-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    background: #ffffff;
    line-height: 1.65;
}

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

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

button,
input {
    font: inherit;
}

.site-container {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(229, 231, 235, 0.9);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(16px);
}

.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 68px;
    gap: 24px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text);
    font-size: 20px;
    font-weight: 800;
    white-space: nowrap;
}

.logo-mark {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-red), var(--color-red-deep));
    border-radius: 12px;
    box-shadow: 0 12px 26px rgba(220, 38, 38, 0.28);
    font-size: 14px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    color: #374151;
    font-size: 15px;
    font-weight: 600;
}

.main-nav a,
.mobile-nav a {
    transition: color 0.25s ease;
}

.main-nav a:hover,
.main-nav a.is-active,
.mobile-nav a:hover,
.mobile-nav a.is-active {
    color: var(--color-red);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 0;
    background: #f3f4f6;
    border-radius: 12px;
    cursor: pointer;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: #111827;
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
    padding: 0 0 16px;
}

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

.hero {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    background: #111827;
}

.hero-slider {
    position: relative;
    min-height: 650px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 380px);
    align-items: center;
    gap: 56px;
    padding: 84px max(24px, calc((100vw - var(--container)) / 2)) 96px;
    background-position: center;
    background-size: cover;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

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

.hero-copy {
    max-width: 780px;
    color: #ffffff;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--color-red);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-copy .eyebrow,
.page-hero .eyebrow,
.rankings-hero .eyebrow {
    color: #fecaca;
}

.hero-copy h1,
.hero-copy h2 {
    margin: 0;
    max-width: 840px;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.hero-copy h3 {
    margin: 16px 0 0;
    color: #fecaca;
    font-size: clamp(22px, 3vw, 34px);
    line-height: 1.2;
}

.hero-copy p {
    max-width: 700px;
    margin: 20px 0 0;
    color: #e5e7eb;
    font-size: 18px;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 12px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 12px;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
    color: #ffffff;
    background: var(--color-red);
    box-shadow: 0 18px 40px rgba(220, 38, 38, 0.32);
}

.btn-primary:hover {
    background: var(--color-red-dark);
}

.btn-ghost {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.12);
}

.btn-light {
    color: #111827;
    background: #ffffff;
}

.hero-poster {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: var(--shadow-xl);
    transform: rotate(2deg);
    aspect-ratio: 2 / 3;
    background: linear-gradient(135deg, #fef2f2, #111827);
}

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

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

.hero-poster span {
    position: absolute;
    right: 16px;
    top: 16px;
    display: inline-flex;
    padding: 7px 12px;
    color: #ffffff;
    background: var(--color-red);
    border-radius: 999px;
    font-weight: 900;
}

.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 34px;
    z-index: 3;
    display: flex;
    transform: translateX(-50%);
    gap: 10px;
}

.hero-dot {
    width: 34px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    cursor: pointer;
}

.hero-dot.is-active {
    background: #ffffff;
}

.quick-search {
    margin-top: -46px;
    position: relative;
    z-index: 4;
}

.search-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(280px, 1fr);
    align-items: center;
    gap: 28px;
    padding: 28px;
    background: #ffffff;
    border-radius: 22px;
    box-shadow: var(--shadow-md);
}

.search-panel h2 {
    margin: 0;
    font-size: 24px;
    line-height: 1.25;
}

.search-form {
    display: flex;
    gap: 12px;
}

.search-form input,
.inline-search input {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    outline: none;
    background: #ffffff;
    transition: border 0.25s ease, box-shadow 0.25s ease;
}

.search-form input:focus,
.inline-search input:focus {
    border-color: var(--color-red);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

.search-form button {
    min-width: 110px;
    border: 0;
    color: #ffffff;
    background: var(--color-red);
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
}

.site-section {
    padding: 72px 0;
}

.section-muted {
    background: linear-gradient(180deg, #f9fafb, #ffffff);
}

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

.section-heading h2,
.list-tools h2,
.feature-panel h2,
.detail-content h1,
.page-hero h1 {
    margin: 0;
    color: var(--color-text);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.18;
    font-weight: 900;
    letter-spacing: -0.025em;
}

.section-link {
    display: inline-flex;
    align-items: center;
    color: var(--color-red);
    font-weight: 800;
}

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

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

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

.movie-card-link {
    display: block;
    height: 100%;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.movie-card-link:hover {
    transform: translateY(-5px);
    border-color: rgba(220, 38, 38, 0.35);
    box-shadow: var(--shadow-md);
}

.movie-poster {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    background: linear-gradient(135deg, #fee2e2, #111827);
}

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

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

.movie-rating {
    position: absolute;
    right: 10px;
    top: 10px;
    display: inline-flex;
    padding: 4px 9px;
    color: #ffffff;
    background: rgba(220, 38, 38, 0.94);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.movie-card-body {
    display: grid;
    gap: 6px;
    padding: 13px;
}

.movie-card-title {
    overflow: hidden;
    color: #111827;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.movie-card-meta,
.movie-card-desc {
    color: var(--color-muted);
    font-size: 13px;
}

.movie-card-desc {
    display: -webkit-box;
    overflow: hidden;
    min-height: 42px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

.category-card {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 220px;
    border-radius: 22px;
    background: #111827;
    box-shadow: var(--shadow-sm);
}

.category-card img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    opacity: 0.72;
    transition: transform 0.45s ease, opacity 0.45s ease;
}

.category-card:hover img {
    transform: scale(1.08);
    opacity: 0.92;
}

.category-card span {
    position: absolute;
    inset: auto 0 0;
    display: grid;
    gap: 8px;
    padding: 22px;
    color: #ffffff;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.88));
}

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

.category-card em {
    display: -webkit-box;
    overflow: hidden;
    color: #f3f4f6;
    font-size: 13px;
    font-style: normal;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

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

.rank-item {
    display: grid;
    grid-template-columns: 54px 58px minmax(0, 1fr) 58px;
    align-items: center;
    gap: 14px;
    padding: 12px;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rank-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

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

.rank-cover {
    overflow: hidden;
    width: 58px;
    height: 80px;
    border-radius: 10px;
    background: linear-gradient(135deg, #fee2e2, #111827);
}

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

.rank-info {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.rank-info strong {
    overflow: hidden;
    font-size: 16px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-info em {
    overflow: hidden;
    color: var(--color-muted);
    font-size: 13px;
    font-style: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-score {
    justify-self: end;
    color: #ffffff;
    padding: 5px 10px;
    background: var(--color-red);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
}

.feature-panel,
.side-card,
.detail-content,
.category-overview-card a {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 22px;
    box-shadow: var(--shadow-sm);
}

.feature-panel {
    position: sticky;
    top: 92px;
    padding: 30px;
    background: linear-gradient(135deg, #ffffff, #fef2f2);
}

.feature-panel p {
    color: var(--color-muted);
}

.feature-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.feature-links a,
.side-links a {
    display: inline-flex;
    padding: 10px 14px;
    color: var(--color-red);
    background: #fee2e2;
    border-radius: 12px;
    font-weight: 800;
}

.page-hero {
    padding: 76px 0;
    color: #ffffff;
    background: linear-gradient(135deg, #111827, #7f1d1d);
    background-position: center;
    background-size: cover;
}

.page-hero h1 {
    color: #ffffff;
}

.page-hero p {
    max-width: 760px;
    color: #f3f4f6;
    font-size: 18px;
}

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

.category-overview-card a {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 20px;
    padding: 18px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

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

.category-covers img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 12px;
    background: linear-gradient(135deg, #fee2e2, #111827);
}

.category-overview-body {
    display: grid;
    align-content: center;
    gap: 10px;
}

.category-overview-body strong {
    font-size: 26px;
    line-height: 1.1;
    font-weight: 900;
}

.category-overview-body em {
    color: var(--color-red);
    font-style: normal;
    font-weight: 800;
}

.category-overview-body span {
    color: var(--color-muted);
}

.list-tools {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 28px;
}

.sticky-tools {
    position: sticky;
    top: 68px;
    z-index: 6;
    align-items: center;
    padding: 18px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--color-border);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
}

.inline-search {
    display: grid;
    gap: 8px;
    min-width: 300px;
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 800;
}

.wide-search {
    flex: 1;
    min-width: min(100%, 420px);
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-chip {
    min-height: 38px;
    padding: 0 13px;
    color: #374151;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    cursor: pointer;
}

.filter-chip.is-active {
    color: #ffffff;
    background: var(--color-red);
    border-color: var(--color-red);
}

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

.top-rank-card {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    border-radius: 26px;
    background: #111827;
    box-shadow: var(--shadow-md);
}

.top-rank-card img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    opacity: 0.74;
    transition: transform 0.45s ease;
}

.top-rank-card:hover img {
    transform: scale(1.07);
}

.top-rank-card strong,
.top-rank-card em,
.rank-badge {
    position: absolute;
    left: 24px;
    right: 24px;
    color: #ffffff;
}

.rank-badge {
    top: 22px;
    right: auto;
    display: inline-flex;
    padding: 6px 12px;
    background: var(--color-red);
    border-radius: 999px;
    font-weight: 900;
}

.top-rank-card strong {
    bottom: 56px;
    font-size: 26px;
    line-height: 1.16;
}

.top-rank-card em {
    bottom: 26px;
    color: #e5e7eb;
    font-style: normal;
}

.rank-list-large {
    gap: 10px;
}

.rank-list-large .rank-item {
    grid-template-columns: 64px 68px minmax(0, 1fr) 72px;
}

.detail-hero {
    padding: 24px 0;
    background: #f9fafb;
    border-bottom: 1px solid var(--color-border);
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--color-muted);
    font-size: 14px;
}

.breadcrumbs a {
    color: var(--color-red);
    font-weight: 800;
}

.detail-section {
    padding-top: 34px;
}

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

.detail-main {
    display: grid;
    gap: 22px;
    min-width: 0;
}

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

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

.play-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 14px;
    color: #ffffff;
    background: radial-gradient(circle at center, rgba(220, 38, 38, 0.44), rgba(0, 0, 0, 0.68));
    border: 0;
    cursor: pointer;
    font-size: 18px;
    font-weight: 900;
}

.play-overlay.is-hidden {
    display: none;
}

.play-icon {
    display: grid;
    width: 82px;
    height: 82px;
    place-items: center;
    padding-left: 5px;
    color: #ffffff;
    background: var(--color-red);
    border-radius: 999px;
    box-shadow: 0 24px 60px rgba(220, 38, 38, 0.46);
    font-size: 30px;
}

.detail-content {
    padding: 30px;
}

.detail-content h1 {
    margin-bottom: 14px;
}

.detail-content h2 {
    margin: 30px 0 10px;
    font-size: 24px;
    line-height: 1.25;
}

.detail-content p {
    margin: 0;
    color: #374151;
    font-size: 16px;
}

.detail-content .lead-text {
    margin-top: 22px;
    color: #111827;
    font-size: 19px;
    font-weight: 700;
}

.detail-tags span {
    color: #7f1d1d;
    background: #fee2e2;
    border-color: #fecaca;
}

.detail-side {
    position: sticky;
    top: 92px;
    display: grid;
    gap: 18px;
}

.side-poster {
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(135deg, #fee2e2, #111827);
    box-shadow: var(--shadow-md);
}

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

.side-card {
    padding: 22px;
}

.side-card h2 {
    margin: 0 0 14px;
    font-size: 20px;
}

.side-card dl {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 10px 14px;
    margin: 0;
    font-size: 14px;
}

.side-card dt {
    color: var(--color-muted);
}

.side-card dd {
    margin: 0;
    min-width: 0;
    color: #111827;
    font-weight: 700;
}

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

.side-links h2 {
    margin-bottom: 4px;
}

.site-footer {
    color: #ffffff;
    background: linear-gradient(135deg, #111827, #1f2937);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 32px;
    padding: 56px 0 34px;
}

.site-footer h2 {
    margin: 0 0 14px;
    font-size: 18px;
}

.site-footer p,
.site-footer li,
.footer-bottom {
    color: #d1d5db;
    font-size: 14px;
}

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

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.is-hidden-card {
    display: none !important;
}

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

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

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

    .feature-panel,
    .detail-side {
        position: static;
    }

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

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

    .menu-toggle {
        display: inline-flex;
    }

    .hero,
    .hero-slider {
        min-height: 780px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 54px 22px 90px;
    }

    .hero-poster {
        max-width: 260px;
        justify-self: center;
    }

    .search-panel,
    .list-tools,
    .sticky-tools {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

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

    .search-form button {
        min-height: 48px;
    }

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

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

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

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .inline-search {
        min-width: 0;
    }
}

@media (max-width: 520px) {
    .site-container {
        width: min(100% - 24px, var(--container));
    }

    .hero,
    .hero-slider {
        min-height: 820px;
    }

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

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

    .rank-item,
    .rank-list-large .rank-item {
        grid-template-columns: 42px 52px minmax(0, 1fr);
    }

    .rank-score {
        display: none;
    }

    .detail-content {
        padding: 22px;
    }

    .play-icon {
        width: 66px;
        height: 66px;
        font-size: 24px;
    }
}
