:root {
    --pink-50: #fff1f7;
    --pink-100: #ffe4ef;
    --pink-200: #ffc7de;
    --pink-400: #fb6aa6;
    --pink-500: #ec4899;
    --pink-600: #db2777;
    --rose-50: #fff1f2;
    --rose-100: #ffe4e6;
    --rose-500: #f43f5e;
    --rose-600: #e11d48;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(219, 39, 119, 0.14);
    --shadow-soft: 0 10px 30px rgba(31, 41, 55, 0.08);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--gray-800);
    background: linear-gradient(180deg, #fff7fb 0%, #ffffff 38%, #fff7fb 100%);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

button,
input,
select {
    font: inherit;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--pink-100);
    box-shadow: 0 10px 24px rgba(236, 72, 153, 0.08);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 22px;
}

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

.brand-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: var(--white);
    font-weight: 800;
    background: linear-gradient(135deg, var(--pink-500), var(--rose-600));
    box-shadow: 0 12px 24px rgba(236, 72, 153, 0.28);
}

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

.brand-text strong {
    font-size: 22px;
    letter-spacing: -0.03em;
    background: linear-gradient(90deg, var(--pink-500), var(--rose-500), var(--pink-600));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-text small {
    margin-top: 3px;
    color: var(--gray-500);
    font-size: 12px;
}

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

.nav-link,
.mobile-nav-link {
    position: relative;
    color: var(--gray-700);
    font-weight: 650;
    transition: color 0.25s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 3px;
    border-radius: 999px;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(90deg, var(--pink-500), var(--rose-500));
    transition: transform 0.25s ease;
}

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

.nav-link:hover::after,
.nav-link.is-active::after {
    transform: scaleX(1);
}

.header-search,
.mobile-search {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-search input,
.mobile-search input,
.catalog-controls input,
.catalog-controls select {
    border: 2px solid var(--pink-200);
    border-radius: 999px;
    padding: 11px 16px;
    color: var(--gray-700);
    background: var(--white);
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.header-search input {
    width: 210px;
}

.header-search input:focus,
.mobile-search input:focus,
.catalog-controls input:focus,
.catalog-controls select:focus {
    border-color: var(--pink-400);
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.12);
}

.header-search button,
.mobile-search button,
.btn {
    border: 0;
    border-radius: 999px;
    padding: 11px 18px;
    color: var(--white);
    background: linear-gradient(135deg, var(--pink-500), var(--rose-500));
    box-shadow: 0 12px 24px rgba(236, 72, 153, 0.2);
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.header-search button:hover,
.mobile-search button:hover,
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(236, 72, 153, 0.26);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
}

.btn.ghost {
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.26);
    backdrop-filter: blur(12px);
}

.btn.soft {
    color: var(--pink-600);
    background: var(--pink-50);
    border: 1px solid var(--pink-100);
    box-shadow: none;
}

.btn.full {
    width: 100%;
}

.mobile-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: var(--pink-50);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-button span {
    width: 22px;
    height: 2px;
    border-radius: 99px;
    background: var(--gray-700);
}

.mobile-nav {
    display: none;
    border-top: 1px solid var(--pink-100);
}

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

.mobile-nav-inner {
    padding: 16px 0 20px;
    display: grid;
    gap: 14px;
}

.mobile-search input {
    flex: 1;
    min-width: 0;
}

.hero-section {
    position: relative;
    padding: 42px 0 30px;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(251, 106, 166, 0.26), transparent 36%),
        radial-gradient(circle at right, rgba(244, 63, 94, 0.18), transparent 28%);
}

.hero-carousel {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    border-radius: 34px;
    background: var(--gray-900);
    box-shadow: var(--shadow);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    align-items: center;
    gap: 36px;
    padding: 64px;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.02);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.36;
    filter: blur(1px) saturate(1.1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.92) 0%, rgba(17, 24, 39, 0.76) 48%, rgba(17, 24, 39, 0.42) 100%),
        linear-gradient(180deg, transparent 0%, rgba(17, 24, 39, 0.55) 100%);
}

.hero-content,
.hero-poster {
    position: relative;
    z-index: 2;
}

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

.hero-content .eyebrow {
    color: var(--pink-100);
}

.hero-content h1 {
    margin: 0 0 14px;
    color: var(--white);
    font-size: clamp(34px, 5vw, 66px);
    line-height: 1.02;
    letter-spacing: -0.06em;
}

.hero-content h2 {
    margin: 0 0 18px;
    color: var(--pink-100);
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1.18;
}

.hero-summary {
    max-width: 720px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
    line-height: 1.8;
}

.hero-tags,
.tag-row,
.detail-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
}

.hero-tags span,
.tag-row span,
.detail-tags span {
    display: inline-flex;
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 12px;
    font-weight: 700;
    color: var(--pink-600);
    background: var(--pink-50);
    border: 1px solid var(--pink-100);
}

.hero-tags span {
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.2);
}

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

.hero-poster {
    justify-self: end;
    width: min(330px, 100%);
    aspect-ratio: 2 / 3;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: linear-gradient(135deg, var(--pink-100), var(--rose-100));
}

.hero-poster img,
.movie-poster img,
.category-tile img,
.detail-cover img,
.rank-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 32px;
}

.hero-prev {
    left: 18px;
}

.hero-next {
    right: 18px;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 22px;
    z-index: 4;
    display: flex;
    gap: 9px;
    transform: translateX(-50%);
}

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

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

.hero-strip {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.section {
    padding: 76px 0;
}

.section.tinted {
    background:
        linear-gradient(135deg, rgba(255, 241, 247, 0.92), rgba(255, 241, 242, 0.95)),
        radial-gradient(circle at top right, rgba(251, 106, 166, 0.16), transparent 30%);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 32px;
    text-align: center;
}

.section-heading.left {
    margin-left: 0;
    text-align: left;
}

.section-heading h2,
.page-hero h1,
.detail-copy h1,
.ranking-card h2,
.detail-panel h2,
.preview-heading h2 {
    margin: 0;
    color: var(--gray-900);
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.section-heading p,
.page-hero p,
.detail-one-line,
.detail-panel p,
.preview-heading p,
.ranking-card p {
    color: var(--gray-600);
    line-height: 1.8;
}

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

.compact-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
}

.movie-card {
    overflow: hidden;
    border: 1px solid var(--pink-100);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: var(--pink-200);
    box-shadow: var(--shadow);
}

.movie-poster {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, var(--pink-100), var(--rose-100));
}

.movie-poster img {
    transition: transform 0.35s ease;
}

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

.movie-year {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 9px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(17, 24, 39, 0.72);
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(12px);
}

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

.movie-meta {
    margin: 0 0 7px;
    color: var(--pink-600);
    font-size: 12px;
    font-weight: 800;
}

.movie-card h3 {
    margin: 0 0 8px;
    color: var(--gray-900);
    font-size: 18px;
    line-height: 1.35;
}

.movie-card h3 a:hover,
.rank-info h2 a:hover {
    color: var(--pink-600);
}

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

.compact-card .movie-card-body {
    padding: 12px;
}

.compact-card h3 {
    font-size: 15px;
}

.compact-card .movie-desc,
.compact-card .tag-row {
    display: none;
}

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

.category-grid.large {
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
}

.category-tile {
    position: relative;
    min-height: 190px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border-radius: 26px;
    background: var(--gray-900);
    box-shadow: var(--shadow-soft);
}

.category-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.18), rgba(17, 24, 39, 0.86));
}

.category-tile img {
    position: absolute;
    inset: 0;
    opacity: 0.72;
    transition: transform 0.35s ease;
}

.category-tile:hover img {
    transform: scale(1.06);
}

.category-tile span {
    position: relative;
    z-index: 2;
    padding: 22px;
    color: var(--white);
}

.category-tile strong {
    display: block;
    margin-bottom: 6px;
    font-size: 22px;
}

.category-tile small {
    display: -webkit-box;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 28px;
    align-items: start;
}

.ranking-card {
    position: sticky;
    top: 104px;
    padding: 24px;
    border: 1px solid var(--pink-100);
    border-radius: 28px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.rank-mini-list {
    display: grid;
    gap: 10px;
    margin: 22px 0;
}

.rank-mini {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 10px;
    align-items: center;
    padding: 12px;
    border-radius: 18px;
    background: var(--pink-50);
    transition: transform 0.25s ease, background 0.25s ease;
}

.rank-mini:hover {
    transform: translateX(4px);
    background: var(--rose-100);
}

.rank-mini span {
    grid-row: span 2;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--white);
    background: linear-gradient(135deg, var(--pink-500), var(--rose-600));
    font-weight: 900;
}

.rank-mini strong {
    color: var(--gray-900);
    font-size: 14px;
}

.rank-mini small {
    color: var(--gray-500);
}

.page-hero,
.detail-hero {
    padding: 72px 0;
    background:
        radial-gradient(circle at top left, rgba(251, 106, 166, 0.22), transparent 34%),
        linear-gradient(135deg, var(--pink-50), var(--white) 52%, var(--rose-50));
}

.page-hero .container {
    max-width: 900px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--gray-500);
    font-size: 14px;
}

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

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

.detail-cover {
    overflow: hidden;
    aspect-ratio: 2 / 3;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--pink-100), var(--rose-100));
    box-shadow: var(--shadow);
}

.detail-copy h1 {
    max-width: 840px;
    margin-bottom: 18px;
}

.detail-one-line {
    max-width: 820px;
    font-size: 18px;
}

.player-section {
    padding-bottom: 28px;
    background: var(--gray-900);
}

.player-box {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 30px;
    background: #000;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.36);
}

.player-box video {
    width: 100%;
    height: 100%;
    background: #000;
    object-fit: contain;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 14px;
    border: 0;
    color: var(--white);
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.22), rgba(17, 24, 39, 0.72));
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-circle {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: var(--pink-600);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
    font-size: 34px;
    padding-left: 5px;
}

.detail-text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.detail-panel {
    padding: 28px;
    border: 1px solid var(--pink-100);
    border-radius: 28px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.detail-panel h2 {
    margin-bottom: 16px;
    font-size: 27px;
}

.stacked-previews {
    display: grid;
    gap: 34px;
}

.category-preview {
    padding: 24px;
    border: 1px solid var(--pink-100);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-soft);
}

.preview-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.preview-heading h2 {
    font-size: 30px;
}

.catalog-controls {
    display: grid;
    grid-template-columns: minmax(220px, 2fr) repeat(4, minmax(130px, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.catalog-controls input,
.catalog-controls select {
    width: 100%;
}

.empty-state {
    display: none;
    width: min(1180px, calc(100% - 40px));
    margin: 28px auto 0;
    padding: 24px;
    border-radius: 22px;
    color: var(--gray-600);
    background: var(--pink-50);
    text-align: center;
}

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

.ranking-list {
    display: grid;
    gap: 16px;
}

.ranking-row {
    display: grid;
    grid-template-columns: 92px 64px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 16px;
    border: 1px solid var(--pink-100);
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.rank-poster {
    overflow: hidden;
    aspect-ratio: 2 / 3;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--pink-100), var(--rose-100));
}

.rank-number {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: var(--white);
    background: linear-gradient(135deg, var(--pink-500), var(--rose-600));
    font-weight: 900;
}

.rank-info h2 {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 1.25;
}

.rank-info p {
    margin: 0 0 12px;
    color: var(--gray-600);
    line-height: 1.7;
}

.site-footer {
    background: linear-gradient(135deg, var(--pink-50), var(--rose-100));
    border-top: 1px solid var(--pink-200);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 36px;
    padding: 46px 0;
}

.site-footer h2 {
    margin: 0 0 14px;
    color: var(--gray-900);
    font-size: 20px;
}

.site-footer p {
    margin: 0;
    color: var(--gray-600);
    line-height: 1.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
}

.footer-links a {
    color: var(--gray-600);
}

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

.footer-bottom {
    padding: 18px 0;
    border-top: 1px solid rgba(236, 72, 153, 0.16);
    color: var(--gray-500);
    font-size: 14px;
}

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

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

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

    .ranking-card {
        position: static;
    }

    .catalog-controls {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .mobile-menu-button {
        display: inline-flex;
        margin-left: auto;
    }

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

    .hero-slide {
        grid-template-columns: 1fr;
        padding: 44px 28px 72px;
    }

    .hero-poster {
        justify-self: start;
        width: min(240px, 72vw);
    }

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

    .detail-cover {
        width: min(260px, 70vw);
    }

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

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

    .ranking-row .btn,
    .rank-number {
        display: none;
    }
}

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

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

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

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

    .hero-section {
        padding-top: 24px;
    }

    .hero-carousel {
        min-height: 710px;
        border-radius: 24px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content h2 {
        font-size: 25px;
    }

    .hero-summary,
    .detail-one-line {
        font-size: 16px;
    }

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

    .btn {
        width: 100%;
    }

    .hero-strip,
    .movie-grid,
    .compact-grid,
    .category-grid,
    .category-grid.large,
    .catalog-controls {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 52px 0;
    }

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

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

    .player-box {
        border-radius: 20px;
    }

    .play-circle {
        width: 68px;
        height: 68px;
        font-size: 28px;
    }
}
