:root {
    --cyan: #0891b2;
    --cyan-dark: #0e7490;
    --blue: #2563eb;
    --slate-950: #020617;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    --soft-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--slate-900);
    background: linear-gradient(135deg, var(--slate-50), var(--slate-100));
    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,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    box-shadow: 0 1px 10px rgba(15, 23, 42, 0.08);
}

.nav-shell {
    width: min(1280px, calc(100% - 32px));
    height: 68px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 22px;
}

.site-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 34px;
    border-radius: 12px;
    color: var(--white);
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 10px 22px rgba(8, 145, 178, 0.28);
    font-size: 13px;
}

.logo-text {
    font-size: 22px;
    background: linear-gradient(90deg, var(--cyan), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
}

.desktop-nav a,
.mobile-menu a,
.footer-column a {
    color: var(--slate-700);
    font-weight: 600;
    font-size: 14px;
    transition: color 0.2s ease, background 0.2s ease;
}

.desktop-nav a:hover,
.mobile-menu a:hover,
.footer-column a:hover {
    color: var(--cyan);
}

.site-search {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.site-search input,
.search-panel input,
.search-panel select,
.filter-panel input,
.filter-panel select {
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    background: var(--white);
    color: var(--slate-900);
    outline: none;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.site-search input {
    width: 220px;
    padding: 10px 16px;
}

.site-search input:focus,
.search-panel input:focus,
.search-panel select:focus,
.filter-panel input:focus,
.filter-panel select:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.12);
}

.site-search button,
.search-panel button,
.primary-btn {
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: var(--cyan);
    cursor: pointer;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.site-search button {
    padding: 10px 18px;
}

.site-search button:hover,
.search-panel button:hover,
.primary-btn:hover {
    background: var(--cyan-dark);
    box-shadow: 0 14px 28px rgba(8, 145, 178, 0.25);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: var(--slate-100);
    cursor: pointer;
}

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

.mobile-menu {
    display: none;
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.mobile-menu.is-open {
    display: grid;
}

.mobile-menu a {
    padding: 10px 12px;
    border-radius: 12px;
    background: var(--slate-50);
}

.hero-slider {
    position: relative;
    height: 70vh;
    min-height: 520px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--slate-900), var(--slate-800));
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

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

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

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.06));
}

.hero-content {
    position: absolute;
    left: max(24px, calc((100% - 1180px) / 2));
    bottom: 80px;
    width: min(680px, calc(100% - 48px));
    color: var(--white);
}

.hero-eyebrow,
.section-heading p,
.page-hero p {
    margin: 0 0 10px;
    color: #67e8f9;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 13px;
}

.hero-content h1,
.hero-content h2 {
    margin: 0 0 14px;
    color: var(--white);
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.06;
    font-weight: 900;
    text-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
}

.hero-content h2 + p,
.hero-content h1 + h2 + p {
    margin-top: 0;
}

.hero-content p:not(.hero-eyebrow) {
    color: #e2e8f0;
    font-size: 18px;
    max-width: 640px;
}

.hero-tags,
.detail-meta,
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0;
}

.hero-tags span,
.detail-meta span,
.tag-cloud span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 7px 12px;
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
    backdrop-filter: blur(10px);
    font-size: 13px;
    font-weight: 700;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.primary-btn,
.ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 26px;
}

.ghost-btn {
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
    font-weight: 800;
}

.ghost-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    font-size: 34px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
}

.hero-prev {
    left: 22px;
}

.hero-next {
    right: 22px;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

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

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

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

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

.section-heading h2,
.story-block h2,
.page-hero h1 {
    margin: 0;
    color: var(--slate-900);
    font-size: clamp(28px, 4vw, 38px);
    line-height: 1.18;
    font-weight: 900;
}

.section-heading a {
    color: var(--cyan);
    font-weight: 800;
}

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

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

.rail-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(150px, 1fr);
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.movie-card {
    min-width: 0;
}

.card-link,
.movie-card > a {
    display: block;
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--soft-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.card-link:hover,
.movie-card > a:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.poster-frame {
    position: relative;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: var(--slate-200);
}

.poster-frame img,
.feature-card img,
.ranking-card img,
.rank-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-link:hover img,
.feature-card:hover img,
.movie-card > a:hover img,
.rank-item:hover img {
    transform: scale(1.06);
}

.poster-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 9px;
    border-radius: 999px;
    color: var(--white);
    background: var(--cyan);
    font-size: 12px;
    font-weight: 800;
}

.card-body {
    padding: 14px;
}

.card-body h3 {
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 850;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.card-body p {
    margin: 0 0 12px;
    color: var(--slate-600);
    font-size: 13px;
    min-height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: var(--slate-500);
    font-size: 12px;
    font-weight: 700;
}

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

.feature-card {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    background: var(--slate-800);
}

.feature-card img {
    position: absolute;
    inset: 0;
}

.feature-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.18));
}

.feature-copy {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    color: var(--white);
}

.feature-copy strong {
    display: block;
    margin: 8px 0;
    font-size: 24px;
    line-height: 1.2;
}

.feature-copy span:last-child {
    color: #e2e8f0;
}

.feature-meta {
    color: #fde68a;
    font-weight: 800;
}

.category-section {
    width: min(1240px, calc(100% - 32px));
}

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

.category-tile,
.overview-card {
    display: block;
    min-height: 150px;
    padding: 24px;
    border-radius: var(--radius-lg);
    color: var(--white);
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 18px 38px rgba(37, 99, 235, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover,
.overview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(37, 99, 235, 0.25);
}

.category-tile span,
.overview-card h2 {
    display: block;
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 900;
}

.category-tile p,
.overview-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
}

.overview-index {
    display: inline-flex;
    margin-bottom: 16px;
    font-weight: 900;
    color: #cffafe;
}

.split-block {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
    align-items: start;
}

.rank-panel,
.latest-panel {
    padding: 28px;
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--soft-shadow);
}

.compact-heading {
    margin-bottom: 18px;
}

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

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

.rank-item:hover {
    background: #ecfeff;
    transform: translateX(4px);
}

.rank-num {
    color: var(--cyan);
    font-size: 22px;
    font-weight: 900;
}

.rank-item img {
    width: 64px;
    height: 88px;
    border-radius: 12px;
}

.rank-copy strong,
.rank-copy span {
    display: block;
}

.rank-copy strong {
    margin-bottom: 4px;
    font-weight: 850;
}

.rank-copy span {
    color: var(--slate-500);
    font-size: 13px;
}

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

.movie-card-wide .card-link {
    display: grid;
    grid-template-columns: 118px 1fr;
}

.movie-card-wide .poster-frame {
    aspect-ratio: auto;
    min-height: 168px;
}

.page-main {
    padding-top: 34px;
}

.page-hero {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    border-radius: 30px;
    padding: 54px;
    color: var(--white);
    background: radial-gradient(circle at top left, rgba(103, 232, 249, 0.38), transparent 34%), linear-gradient(135deg, var(--slate-900), var(--slate-800));
    box-shadow: var(--shadow);
}

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

.page-hero span {
    display: block;
    max-width: 720px;
    margin-top: 14px;
    color: #dbeafe;
    font-size: 18px;
}

.filter-panel,
.search-panel {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr 0.8fr;
    gap: 14px;
    margin-bottom: 28px;
    padding: 18px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--soft-shadow);
}

.filter-panel label,
.search-panel label {
    display: grid;
    gap: 6px;
}

.filter-panel span {
    color: var(--slate-500);
    font-size: 12px;
    font-weight: 800;
}

.filter-panel input,
.filter-panel select,
.search-panel input,
.search-panel select {
    width: 100%;
    padding: 12px 14px;
}

.search-panel {
    grid-template-columns: 1.4fr 0.8fr 0.7fr auto;
}

.search-panel button {
    padding: 0 28px;
}

.empty-state {
    display: none;
    padding: 38px;
    border-radius: var(--radius-lg);
    text-align: center;
    color: var(--slate-500);
    background: var(--white);
    box-shadow: var(--soft-shadow);
}

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

.ranking-grid {
    display: grid;
    gap: 14px;
}

.ranking-card > a {
    display: grid;
    grid-template-columns: 74px 82px 1fr;
    align-items: center;
    gap: 18px;
    padding: 12px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--soft-shadow);
}

.ranking-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    font-size: 26px;
    font-weight: 950;
}

.ranking-card img {
    width: 82px;
    height: 112px;
    border-radius: 14px;
}

.ranking-copy strong,
.ranking-copy span,
.ranking-copy em {
    display: block;
}

.ranking-copy strong {
    margin-bottom: 4px;
    font-size: 20px;
}

.ranking-copy span {
    color: var(--slate-500);
    font-size: 13px;
    font-style: normal;
}

.ranking-copy em {
    margin-top: 8px;
    color: var(--slate-600);
    font-style: normal;
}

.detail-main {
    background: var(--slate-50);
}

.detail-hero {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: var(--slate-900);
}

.detail-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px) saturate(1.1);
    transform: scale(1.02);
}

.detail-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.66), rgba(2, 6, 23, 0.3));
}

.detail-wrap {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    min-height: 620px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 42px;
    align-items: center;
    color: var(--white);
}

.detail-poster {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.45);
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: #bae6fd;
    font-weight: 800;
}

.detail-copy h1 {
    margin: 0 0 16px;
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.08;
    font-weight: 950;
}

.detail-line {
    max-width: 760px;
    margin: 0;
    color: #e2e8f0;
    font-size: 19px;
}

.detail-copy .primary-btn {
    margin-top: 8px;
}

.watch-block {
    padding-top: 64px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: var(--slate-950);
    box-shadow: 0 28px 60px rgba(2, 6, 23, 0.28);
    aspect-ratio: 16 / 9;
}

.movie-player {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--slate-950);
    cursor: pointer;
}

.player-cover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 14px;
    border: 0;
    color: var(--white);
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.84), rgba(2, 6, 23, 0.38));
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    border-radius: 999px;
    padding-left: 6px;
    color: var(--white);
    background: var(--cyan);
    box-shadow: 0 18px 40px rgba(8, 145, 178, 0.4);
    font-size: 34px;
}

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

.story-block {
    display: grid;
    gap: 14px;
    padding: 34px;
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--soft-shadow);
}

.story-block p {
    margin: 0 0 10px;
    color: var(--slate-700);
    font-size: 17px;
}

.story-block h2:not(:first-child) {
    margin-top: 20px;
}

.site-footer {
    margin-top: 70px;
    color: #cbd5e1;
    background: linear-gradient(135deg, var(--slate-900), var(--slate-800));
}

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1fr;
    gap: 42px;
    padding: 48px 0;
}

.footer-logo {
    color: var(--white);
    font-size: 20px;
}

.footer-brand p {
    max-width: 460px;
    color: #94a3b8;
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-column h2 {
    margin: 0 0 8px;
    color: var(--white);
    font-size: 17px;
}

.footer-column a {
    color: #cbd5e1;
}

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #94a3b8;
}

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

    .menu-toggle {
        display: block;
    }

    .nav-shell {
        gap: 12px;
    }

    .site-search {
        margin-left: auto;
    }

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

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

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

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

    .nav-shell {
        width: min(100% - 24px, 1280px);
    }

    .logo-text {
        font-size: 19px;
    }

    .hero-slider {
        height: 64vh;
        min-height: 500px;
    }

    .hero-content {
        bottom: 70px;
    }

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

    .hero-arrow {
        display: none;
    }

    .content-block {
        width: min(100% - 24px, 1180px);
        padding: 40px 0;
    }

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

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

    .feature-grid,
    .category-grid,
    .overview-grid,
    .filter-panel,
    .search-panel {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: 330px;
    }

    .movie-card-wide .card-link {
        display: block;
    }

    .page-hero {
        width: min(100% - 24px, 1180px);
        padding: 34px 24px;
        border-radius: 24px;
    }

    .detail-wrap {
        min-height: auto;
        padding: 44px 0;
        grid-template-columns: 1fr;
    }

    .detail-poster {
        width: min(230px, 72vw);
    }

    .detail-meta span,
    .tag-cloud span {
        background: rgba(255, 255, 255, 0.14);
    }

    .ranking-card > a {
        grid-template-columns: 52px 72px 1fr;
        gap: 12px;
    }

    .ranking-number {
        font-size: 20px;
    }

    .ranking-card img {
        width: 72px;
        height: 98px;
    }

    .ranking-copy em {
        display: none;
    }
}

@media (max-width: 480px) {
    .movie-grid,
    .compact-grid,
    .wide-grid {
        gap: 12px;
    }

    .card-body {
        padding: 11px;
    }

    .card-body h3 {
        font-size: 14px;
    }

    .card-body p {
        display: none;
    }

    .hero-tags {
        margin: 16px 0;
    }

    .primary-btn,
    .ghost-btn {
        width: 100%;
    }

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