:root {
    color-scheme: dark;
    --bg: #020617;
    --bg-soft: #0f172a;
    --bg-card: rgba(15, 23, 42, 0.72);
    --border: rgba(148, 163, 184, 0.18);
    --border-strong: rgba(34, 211, 238, 0.38);
    --text: #f8fafc;
    --muted: #94a3b8;
    --muted-strong: #cbd5e1;
    --cyan: #22d3ee;
    --cyan-strong: #06b6d4;
    --orange: #fb923c;
    --shadow: 0 24px 80px rgba(8, 47, 73, 0.28);
    --radius: 22px;
    --header-height: 80px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 8% 8%, rgba(34, 211, 238, 0.13), transparent 28rem),
        radial-gradient(circle at 90% 12%, rgba(59, 130, 246, 0.12), transparent 24rem),
        var(--bg);
    color: var(--text);
    min-height: 100vh;
}

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

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

button,
input {
    font: inherit;
}

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

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 80;
    background: rgba(2, 6, 23, 0.62);
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    backdrop-filter: blur(18px);
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
    background: rgba(2, 6, 23, 0.92);
    box-shadow: 0 16px 60px rgba(8, 47, 73, 0.28);
}

.site-header__inner {
    width: min(1180px, calc(100% - 32px));
    height: var(--header-height);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.site-logo__mark {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: white;
    background: linear-gradient(135deg, var(--cyan), #2563eb);
    box-shadow: 0 0 32px rgba(34, 211, 238, 0.35);
    font-size: 16px;
}

.site-logo__text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.site-logo__text strong {
    font-size: 19px;
    letter-spacing: -0.02em;
}

.site-logo__text em {
    margin-top: 4px;
    color: rgba(34, 211, 238, 0.84);
    font-size: 12px;
    font-style: normal;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-left: auto;
}

.nav-link {
    color: var(--muted-strong);
    font-size: 15px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--cyan);
}

.header-search {
    position: relative;
    width: 260px;
    flex: 0 0 auto;
}

.header-search input,
.mobile-search input,
.search-page-form input {
    width: 100%;
    border: 1px solid rgba(148, 163, 184, 0.18);
    outline: none;
    color: var(--text);
    background: rgba(15, 23, 42, 0.74);
    border-radius: 999px;
    padding: 11px 46px 11px 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.search-page-form input:focus {
    border-color: rgba(34, 211, 238, 0.8);
    box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.13);
}

.header-search button {
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    color: var(--cyan);
    background: transparent;
    cursor: pointer;
}

.mobile-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.72);
    cursor: pointer;
}

.mobile-menu-button span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    background: white;
    border-radius: 99px;
}

.mobile-nav {
    display: none;
    border-top: 1px solid rgba(148, 163, 184, 0.14);
    padding: 18px 16px 22px;
    background: rgba(2, 6, 23, 0.96);
}

.mobile-nav.is-open {
    display: block;
}

.mobile-nav__link {
    display: block;
    padding: 13px 0;
    color: var(--muted-strong);
    font-weight: 600;
}

.mobile-nav__link.is-active {
    color: var(--cyan);
}

.mobile-search {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.mobile-search input {
    padding-right: 16px;
}

.mobile-search button {
    border: 0;
    border-radius: 999px;
    padding: 0 16px;
    color: white;
    background: var(--cyan-strong);
}

.hero {
    position: relative;
    height: 85vh;
    min-height: 620px;
    overflow: hidden;
    background: #020617;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.02);
    transition: opacity 0.8s ease, transform 1.1s ease;
}

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

.hero-slide__backdrop,
.hero-slide__shade {
    position: absolute;
    inset: 0;
}

.hero-slide__backdrop {
    background: linear-gradient(135deg, rgba(14, 116, 144, 0.36), rgba(15, 23, 42, 0.96));
}

.hero-slide__backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.46;
    filter: saturate(1.08) contrast(1.05);
}

.hero-slide__shade {
    background:
        linear-gradient(to top, #020617 0%, rgba(2, 6, 23, 0.88) 18%, rgba(2, 6, 23, 0.26) 58%, rgba(2, 6, 23, 0.74) 100%),
        linear-gradient(to right, rgba(2, 6, 23, 0.95), rgba(2, 6, 23, 0.2) 54%, rgba(2, 6, 23, 0.72));
}

.hero-slide__content {
    position: relative;
    height: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.45fr);
    align-items: end;
    gap: 54px;
    padding-bottom: 76px;
    padding-top: 120px;
}

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

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

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
    margin: 0;
    font-size: clamp(38px, 5vw, 66px);
    line-height: 1.05;
    letter-spacing: -0.055em;
}

.hero-copy__summary {
    margin: 22px 0 0;
    color: rgba(226, 232, 240, 0.9);
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.8;
}

.hero-meta,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0 0;
}

.hero-meta span,
.detail-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 12px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 999px;
    color: var(--muted-strong);
    background: rgba(15, 23, 42, 0.42);
    backdrop-filter: blur(12px);
    font-size: 14px;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 14px;
    padding: 0 20px;
    font-weight: 800;
    border: 1px solid transparent;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

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

.button--primary {
    color: white;
    background: linear-gradient(135deg, var(--cyan-strong), #2563eb);
    box-shadow: 0 18px 42px rgba(8, 145, 178, 0.3);
}

.button--ghost {
    color: white;
    background: rgba(15, 23, 42, 0.52);
    border-color: rgba(148, 163, 184, 0.24);
}

.button--soft {
    color: var(--cyan);
    background: rgba(34, 211, 238, 0.1);
    border-color: rgba(34, 211, 238, 0.24);
}

.hero-poster {
    position: relative;
    display: block;
    width: min(100%, 340px);
    margin-left: auto;
    aspect-ratio: 3 / 4.1;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(34, 211, 238, 0.28);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.22), rgba(15, 23, 42, 0.9));
    box-shadow: var(--shadow);
}

.hero-poster img,
.detail-poster img,
.movie-card__poster img,
.rank-item__poster img,
.player-cover__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-poster span {
    position: absolute;
    left: 22px;
    bottom: 22px;
    border-radius: 999px;
    padding: 9px 16px;
    color: white;
    background: rgba(6, 182, 212, 0.9);
    font-weight: 800;
}

.hero-dots {
    position: absolute;
    right: max(24px, calc((100% - 1180px) / 2));
    bottom: 34px;
    display: flex;
    gap: 10px;
    z-index: 5;
}

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

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

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

.page-main {
    padding-top: var(--header-height);
}

.page-hero {
    position: relative;
    padding: 86px 0 76px;
    background:
        linear-gradient(135deg, rgba(8, 47, 73, 0.6), rgba(15, 23, 42, 0.88)),
        radial-gradient(circle at 76% 28%, rgba(34, 211, 238, 0.18), transparent 24rem);
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.page-hero--compact {
    padding-bottom: 58px;
}

.page-hero p:not(.eyebrow) {
    width: min(760px, 100%);
    margin: 20px 0 0;
    color: var(--muted-strong);
    font-size: 18px;
    line-height: 1.8;
}

.section-block {
    margin-top: 72px;
}

.section-block--gradient {
    padding: 36px;
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.86), rgba(30, 41, 59, 0.58));
    box-shadow: 0 18px 70px rgba(2, 6, 23, 0.28);
}

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

.section-heading h2 {
    margin: 0;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.section-heading--compact {
    align-items: center;
    margin-bottom: 20px;
}

.text-link {
    color: var(--cyan);
    font-weight: 800;
}

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: var(--radius);
    background: rgba(15, 23, 42, 0.58);
    box-shadow: 0 12px 46px rgba(2, 6, 23, 0.22);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-5px);
    border-color: rgba(34, 211, 238, 0.42);
    box-shadow: 0 22px 62px rgba(8, 145, 178, 0.16);
}

.movie-card__poster {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(8, 145, 178, 0.24), rgba(15, 23, 42, 0.88)),
        radial-gradient(circle at 40% 20%, rgba(34, 211, 238, 0.22), transparent 16rem);
}

.movie-card__poster img {
    transition: transform 0.45s ease, opacity 0.2s ease;
}

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

.image-missing {
    opacity: 0;
}

.movie-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    border-radius: 9px;
    padding: 6px 9px;
    color: white;
    background: rgba(6, 182, 212, 0.92);
    font-size: 12px;
    font-weight: 800;
}

.movie-card__play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: white;
    font-size: 32px;
    opacity: 0;
    background: rgba(2, 6, 23, 0.34);
    transition: opacity 0.22s ease;
}

.movie-card:hover .movie-card__play {
    opacity: 1;
}

.movie-card__body {
    padding: 18px;
}

.movie-card__title {
    margin: 0;
    font-size: 18px;
    line-height: 1.3;
}

.movie-card__title a:hover {
    color: var(--cyan);
}

.movie-card__meta {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.movie-card__summary {
    display: -webkit-box;
    min-height: 48px;
    margin: 12px 0 0;
    color: var(--muted-strong);
    font-size: 14px;
    line-height: 1.7;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.tag-row--detail {
    margin-top: 24px;
}

.tag-pill {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 999px;
    padding: 5px 9px;
    color: #bae6fd;
    background: rgba(8, 47, 73, 0.45);
    font-size: 12px;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
}

.split-section__main,
.rank-panel,
.info-panel,
.detail-article,
.category-card-wide a,
.ranking-table {
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 28px;
    background: rgba(15, 23, 42, 0.58);
    box-shadow: 0 12px 50px rgba(2, 6, 23, 0.18);
}

.split-section__main {
    padding: 28px;
}

.rank-panel {
    padding: 24px;
    position: sticky;
    top: 100px;
}

.category-tile-grid,
.category-wide-grid {
    display: grid;
    gap: 16px;
}

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

.category-tile,
.category-card-wide a {
    display: block;
    min-height: 116px;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    padding: 22px;
    background: linear-gradient(135deg, rgba(8, 47, 73, 0.58), rgba(15, 23, 42, 0.72));
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-tile:hover,
.category-card-wide a:hover {
    transform: translateY(-3px);
    border-color: rgba(34, 211, 238, 0.38);
}

.category-tile strong,
.category-card-wide h2 {
    display: block;
    margin: 0 0 10px;
    font-size: 22px;
}

.category-tile span,
.category-card-wide p,
.category-card-wide span {
    color: var(--muted-strong);
    line-height: 1.7;
}

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

.rank-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.rank-item__link {
    display: grid;
    grid-template-columns: 38px 58px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.rank-item__number {
    color: var(--cyan);
    font-weight: 900;
}

.rank-item__poster {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(8, 47, 73, 0.55);
}

.rank-item__text strong,
.rank-item__text em {
    display: block;
}

.rank-item__text strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-item__text em {
    margin-top: 5px;
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
}

.ranking-table {
    overflow: hidden;
}

.ranking-row {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr) 90px 120px 190px;
    gap: 18px;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    color: var(--muted-strong);
}

.ranking-row:hover {
    background: rgba(8, 47, 73, 0.32);
    color: white;
}

.ranking-row__index {
    color: var(--cyan);
    font-weight: 900;
}

.ranking-row__title {
    color: white;
    font-weight: 800;
}

.search-page-form {
    display: flex;
    width: min(760px, 100%);
    gap: 12px;
    margin-top: 26px;
}

.search-page-form input {
    padding-right: 20px;
}

.detail-hero {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    padding-top: var(--header-height);
}

.detail-hero__background,
.detail-hero__shade {
    position: absolute;
    inset: 0;
}

.detail-hero__background {
    background: linear-gradient(135deg, rgba(14, 116, 144, 0.34), rgba(15, 23, 42, 0.96));
}

.detail-hero__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.38;
    filter: blur(2px) saturate(1.04);
}

.detail-hero__shade {
    background:
        linear-gradient(to top, #020617 0%, rgba(2, 6, 23, 0.78) 38%, rgba(2, 6, 23, 0.26)),
        linear-gradient(to right, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.24));
}

.detail-hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 46px;
    align-items: end;
    min-height: 540px;
    padding: 78px 0 58px;
}

.detail-poster {
    overflow: hidden;
    border: 1px solid rgba(34, 211, 238, 0.28);
    border-radius: 28px;
    aspect-ratio: 3 / 4.1;
    background: linear-gradient(135deg, rgba(8, 47, 73, 0.6), rgba(15, 23, 42, 0.9));
    box-shadow: var(--shadow);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    color: var(--muted-strong);
    font-size: 14px;
}

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

.detail-copy__line {
    width: min(760px, 100%);
    margin: 22px 0 0;
    color: rgba(226, 232, 240, 0.92);
    font-size: 20px;
    line-height: 1.8;
}

.movie-player {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(34, 211, 238, 0.26);
    border-radius: 30px;
    background: #000;
    aspect-ratio: 16 / 9;
    box-shadow: var(--shadow);
}

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

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

.player-cover {
    z-index: 2;
    padding: 0;
    border: 0;
    color: white;
    cursor: pointer;
    background: rgba(2, 6, 23, 0.86);
}

.player-cover__image {
    position: absolute;
    inset: 0;
    opacity: 0.48;
}

.player-cover__button {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 90px;
    height: 90px;
    display: grid;
    place-items: center;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    color: white;
    background: linear-gradient(135deg, var(--cyan-strong), #2563eb);
    box-shadow: 0 22px 60px rgba(8, 145, 178, 0.42);
    font-size: 34px;
    padding-left: 4px;
}

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

.detail-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    margin-top: 42px;
}

.detail-article,
.info-panel {
    padding: 28px;
}

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

.detail-article p {
    margin: 0 0 26px;
    color: var(--muted-strong);
    font-size: 17px;
    line-height: 2;
}

.info-panel dl {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 12px 16px;
    margin: 0;
}

.info-panel dt {
    color: var(--muted);
}

.info-panel dd {
    margin: 0;
    color: white;
}

.site-footer {
    margin-top: 90px;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    background: rgba(2, 6, 23, 0.68);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 34px;
    padding: 48px 0;
}

.site-footer p,
.site-footer a,
.site-footer li {
    color: var(--muted-strong);
    line-height: 1.8;
}

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

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

.site-footer a:hover {
    color: var(--cyan);
}

.site-logo--footer {
    margin-bottom: 16px;
}

@media (max-width: 1080px) {
    .header-search {
        display: none;
    }

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

    .split-section,
    .detail-content {
        grid-template-columns: 1fr;
    }

    .rank-panel {
        position: static;
    }
}

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

    .mobile-menu-button {
        display: block;
    }

    .site-header__inner {
        gap: 12px;
    }

    .hero {
        min-height: 760px;
    }

    .hero-slide__content,
    .detail-hero__inner {
        grid-template-columns: 1fr;
        align-items: center;
        gap: 28px;
        padding-top: 110px;
    }

    .hero-poster,
    .detail-poster {
        width: min(260px, 72vw);
        margin: 0;
    }

    .detail-hero__inner {
        min-height: auto;
    }

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

    .category-wide-grid,
    .category-tile-grid,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .ranking-row {
        grid-template-columns: 64px minmax(0, 1fr);
    }

    .ranking-row span:nth-child(n+3) {
        display: none;
    }
}

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

    .site-logo__text strong {
        font-size: 16px;
    }

    .site-logo__mark {
        width: 38px;
        height: 38px;
        border-radius: 13px;
    }

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

    .movie-grid,
    .movie-grid--small {
        grid-template-columns: 1fr;
    }

    .section-block--gradient,
    .split-section__main,
    .detail-article,
    .info-panel {
        padding: 22px;
        border-radius: 24px;
    }

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

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

    .hero-dots {
        left: 16px;
        right: auto;
    }

    .player-cover__button {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}
