:root {
    --bg: #020617;
    --panel: rgba(15, 23, 42, 0.82);
    --panel-solid: #0f172a;
    --panel-soft: rgba(30, 41, 59, 0.72);
    --line: rgba(148, 163, 184, 0.18);
    --text: #f8fafc;
    --muted: #94a3b8;
    --accent: #22d3ee;
    --accent-strong: #3b82f6;
    --gold: #f59e0b;
    --radius: 18px;
    --shadow: 0 24px 80px rgba(2, 6, 23, 0.35);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(34, 211, 238, 0.12), transparent 28rem),
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.16), transparent 30rem),
        var(--bg);
    color: var(--text);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

img {
    max-width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.94));
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(16px);
}

.header-inner,
.footer-inner,
.section-wrap,
.category-hero-content,
.detail-breadcrumb,
.movie-detail-main > .player-section,
.detail-layout {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

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

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    text-decoration: none;
}

.brand-mark {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent-strong), var(--accent));
    color: #fff;
    box-shadow: 0 16px 35px rgba(34, 211, 238, 0.22);
}

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

.brand-text small {
    display: block;
    color: #cbd5e1;
    font-size: 12px;
    margin-top: 2px;
}

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

.nav-link,
.mobile-link {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 650;
    transition: color 0.25s ease, background 0.25s ease;
}

.nav-link {
    position: relative;
    padding: 24px 0;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 18px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--accent);
    transition: width 0.25s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
    color: #fff;
}

.nav-link:hover::after,
.nav-link.is-active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: rgba(51, 65, 85, 0.88);
    color: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    border-top: 1px solid var(--line);
    padding: 12px 16px 18px;
    background: #0f172a;
}

.mobile-link {
    display: block;
    padding: 13px 16px;
    border-radius: 12px;
}

.mobile-link:hover,
.mobile-link.is-active {
    background: rgba(51, 65, 85, 0.72);
}

.home-hero {
    position: relative;
    height: 650px;
    overflow: hidden;
    background: #0f172a;
}

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

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

.hero-bg,
.hero-bg img,
.hero-mask {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-mask-side {
    background: linear-gradient(90deg, #020617 0%, rgba(2, 6, 23, 0.86) 34%, rgba(2, 6, 23, 0.28) 70%, rgba(2, 6, 23, 0.9) 100%);
}

.hero-mask-bottom {
    background: linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0) 55%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1180px;
}

.hero-content > * {
    max-width: 660px;
}

.hero-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    width: max-content;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(34, 211, 238, 0.14);
    color: #67e8f9;
    border: 1px solid rgba(34, 211, 238, 0.28);
    font-size: 13px;
    font-weight: 750;
    letter-spacing: 0.04em;
}

.hero-content h1 {
    margin: 18px 0 16px;
    font-size: clamp(40px, 6vw, 74px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -0.04em;
    text-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.hero-content p {
    color: #e2e8f0;
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.75;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.hero-meta,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin: 22px 0 28px;
    color: #cbd5e1;
}

.hero-meta span,
.detail-meta span {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.58);
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.score-star {
    color: #fde68a;
}

.hero-actions,
.section-heading,
.filter-panel,
.tag-row,
.hero-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.primary-btn,
.ghost-btn,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.primary-btn {
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    box-shadow: 0 18px 45px rgba(34, 211, 238, 0.22);
}

.ghost-btn {
    color: #e2e8f0;
    border: 1px solid rgba(226, 232, 240, 0.32);
    background: rgba(15, 23, 42, 0.48);
}

.primary-btn:hover,
.ghost-btn:hover,
.text-link:hover {
    transform: translateY(-2px);
}

.hero-controls {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 36px;
    transform: translateX(-50%);
}

.hero-dot {
    width: 38px;
    height: 5px;
    border: 0;
    border-radius: 999px;
    background: rgba(226, 232, 240, 0.36);
    transition: width 0.25s ease, background 0.25s ease;
}

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

.hero-focus-panel {
    position: absolute;
    z-index: 5;
    right: max(24px, calc((100vw - 1180px) / 2));
    bottom: 92px;
    width: 350px;
    padding: 18px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow);
}

.hero-focus-panel > span {
    display: block;
    color: #fff;
    font-weight: 800;
    margin-bottom: 12px;
}

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

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

.section-heading {
    justify-content: space-between;
    margin-bottom: 28px;
}

.section-heading h2,
.page-hero h1,
.category-hero h1,
.detail-content h1 {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 900;
    letter-spacing: -0.03em;
}

.section-heading p,
.page-hero p,
.category-hero p,
.footer-about p,
.movie-card-desc,
.detail-content p,
.category-overview-card p {
    color: var(--muted);
    line-height: 1.75;
}

.wide-heading {
    display: block;
}

.wide-heading h2 {
    margin: 14px 0 8px;
}

.section-heading a,
.text-link,
.mini-links a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 800;
}

.filter-panel {
    margin: 24px 0 32px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.72);
    box-shadow: 0 18px 50px rgba(2, 6, 23, 0.2);
}

.search-field {
    min-width: min(360px, 100%);
    flex: 1 1 280px;
}

.search-field span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.filter-panel input,
.filter-panel select {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 14px;
    background: rgba(2, 6, 23, 0.62);
    color: #f8fafc;
    padding: 0 14px;
    outline: none;
}

.filter-panel select {
    flex: 0 0 180px;
}

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

.movie-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.76);
    box-shadow: 0 20px 45px rgba(2, 6, 23, 0.18);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(34, 211, 238, 0.42);
    box-shadow: 0 26px 70px rgba(34, 211, 238, 0.1);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    color: #fff;
    text-decoration: none;
    background: rgba(30, 41, 59, 0.7);
}

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

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.05), rgba(2, 6, 23, 0.74));
}

.movie-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(34, 211, 238, 0.9);
    color: #03202c;
    font-size: 12px;
    font-weight: 900;
}

.poster-play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 52px;
    height: 52px;
    transform: translate(-50%, -50%) scale(0.86);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #0f172a;
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

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

.movie-card h3 {
    font-size: 17px;
    font-weight: 850;
    line-height: 1.35;
    margin: 0 0 7px;
}

.movie-card h3 a {
    color: #fff;
    text-decoration: none;
}

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

.movie-meta {
    color: #cbd5e1;
    font-size: 13px;
    margin-bottom: 8px;
}

.movie-card-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 48px;
    font-size: 14px;
}

.tag-row {
    gap: 7px;
    margin-top: 12px;
}

.tag-row span {
    display: inline-flex;
    padding: 5px 8px;
    border-radius: 999px;
    background: rgba(51, 65, 85, 0.7);
    color: #cbd5e1;
    font-size: 12px;
}

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

.category-tile {
    position: relative;
    display: flex;
    min-height: 230px;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: 22px;
    border-radius: 24px;
    border: 1px solid var(--line);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 20px 70px rgba(2, 6, 23, 0.28);
}

.category-tile img,
.category-tile-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.category-tile img {
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-tile-overlay {
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.85));
}

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

.category-tile strong,
.category-tile small {
    position: relative;
    z-index: 1;
}

.category-tile strong {
    font-size: 23px;
    font-weight: 900;
}

.category-tile small {
    margin-top: 8px;
    color: #dbeafe;
    line-height: 1.6;
}

.rank-card {
    position: relative;
    display: grid;
    grid-template-columns: auto 72px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.72);
    color: #fff;
    text-decoration: none;
    transition: transform 0.25s ease, background 0.25s ease;
}

.rank-card:hover {
    transform: translateX(4px);
    background: rgba(30, 41, 59, 0.95);
}

.rank-card img {
    width: 72px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
}

.rank-index {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #082f49;
    background: linear-gradient(135deg, #fde68a, #22d3ee);
    font-weight: 900;
    font-size: 13px;
}

.rank-info strong {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rank-info small {
    display: block;
    color: var(--muted);
    margin-top: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rank-score {
    color: #fde68a;
    font-weight: 900;
}

.page-main {
    padding-bottom: 40px;
}

.page-hero,
.category-hero {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    padding: 86px 0;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 15% 20%, rgba(34, 211, 238, 0.16), transparent 28rem),
        linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.92));
}

.small-hero {
    display: flex;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    flex-direction: column;
    justify-content: center;
    border: 0;
    background: transparent;
}

.page-hero h1,
.category-hero h1 {
    margin: 16px 0;
}

.category-overview-list {
    display: grid;
    gap: 24px;
}

.category-overview-card {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 28px;
    align-items: center;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(15, 23, 42, 0.76);
    box-shadow: var(--shadow);
}

.overview-cover {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    overflow: hidden;
    border-radius: 20px;
}

.overview-cover img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.category-overview-card h2 {
    margin: 12px 0;
    font-size: 30px;
    font-weight: 900;
}

.category-overview-card h2 a {
    color: #fff;
    text-decoration: none;
}

.mini-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 18px 0;
}

.category-hero-bg,
.category-hero-bg img,
.category-hero-bg span {
    position: absolute;
    inset: 0;
}

.category-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-hero-bg span {
    background: linear-gradient(90deg, #020617, rgba(2, 6, 23, 0.76), rgba(2, 6, 23, 0.36));
}

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

.breadcrumb {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
    color: #cbd5e1;
    margin-bottom: 24px;
}

.breadcrumb a {
    color: #67e8f9;
    text-decoration: none;
}

.detail-breadcrumb {
    padding: 32px 0 18px;
}

.movie-detail-main {
    background:
        radial-gradient(circle at 80% 0%, rgba(34, 211, 238, 0.1), transparent 28rem),
        var(--bg);
}

.player-section {
    margin-bottom: 34px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 28px;
    background: #000;
    border: 1px solid rgba(148, 163, 184, 0.24);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 0;
    color: #fff;
    background: radial-gradient(circle at center, rgba(34, 211, 238, 0.12), rgba(2, 6, 23, 0.68));
    transition: opacity 0.25s ease;
}

.player-shell.is-playing .player-overlay {
    opacity: 0;
    pointer-events: none;
}

.play-circle {
    width: 86px;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    box-shadow: 0 18px 50px rgba(34, 211, 238, 0.28);
    font-size: 34px;
    padding-left: 5px;
}

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

.detail-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 34px;
    align-items: start;
}

.detail-poster {
    position: sticky;
    top: 100px;
    display: grid;
    gap: 16px;
}

.detail-poster img {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.full-btn {
    width: 100%;
}

.detail-content {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(15, 23, 42, 0.78);
    box-shadow: var(--shadow);
}

.detail-content h1 {
    margin: 16px 0 6px;
}

.large-tags span {
    font-size: 13px;
    padding: 7px 10px;
}

.one-line {
    margin: 26px 0;
    font-size: 18px;
    color: #e2e8f0 !important;
}

.detail-content h2 {
    margin: 28px 0 12px;
    font-size: 24px;
    font-weight: 900;
}

.related-wrap {
    padding-top: 54px;
}

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

.movie-card.compact .movie-card-desc {
    min-height: auto;
}

.ranking-layout {
    display: grid;
    grid-template-columns: 1fr 330px;
    gap: 28px;
    align-items: start;
}

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

.ranking-aside {
    position: sticky;
    top: 100px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.78);
}

.ranking-aside h2 {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 14px;
}

.ranking-aside .filter-panel {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    display: grid;
}

.ranking-aside .filter-panel select,
.ranking-aside .search-field {
    flex: auto;
    width: 100%;
}

.site-footer {
    margin-top: 72px;
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.88), #020617);
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
    padding: 50px 0 32px;
}

.footer-brand {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 16px;
}

.footer-group h3 {
    color: #fff;
    font-weight: 850;
    margin-bottom: 14px;
}

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

.footer-group a {
    color: var(--muted);
    text-decoration: none;
}

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

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 22px 0 32px;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    color: #64748b;
    text-align: center;
    font-size: 14px;
}

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

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

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

    .hero-focus-panel {
        display: none;
    }

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

    .detail-poster,
    .ranking-aside {
        position: static;
    }
}

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

    .nav-toggle {
        display: flex;
    }

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

    .brand-text small {
        display: none;
    }

    .home-hero {
        height: 620px;
    }

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

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

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

    .overview-cover img {
        height: 110px;
    }

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

@media (max-width: 560px) {
    .header-inner,
    .footer-inner,
    .section-wrap,
    .category-hero-content,
    .detail-breadcrumb,
    .movie-detail-main > .player-section,
    .detail-layout,
    .small-hero {
        width: min(100% - 24px, 1180px);
    }

    .brand-mark {
        width: 40px;
        height: 40px;
    }

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

    .hero-content {
        width: min(100% - 24px, 1180px);
    }

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

    .hero-actions a {
        width: 100%;
    }

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

    .rank-card {
        grid-template-columns: auto 58px 1fr;
    }

    .rank-card img {
        width: 58px;
        height: 44px;
    }

    .rank-score {
        display: none;
    }

    .filter-panel select {
        flex: 1 1 100%;
    }

    .section-wrap {
        padding: 48px 0;
    }

    .detail-content {
        padding: 22px;
    }

    .player-shell {
        border-radius: 18px;
    }
}
