:root {
    --rose: #f43f5e;
    --rose-deep: #e11d48;
    --purple: #7c3aed;
    --pink: #ec4899;
    --stone-950: #1c1917;
    --stone-900: #292524;
    --stone-800: #44403c;
    --stone-700: #57534e;
    --stone-600: #78716c;
    --stone-500: #a8a29e;
    --stone-200: #e7e5e4;
    --stone-100: #f5f5f4;
    --sand: #fff7ed;
    --white: #ffffff;
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --shadow-card: 0 18px 45px rgba(68, 64, 60, 0.16);
    --shadow-soft: 0 12px 28px rgba(244, 63, 94, 0.18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--stone-800);
    background: #fffaf5;
    font-family: "Inter", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.65;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255, 250, 245, 0.88);
    border-bottom: 1px solid rgba(231, 229, 228, 0.8);
    backdrop-filter: blur(18px);
    transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 250, 245, 0.96);
    box-shadow: 0 14px 32px rgba(68, 64, 60, 0.08);
}

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

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    color: var(--white);
    border-radius: 14px;
    background: linear-gradient(135deg, var(--rose), var(--purple));
    box-shadow: var(--shadow-soft);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-text strong {
    font-size: 1.08rem;
    color: var(--stone-900);
}

.brand-text small {
    margin-top: 3px;
    color: var(--stone-500);
    font-size: 0.76rem;
    font-weight: 600;
}

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

.nav-link,
.mobile-link {
    color: var(--stone-700);
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

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

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
    color: var(--rose-deep);
    background: rgba(244, 63, 94, 0.1);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    background: rgba(244, 63, 94, 0.11);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 19px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: var(--rose-deep);
}

.mobile-nav {
    display: none;
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto 16px;
    padding: 12px;
    border: 1px solid rgba(231, 229, 228, 0.9);
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow-card);
}

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

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

main {
    min-height: 60vh;
}

.hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.22), transparent 32%), linear-gradient(135deg, #e11d48 0%, #7c3aed 54%, #ec4899 100%);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    filter: blur(8px);
}

.hero::before {
    width: 360px;
    height: 360px;
    top: -120px;
    left: 8%;
}

.hero::after {
    width: 440px;
    height: 440px;
    right: -80px;
    bottom: -180px;
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: min(1240px, calc(100% - 32px));
    min-height: 620px;
    margin: 0 auto;
    padding: 90px 0 128px;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.7fr);
    align-items: center;
    gap: 42px;
}

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

.hero-kicker,
.detail-kicker,
.page-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 15px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    font-size: 0.88rem;
    font-weight: 800;
}

.hero h1 {
    margin: 22px 0 18px;
    font-size: clamp(2.7rem, 7vw, 5.7rem);
    line-height: 1.02;
    letter-spacing: -0.08em;
}

.hero p {
    max-width: 680px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero-actions,
.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 20px;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
    color: var(--rose-deep);
    background: var(--white);
    box-shadow: 0 18px 36px rgba(28, 25, 23, 0.18);
}

.btn-dark {
    color: var(--white);
    background: linear-gradient(135deg, var(--rose), var(--purple));
    box-shadow: var(--shadow-soft);
}

.btn-glass {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(14px);
}

.hero-search {
    position: relative;
    max-width: 560px;
    margin-top: 26px;
}

.hero-search input,
.search-box input {
    width: 100%;
    min-height: 54px;
    padding: 0 20px;
    border: 1px solid rgba(231, 229, 228, 0.9);
    border-radius: 999px;
    outline: 0;
    background: var(--white);
    color: var(--stone-800);
    box-shadow: 0 15px 40px rgba(68, 64, 60, 0.1);
}

.hero-search button {
    position: absolute;
    top: 7px;
    right: 7px;
    min-height: 40px;
    padding: 0 17px;
}

.hero-panel {
    position: relative;
    min-height: 480px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-content: end;
    min-height: 480px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    background-size: cover;
    background-position: center;
    box-shadow: 0 32px 88px rgba(28, 25, 23, 0.32);
    opacity: 0;
    transform: translateY(18px) scale(0.98);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.hero-slide h2 {
    margin: 12px 0 10px;
    font-size: clamp(1.8rem, 4vw, 3.1rem);
    line-height: 1.08;
}

.hero-slide p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.88);
}

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

.hero-tags span,
.detail-tags span,
.pill {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.16);
    font-size: 0.78rem;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.hero-dots {
    position: absolute;
    z-index: 5;
    right: 24px;
    bottom: 22px;
    display: flex;
    gap: 8px;
}

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

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

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

.hero-categories a {
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.86rem;
    font-weight: 800;
}

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

.content-section.alt {
    background: linear-gradient(135deg, #fff7ed 0%, #f5f5f4 100%);
}

.content-section.deep {
    color: var(--white);
    background: var(--stone-950);
}

.section-inner,
.page-inner {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
}

.section-heading {
    display: grid;
    gap: 8px;
    margin-bottom: 28px;
}

.section-heading span {
    color: var(--rose-deep);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-heading h2,
.page-heading h1,
.detail-title {
    margin: 0;
    color: var(--stone-900);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.12;
    letter-spacing: -0.045em;
}

.deep .section-heading h2,
.deep .section-heading p {
    color: var(--white);
}

.section-heading p,
.page-heading p {
    max-width: 760px;
    margin: 0;
    color: var(--stone-600);
    font-size: 1rem;
}

.featured-overlap {
    position: relative;
    z-index: 10;
    margin-top: -72px;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: 20px;
}

.featured-grid .movie-card:first-child {
    grid-row: span 2;
}

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

.movie-row-scroll {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(270px, 320px);
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
}

.movie-row-scroll .movie-card {
    scroll-snap-align: start;
}

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(231, 229, 228, 0.8);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: 0 10px 30px rgba(68, 64, 60, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-7px);
    border-color: rgba(244, 63, 94, 0.28);
    box-shadow: var(--shadow-card);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: linear-gradient(135deg, #fce7f3, #ede9fe);
}

.featured-grid .movie-card:first-child .poster-link,
.movie-card.large .poster-link {
    aspect-ratio: 16 / 9;
}

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

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 44%, rgba(28, 25, 23, 0.72));
}

.movie-type {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 10px;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(135deg, var(--rose), var(--purple));
    font-size: 0.76rem;
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(28, 25, 23, 0.18);
}

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

.movie-meta-line,
.movie-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: var(--stone-500);
    font-size: 0.78rem;
    font-weight: 800;
}

.movie-card h3 {
    margin: 8px 0;
    color: var(--stone-900);
    font-size: 1.08rem;
    line-height: 1.32;
}

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

.movie-card p {
    display: -webkit-box;
    min-height: 48px;
    margin: 0 0 14px;
    overflow: hidden;
    color: var(--stone-600);
    font-size: 0.9rem;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-card-foot span {
    padding: 4px 9px;
    border-radius: 999px;
    background: var(--stone-100);
}

.movie-card-foot a {
    color: var(--rose-deep);
}

.rank-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
    gap: 24px;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 46px 66px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 10px;
    border: 1px solid rgba(231, 229, 228, 0.82);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.rank-row:hover {
    transform: translateX(4px);
    border-color: rgba(244, 63, 94, 0.26);
}

.rank-row strong {
    color: var(--rose-deep);
    font-size: 1.1rem;
    text-align: center;
}

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

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

.rank-row b {
    color: var(--stone-900);
}

.rank-row em {
    color: var(--stone-500);
    font-size: 0.82rem;
    font-style: normal;
}

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

.category-card {
    min-height: 260px;
    padding: 24px;
    border-radius: var(--radius-lg);
    color: var(--white);
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.94), rgba(124, 58, 237, 0.94));
    box-shadow: var(--shadow-soft);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 46px rgba(124, 58, 237, 0.22);
}

.category-card h2,
.category-card h3 {
    margin: 0 0 12px;
    font-size: 1.5rem;
}

.category-card p,
.category-card li {
    color: rgba(255, 255, 255, 0.86);
}

.category-card ul {
    padding-left: 18px;
    margin: 16px 0 0;
}

.page-hero {
    color: var(--white);
    background: linear-gradient(135deg, var(--rose-deep), var(--purple));
}

.page-heading {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: 74px 0 64px;
}

.page-heading h1 {
    margin: 14px 0;
    color: var(--white);
}

.page-heading p {
    color: rgba(255, 255, 255, 0.86);
}

.filter-panel {
    display: grid;
    gap: 18px;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-chip {
    min-height: 38px;
    padding: 7px 14px;
    border: 1px solid rgba(231, 229, 228, 0.95);
    border-radius: 999px;
    color: var(--stone-700);
    background: var(--white);
    cursor: pointer;
    font-weight: 800;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.filter-chip:hover,
.filter-chip.is-active {
    color: var(--white);
    border-color: transparent;
    background: linear-gradient(135deg, var(--rose), var(--purple));
}

.filter-empty {
    display: none;
    margin: 0;
    padding: 18px;
    border-radius: var(--radius-md);
    color: var(--stone-600);
    background: var(--white);
}

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

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: min(1240px, calc(100% - 32px));
    margin: 28px auto 0;
    color: var(--stone-500);
    font-size: 0.9rem;
    font-weight: 800;
}

.breadcrumb a:hover {
    color: var(--rose-deep);
}

.detail-hero {
    width: min(1240px, calc(100% - 32px));
    margin: 30px auto 0;
    display: grid;
    grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
    gap: 34px;
    align-items: center;
}

.detail-poster {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    background: linear-gradient(135deg, #fce7f3, #ede9fe);
}

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

.detail-copy {
    padding: 28px;
    border: 1px solid rgba(231, 229, 228, 0.85);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 46px rgba(68, 64, 60, 0.08);
    backdrop-filter: blur(16px);
}

.detail-kicker,
.page-kicker {
    color: var(--rose-deep);
    border-color: rgba(244, 63, 94, 0.15);
    background: rgba(244, 63, 94, 0.08);
}

.detail-title {
    margin: 16px 0 14px;
}

.detail-subtitle {
    margin: 0 0 20px;
    color: var(--stone-600);
    font-size: 1.05rem;
}

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

.detail-meta span {
    padding: 7px 11px;
    border-radius: 999px;
    color: var(--stone-700);
    background: var(--stone-100);
    font-weight: 800;
    font-size: 0.85rem;
}

.detail-tags span {
    color: var(--rose-deep);
    background: rgba(244, 63, 94, 0.1);
}

.watch-section,
.detail-text,
.related-section {
    width: min(1240px, calc(100% - 32px));
    margin: 64px auto 0;
}

.watch-section h2,
.detail-text h2,
.related-section h2 {
    margin: 0 0 18px;
    color: var(--stone-900);
    font-size: clamp(1.55rem, 3vw, 2.4rem);
    letter-spacing: -0.035em;
}

.player-box {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: #09090b;
    box-shadow: 0 24px 60px rgba(28, 25, 23, 0.28);
}

.player-box video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #09090b;
    cursor: pointer;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.56));
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.player-button {
    width: 116px;
    height: 116px;
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(135deg, var(--rose), var(--purple));
    box-shadow: 0 24px 55px rgba(244, 63, 94, 0.3);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 900;
    transition: transform 0.2s ease;
}

.player-button:hover {
    transform: scale(1.06);
}

.detail-text {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.38fr);
    gap: 28px;
}

.text-panel,
.side-panel {
    padding: 26px;
    border: 1px solid rgba(231, 229, 228, 0.86);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: 0 12px 28px rgba(68, 64, 60, 0.06);
}

.text-panel p,
.side-panel p {
    margin: 0 0 16px;
    color: var(--stone-700);
}

.text-panel p:last-child,
.side-panel p:last-child {
    margin-bottom: 0;
}

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

.side-panel li {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--stone-100);
}

.side-panel li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.site-footer {
    margin-top: 86px;
    color: var(--stone-300);
    background: var(--stone-950);
}

.footer-inner {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: 46px 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
    gap: 32px;
}

.footer-brand {
    color: var(--white);
    font-size: 1.25rem;
}

.footer-main p {
    max-width: 520px;
    margin: 12px 0 0;
    color: var(--stone-500);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.footer-links a {
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    color: var(--stone-300);
    font-weight: 800;
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: var(--white);
    border-color: rgba(244, 63, 94, 0.55);
}

.footer-bottom {
    padding: 18px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--stone-500);
    text-align: center;
    font-size: 0.85rem;
}

@media (max-width: 1100px) {
    .hero-inner,
    .detail-hero,
    .rank-layout,
    .detail-text {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        min-height: 420px;
    }

    .hero-slide {
        min-height: 420px;
    }

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

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

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

    .menu-toggle {
        display: block;
    }

    .header-inner {
        height: 68px;
    }

    .hero-inner {
        min-height: auto;
        padding: 62px 0 92px;
    }

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

    .btn {
        width: 100%;
    }

    .hero-search button {
        position: static;
        width: 100%;
        margin-top: 10px;
    }

    .featured-overlap {
        margin-top: -46px;
    }

    .movie-grid,
    .category-cards,
    .featured-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

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

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

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 540px) {
    .brand-text small {
        display: none;
    }

    .hero h1 {
        letter-spacing: -0.055em;
    }

    .movie-grid,
    .category-cards,
    .featured-grid {
        grid-template-columns: 1fr;
    }

    .movie-row-scroll {
        grid-auto-columns: minmax(245px, 82vw);
    }

    .detail-copy,
    .text-panel,
    .side-panel {
        padding: 20px;
    }

    .player-button {
        width: 92px;
        height: 92px;
    }
}
