:root {
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-700: #b45309;
    --amber-800: #92400e;
    --amber-900: #78350f;
    --orange-50: #fff7ed;
    --orange-100: #ffedd5;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --blue-50: #eff6ff;
    --cyan-50: #ecfeff;
    --red-500: #ef4444;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-500: #6b7280;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --shadow: 0 20px 45px rgba(120, 53, 15, 0.12);
    --shadow-soft: 0 10px 30px rgba(120, 53, 15, 0.10);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--gray-800);
    background: #fffaf2;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(245, 158, 11, 0.18);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 30px rgba(120, 53, 15, 0.06);
    backdrop-filter: blur(16px);
}

.header-inner {
    width: min(1180px, calc(100% - 32px));
    height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--amber-800);
    font-size: 25px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.brand-icon,
.footer-brand span {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
    border-radius: 14px;
    box-shadow: 0 10px 22px rgba(217, 119, 6, 0.28);
}

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

.nav-link,
.mobile-link {
    color: var(--gray-700);
    font-weight: 700;
    transition: color 0.2s ease, background 0.2s ease;
}

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

.menu-toggle {
    width: 44px;
    height: 44px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 0;
    border-radius: 12px;
    color: var(--gray-700);
    background: transparent;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
}

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

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

.mobile-link {
    padding: 12px 14px;
    border-radius: 12px;
}

.mobile-link:hover,
.mobile-link.active {
    background: var(--amber-50);
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 86px 0;
    background: linear-gradient(135deg, var(--amber-100), var(--orange-100) 54%, #fef9c3);
}

.hero-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(30px);
    opacity: 0.32;
    pointer-events: none;
}

.hero-glow-one {
    top: 28px;
    left: 7%;
    width: 190px;
    height: 190px;
    background: var(--amber-500);
}

.hero-glow-two {
    right: 8%;
    bottom: 30px;
    width: 240px;
    height: 240px;
    background: var(--orange-500);
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 46px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    width: max-content;
    color: var(--amber-700);
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(217, 119, 6, 0.18);
    border-radius: 999px;
    padding: 7px 13px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.eyebrow.blue {
    color: #2563eb;
    border-color: rgba(37, 99, 235, 0.16);
}

.eyebrow.red {
    color: var(--red-500);
    border-color: rgba(239, 68, 68, 0.18);
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
    margin: 22px 0 20px;
    color: var(--amber-900);
    font-size: clamp(38px, 5.2vw, 72px);
    line-height: 1.02;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.hero-copy p,
.page-hero p {
    max-width: 760px;
    margin: 0;
    color: var(--amber-800);
    font-size: clamp(18px, 2vw, 24px);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 900;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 18px 36px rgba(120, 53, 15, 0.16);
}

.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
}

.btn-light {
    color: var(--amber-700);
    background: var(--white);
}

.btn-ghost {
    color: var(--amber-800);
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(217, 119, 6, 0.22);
}

.hero-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.hero-categories a {
    padding: 8px 14px;
    color: var(--amber-800);
    background: rgba(255, 255, 255, 0.52);
    border: 1px solid rgba(217, 119, 6, 0.16);
    border-radius: 999px;
    font-weight: 800;
}

.hero-carousel {
    position: relative;
    min-height: 492px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.54);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-rows: 1fr auto;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.55s ease, transform 0.55s ease;
    pointer-events: none;
}

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

.hero-poster {
    min-height: 310px;
    overflow: hidden;
}

.hero-movie-copy {
    padding: 24px;
    color: var(--gray-800);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), #ffffff);
}

.hero-movie-copy span,
.movie-meta,
.rank-content span {
    color: var(--gray-500);
    font-size: 13px;
    font-weight: 800;
}

.hero-movie-copy h2 {
    margin: 8px 0 8px;
    color: var(--gray-900);
    font-size: 28px;
    line-height: 1.15;
}

.hero-movie-copy p {
    margin: 0 0 16px;
    color: var(--gray-700);
}

.hero-movie-copy a,
.section-link,
.category-card h2 a,
.category-card .category-links a {
    color: var(--amber-600);
    font-weight: 900;
}

.hero-dots {
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(120, 53, 15, 0.25);
}

.hero-dot.active {
    width: 28px;
    background: var(--amber-600);
}

.section {
    padding: 68px 0;
}

.section-blue {
    background: linear-gradient(90deg, var(--blue-50), var(--cyan-50));
}

.section-warm {
    background: linear-gradient(135deg, var(--amber-50), var(--orange-50), #fefce8);
}

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

.section-head h2,
.search-tools h2,
.text-panel h2 {
    margin: 10px 0 0;
    color: var(--gray-800);
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.08;
    font-weight: 950;
    letter-spacing: -0.04em;
}

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

.hot-grid,
.category-page-grid,
.search-grid,
.related-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.movie-card {
    overflow: hidden;
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.movie-thumb {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: var(--amber-100);
}

.movie-thumb img,
.rank-poster img,
.category-cover img,
.detail-poster img {
    transition: transform 0.34s ease;
}

.movie-card:hover .movie-thumb img,
.category-card:hover .category-cover img {
    transform: scale(1.06);
}

.movie-year {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 9px;
    color: var(--white);
    background: rgba(17, 24, 39, 0.68);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.movie-play {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(217, 119, 6, 0.34);
}

.movie-info {
    padding: 15px;
}

.movie-title {
    display: -webkit-box;
    overflow: hidden;
    min-height: 43px;
    color: var(--gray-900);
    font-size: 16px;
    font-weight: 950;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-title:hover,
.rank-title:hover {
    color: var(--amber-600);
}

.movie-desc {
    display: -webkit-box;
    overflow: hidden;
    margin: 8px 0 10px;
    color: var(--gray-500);
    font-size: 14px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-tags,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.movie-tags span {
    padding: 4px 8px;
    color: var(--amber-700);
    background: var(--amber-50);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.movie-card-horizontal {
    display: grid;
    grid-template-columns: 152px 1fr;
}

.movie-card-horizontal .movie-thumb {
    aspect-ratio: 3 / 4;
}

.movie-card-compact {
    display: grid;
    grid-template-columns: 52px 1fr;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 18px;
}

.compact-rank {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-600), var(--orange-500));
    border-radius: 14px;
    font-weight: 950;
}

.compact-body .movie-title {
    min-height: auto;
    -webkit-line-clamp: 1;
}

.horizontal-list {
    display: grid;
    gap: 18px;
}

.rank-preview,
.ranking-list {
    display: grid;
    gap: 14px;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 62px 92px 1fr;
    gap: 16px;
    align-items: center;
    padding: 14px;
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.rank-number {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--red-500), var(--orange-500));
    border-radius: 16px;
    font-size: 18px;
    font-weight: 950;
}

.rank-poster {
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border-radius: 16px;
    background: var(--amber-100);
}

.rank-title {
    color: var(--gray-900);
    font-size: 18px;
    font-weight: 950;
}

.rank-content p {
    display: -webkit-box;
    overflow: hidden;
    margin: 6px 0;
    color: var(--gray-500);
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

.category-mini,
.category-card,
.text-panel,
.search-panel,
.cta-section > div {
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.category-mini {
    padding: 24px;
}

.mini-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.mini-head h3 {
    margin: 0;
    color: var(--gray-800);
    font-size: 24px;
}

.mini-head a {
    color: var(--amber-600);
    font-weight: 900;
}

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

.cta-section {
    padding-top: 0;
}

.cta-section > div {
    padding: 56px 28px;
    color: var(--white);
    text-align: center;
    background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
}

.cta-section h2 {
    margin: 0 0 12px;
    font-size: clamp(30px, 4vw, 48px);
}

.cta-section p {
    margin: 0 auto 26px;
    max-width: 720px;
    font-size: 19px;
    opacity: 0.92;
}

.page-hero {
    padding: 76px 0;
    background: linear-gradient(135deg, var(--amber-100), var(--orange-100) 55%, #fef9c3);
}

.page-hero h1 {
    margin-bottom: 16px;
}

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

.category-card {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 22px;
    padding: 18px;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.category-cover {
    overflow: hidden;
    aspect-ratio: 4 / 5;
    border-radius: 20px;
    background: var(--amber-100);
}

.category-card h2 {
    margin: 6px 0 10px;
    color: var(--gray-900);
    font-size: 28px;
    line-height: 1.12;
}

.category-card p {
    margin: 0 0 14px;
    color: var(--gray-500);
}

.category-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.category-links a {
    padding: 6px 10px;
    background: var(--amber-50);
    border-radius: 999px;
    font-size: 13px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 18px;
    color: rgba(120, 53, 15, 0.72);
    font-weight: 800;
}

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

.search-panel {
    display: grid;
    grid-template-columns: 1.8fr repeat(3, 1fr);
    gap: 12px;
    margin-top: 28px;
    padding: 14px;
}

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

.search-panel input:focus,
.search-panel select:focus {
    border-color: var(--amber-600);
    box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.10);
}

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

.search-tools h2 {
    margin: 0;
}

.search-tools button {
    min-height: 44px;
    padding: 0 18px;
    color: var(--amber-700);
    border: 1px solid var(--amber-200);
    border-radius: 999px;
    background: var(--white);
    font-weight: 900;
}

.empty-state {
    display: none;
    padding: 28px;
    color: var(--gray-500);
    text-align: center;
    background: var(--white);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
}

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

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

.detail-hero {
    position: relative;
    overflow: hidden;
    padding: 70px 0;
    color: var(--white);
    background: var(--gray-900);
}

.detail-bg {
    position: absolute;
    inset: 0;
    opacity: 0.28;
    filter: blur(4px);
    transform: scale(1.04);
}

.detail-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(17, 24, 39, 0.96), rgba(120, 53, 15, 0.66));
}

.detail-shell {
    position: relative;
    z-index: 1;
}

.detail-intro {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 36px;
    align-items: center;
}

.detail-poster {
    overflow: hidden;
    aspect-ratio: 2 / 3;
    border: 6px solid rgba(255, 255, 255, 0.28);
    border-radius: 28px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
}

.detail-copy h1 {
    color: var(--white);
}

.detail-copy p {
    max-width: 820px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 20px;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0;
}

.detail-meta span {
    padding: 8px 12px;
    color: var(--amber-100);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    font-weight: 900;
}

.detail-tags {
    margin-bottom: 26px;
}

.player-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 30px;
    background: #050505;
    box-shadow: 0 30px 70px rgba(17, 24, 39, 0.22);
}

.movie-video,
.play-cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.movie-video {
    z-index: 1;
    background: #050505;
}

.play-cover {
    z-index: 2;
    padding: 0;
    border: 0;
    cursor: pointer;
    background: transparent;
}

.play-cover-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.10), rgba(17, 24, 39, 0.72));
}

.play-cover-button {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 86px;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
    border-radius: 999px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
    transform: translate(-50%, -50%);
    font-size: 32px;
}

.player-card.is-playing .play-cover {
    display: none;
}

.detail-content {
    display: grid;
    gap: 22px;
}

.text-panel {
    padding: 28px;
}

.text-panel p {
    margin: 14px 0 0;
    color: var(--gray-700);
    font-size: 18px;
}

.site-footer {
    color: var(--amber-50);
    background: linear-gradient(135deg, var(--amber-900), #7c2d12);
}

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 52px 0 34px;
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 34px;
}

.footer-inner p {
    max-width: 360px;
    color: var(--amber-200);
}

.footer-inner h2 {
    margin: 0 0 14px;
    color: var(--amber-100);
    font-size: 18px;
}

.footer-inner a,
.footer-inner span {
    display: block;
    margin: 8px 0;
    color: var(--amber-200);
}

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

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

.copyright {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 20px 0;
    color: var(--amber-200);
    border-top: 1px solid rgba(254, 243, 199, 0.18);
    font-size: 14px;
}

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

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-carousel {
        min-height: 520px;
    }

    .ranking-list,
    .category-grid {
        grid-template-columns: 1fr;
    }
}

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

    .menu-toggle {
        display: flex;
    }

    .header-inner {
        height: 66px;
    }

    .brand {
        font-size: 22px;
    }

    .hero-section,
    .page-hero,
    .detail-hero {
        padding: 52px 0;
    }

    .hero-copy h1,
    .page-hero h1,
    .detail-copy h1 {
        font-size: 38px;
    }

    .hero-carousel {
        min-height: 480px;
    }

    .section {
        padding: 48px 0;
    }

    .section-head,
    .search-tools {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .category-mini-grid,
    .footer-inner {
        grid-template-columns: 1fr;
    }

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

    .detail-intro {
        grid-template-columns: 1fr;
    }

    .detail-poster {
        width: min(260px, 82vw);
    }

    .rank-item {
        grid-template-columns: 48px 74px 1fr;
        gap: 12px;
    }

    .rank-number {
        width: 42px;
        height: 42px;
        font-size: 15px;
    }

    .category-card {
        grid-template-columns: 128px 1fr;
        gap: 16px;
    }

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

@media (max-width: 560px) {
    .shell,
    .header-inner,
    .mobile-nav,
    .footer-inner,
    .copyright,
    .hero-inner {
        width: min(100% - 24px, 1180px);
    }

    .hero-actions {
        display: grid;
    }

    .movie-grid,
    .hot-grid,
    .category-page-grid,
    .search-grid,
    .related-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .movie-info {
        padding: 12px;
    }

    .movie-title {
        font-size: 15px;
    }

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

    .movie-card-horizontal .movie-thumb,
    .category-cover {
        aspect-ratio: 16 / 10;
    }

    .hero-carousel {
        min-height: 430px;
    }

    .hero-poster {
        min-height: 250px;
    }

    .hero-movie-copy h2 {
        font-size: 23px;
    }

    .play-cover-button {
        width: 68px;
        height: 68px;
        font-size: 26px;
    }
}
