:root {
    color-scheme: light;
    --bg: #f8fafc;
    --bg-soft: #f1f5f9;
    --surface: #ffffff;
    --surface-strong: #0f172a;
    --text: #0f172a;
    --muted: #64748b;
    --muted-light: #cbd5e1;
    --line: #e2e8f0;
    --primary: #f59e0b;
    --primary-strong: #d97706;
    --primary-soft: rgba(245, 158, 11, 0.14);
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    --shadow-strong: 0 24px 70px rgba(15, 23, 42, 0.24);
    --radius: 22px;
    --radius-small: 14px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.98), rgba(15, 23, 42, 0.98));
    color: #ffffff;
    box-shadow: 0 12px 35px rgba(2, 6, 23, 0.28);
    backdrop-filter: blur(18px);
}

.nav-bar {
    min-height: 74px;
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.brand-icon {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #ffffff;
    font-size: 15px;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.38);
}

.brand strong {
    display: block;
    font-size: 22px;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
    color: #e2e8f0;
    font-weight: 600;
    font-size: 15px;
}

.nav-links a {
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
    color: #fbbf24;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    margin-left: auto;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.nav-toggle span {
    display: block;
    width: 19px;
    height: 2px;
    margin: 4px auto;
    background: #ffffff;
    border-radius: 999px;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    width: 300px;
    padding: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.search-box input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    padding: 10px 12px;
    color: #ffffff;
    background: transparent;
}

.search-box input::placeholder {
    color: #94a3b8;
}

.search-box button {
    border: 0;
    padding: 9px 15px;
    border-radius: 999px;
    color: #111827;
    background: #fbbf24;
    font-weight: 700;
}

.search-results {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: min(440px, 92vw);
    display: none;
    overflow: hidden;
    border-radius: 18px;
    background: #ffffff;
    color: #0f172a;
    box-shadow: var(--shadow-strong);
    border: 1px solid var(--line);
}

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

.search-results a,
.search-results span {
    display: block;
    padding: 14px 16px;
    border-bottom: 1px solid #eef2f7;
}

.search-results a:hover {
    background: #fffbeb;
}

.search-results strong {
    display: block;
    font-size: 15px;
}

.search-results small {
    display: block;
    color: var(--muted);
    margin-top: 2px;
}

.hero {
    position: relative;
    min-height: 700px;
    overflow: hidden;
    color: #ffffff;
    background: #020617;
}

.hero-static-title {
    position: absolute;
    z-index: 5;
    top: 96px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.hero-static-title h1 {
    margin: 0;
    max-width: 760px;
    font-size: clamp(34px, 6vw, 70px);
    line-height: 1.02;
    letter-spacing: -0.065em;
    text-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.hero-static-title p {
    margin: 18px 0 0;
    max-width: 590px;
    color: #e2e8f0;
    font-size: clamp(17px, 2.1vw, 24px);
}

.hero-track,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.015);
    transition: opacity 0.75s ease, transform 1.2s ease, visibility 0.75s ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.68;
}

.hero-vignette {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 75% 30%, rgba(245, 158, 11, 0.26), transparent 32%),
        linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(15, 23, 42, 0.64) 46%, rgba(15, 23, 42, 0.2)),
        linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.1) 42%, rgba(2, 6, 23, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 6;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding-bottom: 86px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    color: #fde68a;
    background: rgba(245, 158, 11, 0.13);
    border: 1px solid rgba(245, 158, 11, 0.32);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.hero-movie-title {
    margin: 16px 0 0;
    width: min(760px, 100%);
    font-size: clamp(36px, 6vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.06em;
}

.hero-copy {
    width: min(650px, 100%);
    margin: 20px 0 0;
    color: #e2e8f0;
    font-size: 19px;
}

.hero-tags,
.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tags {
    margin-top: 20px;
}

.hero-tags span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 10px;
    color: #92400e;
    background: #fef3c7;
    font-size: 12px;
    font-weight: 700;
}

.hero-actions,
.page-actions,
.promo-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 14px;
    border: 1px solid transparent;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
    color: #ffffff;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    box-shadow: 0 14px 30px rgba(245, 158, 11, 0.35);
}

.button-ghost {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
}

.button-ghost.dark {
    color: #0f172a;
    border-color: #e2e8f0;
    background: #ffffff;
}

.button.full {
    width: 100%;
    margin-top: 18px;
}

.hero-dots {
    position: absolute;
    z-index: 10;
    left: 50%;
    bottom: 34px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 9px;
}

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

.hero-dot.is-active {
    width: 32px;
    background: #fbbf24;
}

.section {
    padding: 76px 0;
}

.section-soft {
    background: var(--bg-soft);
}

.section-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 30px;
}

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

.section-head h2 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.section-head p {
    margin: 6px 0 0;
    color: var(--muted);
}

.section-icon {
    flex: 0 0 auto;
    min-width: 42px;
    min-height: 42px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: #ffffff;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    font-weight: 900;
    box-shadow: 0 12px 25px rgba(245, 158, 11, 0.28);
}

.section-link {
    margin-left: auto;
    color: #d97706;
    font-weight: 800;
}

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

.movie-card {
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.85);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: rgba(245, 158, 11, 0.3);
}

.poster-frame {
    position: relative;
    display: block;
    height: 232px;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a, #334155);
}

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

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

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

.year-badge,
.play-chip {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.year-badge {
    top: 12px;
    right: 12px;
    min-width: 52px;
    padding: 5px 10px;
    color: #ffffff;
    background: #f59e0b;
}

.play-chip {
    left: 12px;
    bottom: 12px;
    width: 38px;
    height: 38px;
    color: #111827;
    background: #fbbf24;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.movie-card-body {
    display: block;
    padding: 18px;
}

.movie-card-title {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 52px;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.45;
    letter-spacing: -0.02em;
}

.movie-card-meta,
.movie-card-desc {
    display: block;
    color: var(--muted);
    font-size: 13px;
}

.movie-card-meta {
    margin-top: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.movie-card-desc {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 42px;
    margin-top: 10px;
}

.movie-card .tag-row {
    margin-top: 14px;
}

.empty-state {
    display: none;
    margin: 24px 0 0;
    padding: 24px;
    border-radius: var(--radius-small);
    color: var(--muted);
    text-align: center;
    background: #ffffff;
    border: 1px solid var(--line);
}

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

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

.category-card {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    border-radius: var(--radius);
    color: #ffffff;
    box-shadow: var(--shadow);
    background: #0f172a;
}

.category-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.74;
    transition: transform 0.5s ease;
}

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

.category-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.88));
}

.category-content {
    position: absolute;
    inset: auto 24px 24px;
}

.category-content strong {
    display: block;
    font-size: 26px;
    letter-spacing: -0.04em;
}

.category-content small {
    display: block;
    margin-top: 8px;
    color: #e2e8f0;
}

.rank-preview-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 28px;
    align-items: stretch;
}

.rank-panel,
.promo-panel {
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    padding: 26px;
}

.promo-panel {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 460px;
    color: #ffffff;
    background:
        radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.38), transparent 30%),
        linear-gradient(135deg, #0f172a, #1e293b 48%, #111827);
}

.promo-panel h2 {
    margin: 0;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.03;
    letter-spacing: -0.06em;
}

.promo-panel p {
    margin: 18px 0 0;
    color: #e2e8f0;
    font-size: 17px;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 54px 62px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    min-height: 82px;
    padding: 10px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.rank-row:hover {
    transform: translateX(4px);
    background: #fffbeb;
    border-color: rgba(245, 158, 11, 0.42);
}

.rank-number {
    color: #f59e0b;
    font-size: 24px;
    font-weight: 950;
    text-align: center;
}

.rank-thumb {
    overflow: hidden;
    width: 62px;
    height: 62px;
    border-radius: 14px;
    background: #0f172a;
}

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

.rank-info {
    min-width: 0;
}

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

.rank-info strong {
    font-size: 16px;
}

.rank-info small {
    color: var(--muted);
    margin-top: 3px;
}

.rank-action {
    color: #d97706;
    font-weight: 900;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 82px;
    color: #ffffff;
    background:
        radial-gradient(circle at 72% 16%, rgba(245, 158, 11, 0.35), transparent 28%),
        linear-gradient(135deg, #020617, #0f172a 52%, #1e293b);
}

.page-hero h1 {
    margin: 18px 0 0;
    max-width: 780px;
    font-size: clamp(40px, 6vw, 76px);
    line-height: 1.03;
    letter-spacing: -0.06em;
}

.page-hero p {
    max-width: 700px;
    margin: 20px 0 0;
    color: #dbeafe;
    font-size: 18px;
}

.toolbar {
    margin-bottom: 24px;
}

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

.filter-buttons button {
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    padding: 9px 16px;
    color: #334155;
    background: #ffffff;
    font-weight: 800;
}

.filter-buttons button.is-active,
.filter-buttons button:hover {
    color: #ffffff;
    background: #f59e0b;
    border-color: #f59e0b;
}

.watch-hero {
    padding: 34px 0 68px;
    color: #ffffff;
    background:
        radial-gradient(circle at 80% 12%, rgba(245, 158, 11, 0.22), transparent 30%),
        linear-gradient(135deg, #020617, #0f172a 64%, #111827);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    color: #cbd5e1;
    font-size: 14px;
}

.breadcrumb a {
    color: #fde68a;
}

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

.watch-main h1 {
    margin: 16px 0 0;
    font-size: clamp(36px, 5vw, 66px);
    line-height: 1.04;
    letter-spacing: -0.06em;
}

.watch-intro {
    max-width: 860px;
    margin: 18px 0 28px;
    color: #e2e8f0;
    font-size: 18px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    background: #000000;
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
    aspect-ratio: 16 / 9;
}

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

.player-cover {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 0;
    color: #ffffff;
    background:
        linear-gradient(180deg, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.76)),
        rgba(2, 6, 23, 0.22);
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

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

.play-round {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #111827;
    background: #fbbf24;
    font-size: 26px;
    box-shadow: 0 18px 36px rgba(245, 158, 11, 0.34);
}

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

.watch-side {
    overflow: hidden;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.28);
}

.watch-side img {
    width: 100%;
    height: 410px;
    object-fit: cover;
}

.watch-side dl {
    margin: 0;
    padding: 18px;
}

.watch-side dl div {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.watch-side dt {
    color: #cbd5e1;
}

.watch-side dd {
    margin: 0;
    color: #ffffff;
    font-weight: 800;
}

.detail-tags {
    padding: 0 18px 20px;
}

.detail-copy {
    background: #ffffff;
}

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

.detail-grid article {
    padding: 28px;
    border-radius: var(--radius);
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.detail-grid h2 {
    margin: 0 0 14px;
    font-size: 28px;
    letter-spacing: -0.04em;
}

.detail-grid p {
    margin: 0;
    color: #334155;
    font-size: 17px;
}

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

.prev-next a {
    display: block;
    padding: 18px 20px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    font-weight: 900;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.prev-next a:last-child {
    text-align: right;
}

.site-footer {
    padding: 52px 0;
    color: #cbd5e1;
    background: #020617;
}

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

.footer-brand {
    display: inline-flex;
    color: #ffffff;
    font-size: 24px;
    font-weight: 950;
    letter-spacing: -0.04em;
}

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

.site-footer h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 18px;
}

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

.footer-links a:hover {
    color: #fbbf24;
}

@media (max-width: 1100px) {
    .search-box {
        width: 250px;
    }

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

    .watch-layout,
    .rank-preview-grid {
        grid-template-columns: 1fr;
    }

    .watch-side {
        display: grid;
        grid-template-columns: 260px minmax(0, 1fr);
    }

    .watch-side img {
        height: 100%;
    }
}

@media (max-width: 860px) {
    .nav-bar {
        flex-wrap: wrap;
        padding: 12px 0;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        order: 3;
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        margin: 0;
        padding: 14px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.08);
    }

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

    .nav-links a {
        width: 100%;
        padding: 10px 0;
    }

    .search-box {
        order: 4;
        width: 100%;
    }

    .hero,
    .hero-content {
        min-height: 650px;
    }

    .hero-static-title {
        top: 76px;
    }

    .hero-content {
        padding-bottom: 72px;
    }

    .movie-grid,
    .category-grid,
    .detail-grid,
    .footer-grid,
    .prev-next {
        grid-template-columns: 1fr;
    }

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

    .section-link {
        display: none;
    }

    .watch-side {
        display: block;
    }

    .watch-side img {
        height: auto;
        max-height: 520px;
        width: 100%;
        object-fit: cover;
    }

    .prev-next a:last-child {
        text-align: left;
    }
}

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

    .brand strong {
        font-size: 19px;
    }

    .hero,
    .hero-content {
        min-height: 610px;
    }

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

    .hero-static-title p,
    .hero-copy,
    .watch-intro,
    .page-hero p {
        font-size: 16px;
    }

    .hero-movie-title,
    .watch-main h1,
    .page-hero h1 {
        font-size: 36px;
    }

    .section {
        padding: 52px 0;
    }

    .poster-frame {
        height: 250px;
    }

    .rank-row {
        grid-template-columns: 42px 54px minmax(0, 1fr);
    }

    .rank-action {
        display: none;
    }

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

    .play-round {
        width: 62px;
        height: 62px;
    }
}
