:root {
    --slate-950: #020617;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-100: #f1f5f9;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-800: #1e293b;
    --cyan: #22d3ee;
    --blue: #3b82f6;
    --orange: #f97316;
    --yellow: #f59e0b;
    --white: #ffffff;
    --shadow-soft: 0 22px 60px rgba(15, 23, 42, 0.14);
    --shadow-card: 0 18px 40px rgba(15, 23, 42, 0.12);
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 42%, #eff6ff 100%);
    color: var(--gray-800);
    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,
video {
    display: block;
    max-width: 100%;
}

button,
input {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.97), rgba(30, 64, 175, 0.95), rgba(15, 23, 42, 0.97));
    color: var(--white);
    box-shadow: 0 18px 35px rgba(2, 6, 23, 0.26);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
}

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

.brand-icon {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: var(--white);
    box-shadow: 0 12px 25px rgba(34, 211, 238, 0.22);
}

.brand-text {
    display: grid;
    line-height: 1.15;
}

.brand-text strong {
    font-size: 22px;
    letter-spacing: -0.02em;
}

.brand-text small {
    margin-top: 4px;
    color: #a5f3fc;
    font-size: 12px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-weight: 600;
}

.desktop-nav a,
.mobile-nav a {
    color: rgba(255, 255, 255, 0.84);
    transition: color 0.25s ease, transform 0.25s ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
    color: var(--cyan);
    transform: translateY(-1px);
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    cursor: pointer;
}

.menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    border-radius: 999px;
    background: var(--white);
}

.mobile-nav {
    display: none;
    padding: 10px 16px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.hero {
    position: relative;
    min-height: 660px;
    overflow: hidden;
    background: var(--slate-950);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease;
}

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

.hero-slide__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.56;
    transform: scale(1.04);
}

.hero-slide__shade,
.detail-hero__shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 24%, rgba(34, 211, 238, 0.24), transparent 38%),
        linear-gradient(90deg, rgba(2, 6, 23, 0.92) 0%, rgba(15, 23, 42, 0.78) 42%, rgba(15, 23, 42, 0.18) 100%),
        linear-gradient(180deg, rgba(2, 6, 23, 0.26), rgba(248, 250, 252, 0.98) 96%);
}

.hero-slide__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 780px;
    padding-top: 40px;
    color: var(--white);
}

.eyebrow {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    border-radius: 999px;
    padding: 7px 14px;
    background: rgba(255, 255, 255, 0.16);
    color: #cffafe;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.eyebrow.dark {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.hero h1,
.page-hero h1,
.detail-info h1 {
    margin: 0;
    letter-spacing: -0.06em;
    line-height: 1.05;
}

.hero h1 {
    max-width: 760px;
    font-size: clamp(42px, 7vw, 78px);
}

.hero p {
    max-width: 680px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(17px, 2vw, 22px);
}

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

.tag {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 7px 12px;
    background: rgba(15, 23, 42, 0.08);
    color: #2563eb;
    font-size: 13px;
    font-weight: 700;
}

.hero-tags .tag,
.detail-tags .tag {
    background: rgba(255, 255, 255, 0.16);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.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: 0;
    border-radius: 999px;
    padding: 0 22px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.button-primary {
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: var(--white);
    box-shadow: 0 18px 35px rgba(37, 99, 235, 0.26);
}

.button-ghost {
    background: rgba(255, 255, 255, 0.16);
    color: var(--white);
    backdrop-filter: blur(12px);
}

.button-small {
    min-height: 38px;
    padding: 0 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    color: var(--white);
}

.hero-control {
    position: absolute;
    left: 50%;
    bottom: 124px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translateX(-50%);
}

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

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

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

.hero-more,
.text-link {
    color: #2563eb;
    font-weight: 800;
}

.hero-more {
    color: var(--white);
}

.hero-card-strip {
    position: relative;
    z-index: 6;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
    margin-top: -82px;
}

.section {
    padding: 64px 0;
}

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

.section-head.compact {
    margin-bottom: 18px;
}

.section-head h2,
.featured-panel h2,
.content-card h2 {
    margin: 0;
    color: var(--gray-800);
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.soft-panel {
    background: linear-gradient(135deg, rgba(219, 234, 254, 0.9), rgba(207, 250, 254, 0.55));
}

.movie-grid {
    display: grid;
    gap: 18px;
}

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

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

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

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

.movie-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
    border-color: rgba(34, 211, 238, 0.55);
    box-shadow: var(--shadow-card);
    transform: translateY(-6px);
}

.movie-card__poster {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4.3;
    overflow: hidden;
    background: linear-gradient(135deg, var(--slate-800), var(--slate-950));
}

.movie-card__poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.3s ease;
}

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

.movie-card__rating {
    position: absolute;
    top: 10px;
    right: 10px;
    border-radius: 999px;
    padding: 4px 8px;
    background: rgba(245, 158, 11, 0.94);
    color: var(--white);
    font-size: 12px;
    font-weight: 900;
}

.movie-card__play {
    position: absolute;
    left: 50%;
    top: 50%;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #2563eb;
    font-weight: 900;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.movie-card__body {
    display: grid;
    gap: 8px;
    padding: 14px;
}

.movie-card__title {
    display: -webkit-box;
    overflow: hidden;
    min-height: 46px;
    color: var(--gray-800);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.42;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.movie-card__meta,
.movie-card__foot,
.rank-item__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--gray-500);
    font-size: 12px;
}

.movie-card__desc {
    display: -webkit-box;
    overflow: hidden;
    min-height: 42px;
    margin: 0;
    color: var(--gray-600);
    font-size: 13px;
    line-height: 1.6;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.movie-card__category {
    color: #2563eb;
    font-weight: 800;
}

.movie-card--compact .movie-card__desc {
    display: none;
}

.filter-panel {
    display: grid;
    gap: 16px;
    margin-bottom: 28px;
    padding: 18px;
    border: 1px solid rgba(226, 232, 240, 0.86);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.search-box {
    display: grid;
    gap: 8px;
    color: var(--gray-600);
    font-weight: 800;
}

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

.search-box input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.14);
}

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

.filter-button {
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 999px;
    padding: 9px 14px;
    background: var(--white);
    color: var(--gray-600);
    cursor: pointer;
    font-weight: 800;
}

.filter-button.is-active,
.filter-button:hover {
    border-color: transparent;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    color: var(--white);
}

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

.category-tile {
    display: grid;
    min-height: 170px;
    align-content: space-between;
    border-radius: var(--radius-xl);
    padding: 20px;
    background:
        radial-gradient(circle at 80% 12%, rgba(34, 211, 238, 0.26), transparent 34%),
        linear-gradient(135deg, var(--slate-900), #1d4ed8);
    color: var(--white);
    box-shadow: var(--shadow-card);
    transition: transform 0.25s ease;
}

.category-tile:hover {
    transform: translateY(-5px);
}

.category-tile span {
    color: #a5f3fc;
    font-weight: 900;
}

.category-tile strong {
    margin-top: 28px;
    font-size: 24px;
}

.category-tile em {
    display: -webkit-box;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.72);
    font-style: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.two-column-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 34px;
    align-items: start;
}

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

.rank-list--wide {
    gap: 18px;
}

.rank-item {
    display: grid;
    grid-template-columns: 52px 92px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    border: 1px solid rgba(226, 232, 240, 0.86);
    border-radius: var(--radius-lg);
    padding: 12px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
}

.rank-item__num {
    color: #2563eb;
    font-size: 28px;
    font-weight: 1000;
    letter-spacing: -0.08em;
}

.rank-item__poster {
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 3 / 4;
    background: var(--slate-800);
}

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

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

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

.featured-panel,
.content-card,
.category-overview-card {
    border: 1px solid rgba(226, 232, 240, 0.86);
    border-radius: var(--radius-xl);
    padding: 28px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
}

.featured-panel p {
    color: var(--gray-600);
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 82px 0 76px;
    background:
        radial-gradient(circle at 75% 12%, rgba(34, 211, 238, 0.22), transparent 32%),
        linear-gradient(135deg, var(--slate-950), #1d4ed8 54%, var(--slate-900));
    color: var(--white);
}

.page-hero--compact {
    padding: 74px 0;
}

.page-hero h1 {
    margin: 0;
    font-size: clamp(38px, 6vw, 64px);
}

.page-hero p {
    max-width: 760px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
}

.breadcrumb a {
    color: #a5f3fc;
    font-weight: 800;
}

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

.category-overview-card {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
}

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

.category-overview-card__media img {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 14px;
    object-fit: cover;
    background: var(--slate-800);
}

.category-overview-card__content p {
    color: var(--gray-600);
}

.detail-hero {
    position: relative;
    min-height: 610px;
    overflow: hidden;
    background: var(--slate-950);
    color: var(--white);
}

.detail-hero__backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.48;
    filter: blur(3px);
    transform: scale(1.04);
}

.detail-hero__inner {
    position: relative;
    z-index: 2;
    padding: 58px 0 68px;
}

.detail-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 36px;
    align-items: end;
}

.detail-poster {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--radius-xl);
    box-shadow: 0 28px 80px rgba(2, 6, 23, 0.5);
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 3 / 4.3;
    object-fit: cover;
    background: var(--slate-800);
}

.detail-info h1 {
    max-width: 820px;
    font-size: clamp(40px, 6vw, 74px);
}

.detail-one-line {
    max-width: 860px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 20px;
}

.detail-meta {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 28px 0;
}

.detail-meta div {
    border-radius: 16px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.detail-meta dt {
    color: #a5f3fc;
    font-size: 12px;
    font-weight: 900;
}

.detail-meta dd {
    margin: 4px 0 0;
    font-size: 15px;
    font-weight: 900;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #000000;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.28);
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 18px;
    border: 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.22), rgba(2, 6, 23, 0.66));
    color: var(--white);
    cursor: pointer;
    pointer-events: auto;
    text-align: center;
}

.player-overlay.is-hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
}

.player-overlay__button {
    display: grid;
    width: 82px;
    height: 82px;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: var(--white);
    font-size: 28px;
    box-shadow: 0 18px 38px rgba(37, 99, 235, 0.38);
}

.player-overlay strong {
    font-size: 24px;
}

.detail-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 24px;
    align-items: start;
}

.content-card p {
    margin: 10px 0 28px;
    color: var(--gray-600);
    font-size: 17px;
}

.content-card p:last-child {
    margin-bottom: 0;
}

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

.info-list li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 12px;
}

.info-list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.info-list span {
    color: var(--gray-500);
}

.info-list strong,
.info-list a {
    color: var(--gray-800);
    font-weight: 900;
    text-align: right;
}

.info-list a {
    color: #2563eb;
}

.site-footer {
    margin-top: 70px;
    background: linear-gradient(180deg, var(--slate-900), var(--slate-950));
    color: rgba(255, 255, 255, 0.74);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 34px;
    padding: 52px 0;
}

.footer-brand {
    margin-bottom: 16px;
    color: var(--white);
    font-size: 20px;
}

.site-footer h3 {
    margin: 0 0 14px;
    color: var(--white);
}

.site-footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
}

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

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

[hidden],
.is-filter-hidden {
    display: none !important;
}

@media (max-width: 1180px) {
    .movie-grid--eight {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .hero-card-strip,
    .movie-grid--six {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

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

    .menu-button {
        display: block;
    }

    .hero {
        min-height: 620px;
    }

    .hero-card-strip,
    .movie-grid--six,
    .movie-grid--four,
    .movie-grid--eight,
    .movie-grid--two {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .two-column-section,
    .detail-content-grid,
    .footer-grid,
    .category-overview-grid,
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .detail-poster {
        max-width: 270px;
    }

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

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

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

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

    .header-inner {
        min-height: 64px;
    }

    .brand-icon {
        width: 38px;
        height: 38px;
    }

    .brand-text strong {
        font-size: 18px;
    }

    .brand-text small {
        display: none;
    }

    .hero {
        min-height: 560px;
    }

    .hero-slide__content {
        padding-top: 0;
    }

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

    .hero-control {
        bottom: 98px;
    }

    .hero-more {
        display: none;
    }

    .hero-card-strip {
        margin-top: -64px;
    }

    .movie-grid--six,
    .movie-grid--four,
    .movie-grid--eight,
    .movie-grid--two,
    .hero-card-strip {
        gap: 12px;
    }

    .movie-card__body {
        padding: 12px;
    }

    .movie-card__title {
        font-size: 14px;
    }

    .movie-card__desc {
        display: none;
    }

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

    .rank-item {
        grid-template-columns: 38px 76px minmax(0, 1fr);
        gap: 10px;
    }

    .rank-item p {
        -webkit-line-clamp: 1;
    }

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

    .player-overlay__button {
        width: 66px;
        height: 66px;
    }

    .section {
        padding: 46px 0;
    }
}
