:root {
    --red: #dc2626;
    --orange: #f97316;
    --amber: #f59e0b;
    --rose: #fff1f2;
    --paper: #ffffff;
    --ink: #111827;
    --muted: #6b7280;
    --soft: #fef3c7;
    --line: rgba(17, 24, 39, 0.10);
    --shadow: 0 20px 45px rgba(127, 29, 29, 0.14);
    --shadow-strong: 0 28px 70px rgba(127, 29, 29, 0.22);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: linear-gradient(135deg, #fff7ed 0%, #fff1f2 45%, #fffbeb 100%);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select {
    font: inherit;
}

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

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

.container {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: 0 8px 22px rgba(127, 29, 29, 0.08);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    gap: 22px;
}

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

.brand-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #ffffff;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--red), var(--orange), var(--amber));
    box-shadow: 0 14px 28px rgba(220, 38, 38, 0.28);
}

.brand-text strong {
    display: block;
    font-size: clamp(18px, 3vw, 26px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: transparent;
    background: linear-gradient(90deg, var(--red), var(--orange), var(--amber));
    -webkit-background-clip: text;
    background-clip: text;
}

.brand-text small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 12px;
    color: #374151;
    font-weight: 700;
    transition: 0.25s ease;
}

.site-nav a:hover,
.site-nav a.active {
    color: #ffffff;
    background: linear-gradient(90deg, var(--red), var(--orange));
    box-shadow: 0 12px 24px rgba(220, 38, 38, 0.18);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    color: var(--red);
    background: #fee2e2;
}

.hero {
    position: relative;
    min-height: 610px;
    overflow: hidden;
    isolation: isolate;
    background: radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.34), transparent 36%), linear-gradient(120deg, #b91c1c 0%, #ea580c 52%, #f59e0b 100%);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.18), transparent 46%);
}

.hero-slides {
    position: relative;
    min-height: 610px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.72fr);
    align-items: center;
    gap: clamp(24px, 5vw, 72px);
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
    padding: 74px 0 92px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-slide::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background-image: linear-gradient(90deg, rgba(127, 29, 29, 0.92), rgba(194, 65, 12, 0.78), rgba(245, 158, 11, 0.56)), var(--hero-image);
    background-size: cover;
    background-position: center;
    filter: saturate(1.08);
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.hero-copy {
    color: #ffffff;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    color: #ffffff;
    font-weight: 800;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.20);
}

.hero h1,
.hero h2 {
    margin: 22px 0 16px;
    max-width: 760px;
    font-size: clamp(40px, 7vw, 78px);
    line-height: 0.95;
    letter-spacing: -0.07em;
    font-weight: 950;
}

.hero h1 span,
.hero h2 span {
    color: #fde68a;
}

.hero-copy p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.90);
    font-size: clamp(16px, 2vw, 21px);
    line-height: 1.8;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border: 0;
    border-radius: 14px;
    font-weight: 900;
    transition: 0.25s ease;
}

.button.primary {
    color: var(--red);
    background: #ffffff;
    box-shadow: 0 18px 34px rgba(127, 29, 29, 0.18);
}

.button.secondary {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(12px);
}

.button.dark {
    color: #ffffff;
    background: linear-gradient(90deg, var(--red), var(--orange));
    box-shadow: 0 14px 28px rgba(220, 38, 38, 0.20);
}

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

.hero-poster {
    position: relative;
    border-radius: 28px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(16px);
    box-shadow: 0 34px 90px rgba(69, 10, 10, 0.35);
}

.hero-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 22px;
}

.hero-meta-card {
    position: absolute;
    left: -24px;
    right: 24px;
    bottom: 24px;
    display: grid;
    gap: 4px;
    padding: 16px;
    color: #ffffff;
    border-radius: 18px;
    background: rgba(17, 24, 39, 0.70);
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
}

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

.hero-meta-card span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
}

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

.hero-controls button,
.hero-dot {
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(10px);
    transition: 0.25s ease;
}

.hero-controls button {
    width: 42px;
    height: 42px;
    font-weight: 900;
}

.hero-dot {
    width: 12px;
    height: 12px;
    padding: 0;
}

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

.section {
    padding: clamp(44px, 8vw, 84px) 0;
}

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

.section-eyebrow {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    color: var(--red);
    background: #fee2e2;
    font-size: 13px;
    font-weight: 900;
}

.section h2,
.section-title {
    margin: 8px 0 0;
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: -0.04em;
    font-weight: 950;
}

.section-head p,
.lead {
    margin: 10px 0 0;
    max-width: 720px;
    color: var(--muted);
    line-height: 1.8;
}

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

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

.movie-card a {
    display: grid;
    height: 100%;
    overflow: hidden;
    border-radius: 22px;
    background: var(--paper);
    box-shadow: var(--shadow);
    transition: 0.28s ease;
}

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

.poster-frame {
    position: relative;
    overflow: hidden;
    display: block;
    background: linear-gradient(135deg, #fee2e2, #fed7aa);
}

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

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

.poster-shade {
    position: absolute;
    inset: auto 0 0;
    height: 55%;
    background: linear-gradient(0deg, rgba(17, 24, 39, 0.72), transparent);
}

.type-pill,
.year-pill,
.rank-badge {
    position: absolute;
    top: 12px;
    z-index: 2;
    padding: 6px 10px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
}

.type-pill {
    left: 12px;
    background: linear-gradient(90deg, var(--red), var(--orange));
}

.year-pill {
    right: 12px;
    background: rgba(0, 0, 0, 0.58);
    backdrop-filter: blur(10px);
}

.rank-badge {
    left: 12px;
    top: 48px;
    background: rgba(245, 158, 11, 0.94);
}

.poster-play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    color: var(--red);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.88);
    transition: 0.25s ease;
}

.movie-card a:hover .poster-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.movie-card-body {
    display: grid;
    gap: 10px;
    padding: 18px;
}

.movie-card-body strong {
    display: -webkit-box;
    overflow: hidden;
    min-height: 48px;
    color: #111827;
    font-size: 18px;
    font-weight: 950;
    line-height: 1.32;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-card-body em {
    color: var(--muted);
    font-size: 13px;
    font-style: normal;
}

.movie-card-body p {
    display: -webkit-box;
    overflow: hidden;
    min-height: 44px;
    margin: 0;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.55;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.chip-row span,
.detail-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 9px;
    border-radius: 999px;
    color: #b45309;
    background: #fffbeb;
    font-size: 12px;
    font-weight: 800;
}

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

.category-card {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 12px;
    min-height: 190px;
    padding: 22px;
    border-radius: 24px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--red), var(--orange), var(--amber));
    box-shadow: var(--shadow);
    transition: 0.28s ease;
}

.category-card:nth-child(2n) {
    background: linear-gradient(135deg, #ea580c, #f59e0b);
}

.category-card:nth-child(3n) {
    background: linear-gradient(135deg, #be123c, #f97316);
}

.category-card::after {
    content: "";
    position: absolute;
    right: -24px;
    bottom: -42px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

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

.category-card strong {
    position: relative;
    z-index: 1;
    font-size: 22px;
    font-weight: 950;
}

.category-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.65;
}

.category-card span {
    position: relative;
    z-index: 1;
    margin-top: auto;
    font-weight: 900;
}

.band {
    padding: 64px 0;
    color: #ffffff;
    background: linear-gradient(90deg, var(--red), var(--orange), var(--amber));
}

.band-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 40px;
}

.band h2 {
    margin: 0 0 12px;
    font-size: clamp(30px, 5vw, 48px);
    letter-spacing: -0.05em;
}

.band p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.8;
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.stat-box {
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
    text-align: center;
}

.stat-box strong {
    display: block;
    font-size: 32px;
    font-weight: 950;
}

.stat-box span {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.82);
}

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

.rank-row a {
    display: grid;
    grid-template-columns: 58px 92px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 30px rgba(127, 29, 29, 0.10);
    transition: 0.25s ease;
}

.rank-row a:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow);
}

.rank-num {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--red), var(--orange));
    font-weight: 950;
}

.rank-row img {
    width: 92px;
    height: 66px;
    object-fit: cover;
    border-radius: 14px;
}

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

.rank-info strong {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 18px;
    font-weight: 950;
}

.rank-info em {
    display: block;
    color: var(--muted);
    font-size: 13px;
    font-style: normal;
}

.rank-info p {
    overflow: hidden;
    margin: 5px 0 0;
    color: #4b5563;
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    color: var(--red);
    background: #fee2e2;
    font-weight: 900;
}

.page-hero {
    padding: 70px 0 44px;
    color: #ffffff;
    background: radial-gradient(circle at 80% 10%, rgba(253, 230, 138, 0.28), transparent 30%), linear-gradient(120deg, #991b1b, #ea580c, #f59e0b);
}

.page-hero h1 {
    margin: 0;
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.02;
    letter-spacing: -0.06em;
}

.page-hero p {
    max-width: 820px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
    line-height: 1.8;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) 180px 180px;
    gap: 14px;
    padding: 18px;
    margin: -28px auto 34px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
}

.filter-panel label {
    display: grid;
    gap: 8px;
    color: #374151;
    font-size: 13px;
    font-weight: 900;
}

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

.filter-panel input:focus,
.filter-panel select:focus {
    border-color: rgba(220, 38, 38, 0.55);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.10);
}

.empty-state {
    display: none;
    padding: 34px;
    border-radius: 22px;
    color: #7f1d1d;
    background: #fee2e2;
    font-weight: 900;
    text-align: center;
}

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

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

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    font-weight: 800;
}

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

.player-section {
    padding: 34px 0 60px;
    color: #ffffff;
    background: linear-gradient(120deg, #111827, #7f1d1d 45%, #ea580c 100%);
}

.player-title {
    margin: 18px 0 26px;
    max-width: 980px;
    font-size: clamp(34px, 6vw, 62px);
    line-height: 1.04;
    letter-spacing: -0.06em;
    font-weight: 950;
}

.player-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.5fr);
    gap: 24px;
    align-items: start;
}

.video-shell {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #020617;
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
}

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

.play-cover {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    color: #ffffff;
    background: #020617;
    cursor: pointer;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.play-cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.58;
    filter: saturate(1.05);
}

.play-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.18), transparent 34%), linear-gradient(0deg, rgba(0, 0, 0, 0.62), transparent 70%);
}

.play-cover span,
.play-cover strong {
    position: relative;
    z-index: 1;
}

.play-cover span {
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    margin-bottom: 14px;
    border-radius: 999px;
    color: var(--red);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
    font-size: 28px;
}

.play-cover strong {
    display: block;
    max-width: min(82%, 680px);
    font-size: clamp(22px, 4vw, 42px);
    font-weight: 950;
    letter-spacing: -0.04em;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

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

.side-card {
    display: grid;
    gap: 16px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(14px);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.side-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 18px;
}

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

.side-meta div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.side-meta span {
    color: rgba(255, 255, 255, 0.68);
}

.side-meta strong {
    text-align: right;
}

.content-card {
    padding: clamp(24px, 4vw, 38px);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
}

.content-card h2 {
    margin: 0 0 18px;
    font-size: clamp(26px, 4vw, 36px);
    letter-spacing: -0.04em;
}

.content-card p {
    margin: 0 0 16px;
    color: #374151;
    line-height: 1.9;
}

.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.site-footer {
    padding-top: 52px;
    color: #d1d5db;
    background: linear-gradient(135deg, #111827, #1f2937 50%, #111827);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 34px;
}

.footer-brand {
    color: #ffffff;
    font-size: 24px;
    font-weight: 950;
}

.site-footer p {
    max-width: 440px;
    color: #9ca3af;
    line-height: 1.8;
}

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

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

.footer-links a {
    color: #d1d5db;
    transition: 0.2s ease;
}

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

.footer-bottom {
    margin-top: 40px;
    padding: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    color: #9ca3af;
    text-align: center;
}

@media (max-width: 980px) {
    .site-nav {
        position: absolute;
        top: 76px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .nav-toggle {
        display: inline-grid;
        place-items: center;
    }

    .hero,
    .hero-slides {
        min-height: 760px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        padding-top: 46px;
    }

    .hero-poster {
        max-width: 360px;
        margin-inline: auto;
    }

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

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

    .band-inner,
    .player-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 620px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .brand-text small {
        display: none;
    }

    .hero,
    .hero-slides {
        min-height: 720px;
    }

    .hero-meta-card {
        left: 12px;
        right: 12px;
    }

    .section-head {
        display: block;
    }

    .movie-grid,
    .category-grid,
    .stat-row {
        grid-template-columns: 1fr;
    }

    .rank-row a {
        grid-template-columns: 44px 74px minmax(0, 1fr);
        gap: 12px;
    }

    .rank-action {
        display: none;
    }

    .rank-row img {
        width: 74px;
        height: 56px;
    }

    .play-cover span {
        width: 64px;
        height: 64px;
    }
}
