:root {
    --primary-50: #fef8f2;
    --primary-100: #fdebd8;
    --primary-400: #f29d5b;
    --primary-500: #ee7f38;
    --primary-600: #e0642d;
    --accent-50: #fefce8;
    --accent-100: #fef9c3;
    --accent-500: #eab308;
    --secondary-50: #f5f5f4;
    --secondary-100: #e7e6e3;
    --secondary-500: #736d5f;
    --secondary-600: #5d5951;
    --secondary-700: #4d4944;
    --secondary-800: #433f3c;
    --warm-50: #fdf8f6;
    --warm-100: #f2e8e5;
    --warm-200: #eaddd7;
    --warm-500: #bfa094;
    --white: #ffffff;
    --black: #12100f;
    --shadow-soft: 0 18px 45px rgba(67, 63, 60, 0.14);
    --shadow-card: 0 10px 28px rgba(67, 63, 60, 0.12);
    --radius-xl: 22px;
    --radius-lg: 16px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--secondary-800);
    background: var(--warm-50);
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(234, 221, 215, 0.88);
    box-shadow: 0 10px 24px rgba(67, 63, 60, 0.06);
    backdrop-filter: blur(18px);
}

.nav-shell {
    width: min(var(--container), calc(100% - 32px));
    min-height: 68px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

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

.brand-mark {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
    box-shadow: 0 10px 18px rgba(238, 127, 56, 0.32);
    font-size: 14px;
}

.brand-text {
    font-size: 20px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
    font-weight: 700;
    color: var(--secondary-700);
}

.nav-link {
    position: relative;
    padding: 22px 0;
    transition: color 0.2s ease;
}

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

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

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

.search-button,
.btn {
    border: 0;
    cursor: pointer;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.search-button {
    padding: 10px 18px;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
    box-shadow: 0 12px 26px rgba(238, 127, 56, 0.25);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: var(--warm-100);
    cursor: pointer;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    margin: 0 auto;
    border-radius: 999px;
    background: var(--secondary-700);
}

.search-drawer {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: none;
}

.search-drawer.is-open {
    display: block;
}

.search-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(18, 16, 15, 0.52);
    backdrop-filter: blur(8px);
}

.search-box {
    position: relative;
    width: min(720px, calc(100% - 32px));
    margin: 84px auto 0;
    padding: 24px;
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.search-box-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.search-box-head h2 {
    margin: 0;
    font-size: 24px;
}

.search-box-head button {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    background: var(--warm-100);
    color: var(--secondary-700);
    cursor: pointer;
    font-size: 24px;
}

.search-input,
.filter-bar input,
.filter-bar select {
    width: 100%;
    border: 1px solid var(--warm-200);
    border-radius: 14px;
    padding: 13px 16px;
    color: var(--secondary-800);
    background: var(--warm-50);
    outline: none;
}

.search-input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
    border-color: var(--primary-500);
    box-shadow: 0 0 0 4px rgba(238, 127, 56, 0.12);
}

.search-results {
    display: grid;
    gap: 10px;
    max-height: 58vh;
    overflow: auto;
    margin-top: 16px;
}

.search-result-item {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 14px;
    align-items: center;
    padding: 10px;
    border-radius: 16px;
    background: var(--warm-50);
    transition: background 0.2s ease, transform 0.2s ease;
}

.search-result-item:hover {
    background: var(--primary-50);
    transform: translateY(-1px);
}

.search-result-item img {
    width: 82px;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    object-fit: cover;
    background: var(--secondary-100);
}

.search-result-item strong {
    display: block;
    font-size: 16px;
    color: var(--secondary-800);
}

.search-result-item span {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    color: var(--secondary-500);
}

.hero-section {
    position: relative;
    overflow: hidden;
    color: var(--white);
    padding: 78px 0 70px;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-400) 48%, var(--accent-500));
}

.hero-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(10px);
    opacity: 0.25;
    background: var(--white);
}

.hero-glow-one {
    width: 260px;
    height: 260px;
    left: -80px;
    top: -70px;
}

.hero-glow-two {
    width: 360px;
    height: 360px;
    right: -140px;
    bottom: -160px;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-copy {
    max-width: 900px;
    margin: 0 auto 42px;
    text-align: center;
}

.eyebrow {
    margin: 0 0 12px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.84);
}

.page-hero .eyebrow,
.detail-copy .eyebrow {
    color: var(--primary-600);
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
    margin: 0;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.hero-copy p:not(.eyebrow),
.page-hero p:not(.eyebrow) {
    max-width: 760px;
    margin: 18px auto 0;
    font-size: 19px;
    color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
}

.btn-light {
    color: var(--primary-600);
    background: var(--white);
    box-shadow: 0 14px 28px rgba(67, 63, 60, 0.18);
}

.btn-ghost {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.12);
}

.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
}

.hero-card-grid,
.movie-grid,
.category-grid,
.split-layout,
.detail-grid,
.footer-grid {
    display: grid;
    gap: 24px;
}

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

.section {
    padding: 58px 0;
}

.section-white {
    background: var(--white);
}

.section-gradient {
    background: linear-gradient(90deg, var(--warm-100), var(--primary-50));
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
}

.section-head h2 {
    margin: 0;
    font-size: clamp(26px, 3vw, 36px);
    color: var(--secondary-800);
    letter-spacing: -0.03em;
}

.section-head p {
    margin: 8px 0 0;
    color: var(--secondary-500);
}

.section-head > span {
    flex: 1;
    height: 4px;
    min-width: 80px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary-500), rgba(238, 127, 56, 0));
}

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

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

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

.movie-card {
    display: block;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-card);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.movie-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--secondary-100);
}

.movie-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.movie-card:hover .movie-thumb img,
.compact-card:hover img,
.rank-row:hover img {
    transform: scale(1.06);
}

.movie-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 16, 15, 0.82), rgba(18, 16, 15, 0.18), rgba(18, 16, 15, 0));
}

.movie-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 10px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(238, 127, 56, 0.92);
    font-size: 12px;
    font-weight: 800;
}

.play-hover {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--primary-600);
    background: rgba(255, 255, 255, 0.92);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
    transition: opacity 0.2s ease, transform 0.2s ease;
    font-weight: 900;
}

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

.movie-copy {
    padding: 18px;
}

.movie-copy h3,
.large-card-copy h3 {
    margin: 0 0 9px;
    color: var(--secondary-800);
    line-height: 1.25;
}

.movie-copy h3 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.movie-copy p,
.large-card-copy p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 44px;
    margin: 0 0 14px;
    overflow: hidden;
    color: var(--secondary-500);
    font-size: 14px;
}

.movie-meta,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: var(--secondary-500);
    font-size: 12px;
    font-weight: 700;
}

.movie-meta span,
.detail-meta span {
    border-radius: 999px;
    padding: 4px 9px;
    background: var(--warm-100);
}

.movie-card-large {
    position: relative;
    min-height: 292px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.18);
}

.movie-card-large .movie-thumb {
    position: absolute;
    inset: 0;
    height: 100%;
    aspect-ratio: auto;
}

.large-card-copy {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 24px;
    z-index: 1;
}

.large-card-copy h3,
.large-card-copy p,
.large-card-copy .movie-meta {
    color: var(--white);
}

.large-card-copy .movie-meta span {
    background: rgba(255, 255, 255, 0.18);
}

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

.category-card {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    padding: 24px;
    border: 1px solid var(--warm-200);
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-card);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-500);
    box-shadow: var(--shadow-soft);
}

.category-card strong {
    font-size: 24px;
    color: var(--secondary-800);
}

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

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

.category-card span {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 4px 8px;
    border-radius: 999px;
    color: var(--primary-600);
    background: var(--primary-50);
    font-size: 12px;
    font-weight: 800;
}

.split-layout {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
    align-items: start;
}

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

.rank-row,
.compact-card {
    display: grid;
    align-items: center;
    gap: 14px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: 0 8px 22px rgba(67, 63, 60, 0.08);
    transition: transform 0.2s ease, background 0.2s ease;
}

.rank-row {
    grid-template-columns: 48px 118px 1fr;
    padding: 10px;
}

.rank-row:hover,
.compact-card:hover {
    transform: translateY(-2px);
    background: var(--primary-50);
}

.rank-num {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
    font-weight: 900;
}

.rank-thumb,
.compact-thumb {
    overflow: hidden;
    border-radius: 12px;
    background: var(--secondary-100);
}

.rank-thumb img,
.compact-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.rank-thumb {
    width: 118px;
    aspect-ratio: 16 / 9;
}

.rank-info strong,
.compact-copy strong {
    display: block;
    color: var(--secondary-800);
    font-size: 16px;
}

.rank-info em,
.compact-copy em {
    display: block;
    overflow: hidden;
    margin: 4px 0;
    color: var(--secondary-500);
    font-style: normal;
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-info span {
    font-size: 12px;
    color: var(--secondary-500);
}

.more-link {
    display: inline-flex;
    margin-top: 18px;
    color: var(--primary-600);
    font-weight: 900;
}

.compact-grid {
    display: grid;
    gap: 12px;
}

.compact-card {
    grid-template-columns: 112px 1fr;
    padding: 10px;
}

.compact-thumb {
    width: 112px;
    aspect-ratio: 16 / 9;
}

.rail-wrap,
.category-overview-list {
    display: grid;
    gap: 30px;
}

.rail-block {
    padding: 24px;
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-card);
}

.rail-block h3 {
    margin: 0 0 18px;
    color: var(--secondary-700);
    font-size: 22px;
}

.page-hero {
    padding: 62px 0;
    color: var(--white);
    background: linear-gradient(135deg, var(--secondary-700), var(--secondary-600));
}

.category-page-hero {
    background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
}

.ranking-hero {
    background: linear-gradient(135deg, var(--secondary-800), var(--primary-600));
}

.page-hero p:not(.eyebrow) {
    margin-left: 0;
    color: rgba(255, 255, 255, 0.82);
}

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

.overview-head h2 {
    margin: 0 0 8px;
    font-size: 28px;
}

.overview-head p {
    margin: 0;
    color: var(--secondary-500);
}

.filter-bar {
    position: sticky;
    top: 82px;
    z-index: 20;
    display: grid;
    grid-template-columns: 1fr 180px 180px;
    gap: 14px;
    margin-bottom: 28px;
    padding: 16px;
    border: 1px solid var(--warm-200);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(16px);
}

.detail-hero {
    padding: 34px 0 48px;
    background: linear-gradient(180deg, var(--primary-50), var(--warm-50));
}

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

.breadcrumb a {
    color: var(--primary-600);
    font-weight: 800;
}

.breadcrumb strong {
    color: var(--secondary-700);
}

.detail-grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
    align-items: stretch;
}

.player-panel,
.detail-info,
.content-card {
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.player-panel {
    padding: 16px;
}

.video-frame {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: var(--black);
    aspect-ratio: 16 / 9;
}

.movie-video {
    width: 100%;
    height: 100%;
    display: block;
    background: var(--black);
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    color: var(--primary-600);
    background: linear-gradient(180deg, rgba(18, 16, 15, 0.08), rgba(18, 16, 15, 0.56));
    cursor: pointer;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.player-overlay span {
    width: 82px;
    height: 82px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 20px 40px rgba(18, 16, 15, 0.28);
    font-size: 34px;
}

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

.detail-info {
    overflow: hidden;
}

.detail-poster {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: var(--secondary-100);
}

.detail-copy {
    padding: 24px;
}

.detail-copy h1 {
    margin-bottom: 14px;
    color: var(--secondary-800);
    font-size: clamp(28px, 3.5vw, 42px);
}

.detail-copy p:not(.eyebrow) {
    color: var(--secondary-600);
}

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

.tag {
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--primary-600);
    background: var(--primary-50);
    font-size: 12px;
    font-weight: 800;
}

.detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.content-card {
    padding: 28px;
}

.content-card h2 {
    margin: 0 0 14px;
    color: var(--secondary-800);
    font-size: 26px;
}

.content-card p {
    margin: 0;
    color: var(--secondary-600);
    font-size: 16px;
}

.site-footer {
    color: var(--warm-100);
    background: var(--secondary-800);
}

.footer-grid {
    grid-template-columns: 1fr 1.4fr;
    padding: 42px 0;
}

.footer-brand {
    color: var(--white);
    font-size: 22px;
}

.site-footer p {
    max-width: 480px;
    margin: 12px 0 0;
    color: rgba(242, 232, 229, 0.76);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px 18px;
    font-weight: 800;
}

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

.footer-bottom {
    padding: 18px 16px;
    border-top: 1px solid rgba(242, 232, 229, 0.14);
    text-align: center;
    color: rgba(242, 232, 229, 0.72);
    font-size: 14px;
}

[data-card].is-hidden {
    display: none;
}

@media (max-width: 1080px) {
    .hero-card-grid,
    .movie-grid,
    .small-grid,
    .category-movie-grid,
    .category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

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

    .nav-links {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 76px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        border: 1px solid var(--warm-200);
        border-radius: var(--radius-xl);
        background: var(--white);
        box-shadow: var(--shadow-soft);
    }

    .nav-links.is-open {
        display: flex;
    }

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

    .nav-link::after {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active {
        background: var(--primary-50);
    }

    .search-button {
        padding: 9px 14px;
    }

    .hero-card-grid,
    .movie-grid,
    .small-grid,
    .category-movie-grid,
    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .filter-bar {
        position: static;
        grid-template-columns: 1fr;
    }

    .movie-card-large {
        min-height: 250px;
    }
}

@media (max-width: 620px) {
    .container,
    .nav-shell {
        width: min(100% - 22px, var(--container));
    }

    .brand-text {
        font-size: 17px;
    }

    .hero-section {
        padding: 54px 0 48px;
    }

    .hero-copy p:not(.eyebrow),
    .page-hero p:not(.eyebrow) {
        font-size: 16px;
    }

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

    .btn {
        width: 100%;
    }

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

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

    .section-head > span {
        width: 100%;
        flex: none;
    }

    .rank-row {
        grid-template-columns: 38px 96px 1fr;
    }

    .rank-thumb {
        width: 96px;
    }

    .compact-card {
        grid-template-columns: 96px 1fr;
    }

    .compact-thumb {
        width: 96px;
    }

    .overview-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .player-panel,
    .detail-copy,
    .content-card {
        padding: 16px;
    }

    .player-overlay span {
        width: 68px;
        height: 68px;
        font-size: 28px;
    }
}
