:root {
    --ink-900: #3d3d3d;
    --ink-700: #555555;
    --mist-700: #666f78;
    --mist-600: #868e96;
    --mist-400: #c6ccd2;
    --mist-300: #dee2e6;
    --mist-200: #e9ecef;
    --mist-100: #f1f3f5;
    --mist-50: #f8f9fa;
    --paper-100: #fcfcfc;
    --paper-200: #fafafa;
    --mountain-800: #123c4a;
    --mountain-700: #1a5264;
    --mountain-600: #236e86;
    --mountain-500: #2c8aa8;
    --mountain-100: #d9eef4;
    --mountain-50: #e8f4f8;
    --white: #ffffff;
    --shadow-soft: 0 10px 35px rgba(20, 38, 48, 0.08);
    --shadow-card: 0 18px 45px rgba(20, 38, 48, 0.13);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans SC", "Microsoft YaHei", sans-serif;
    color: var(--ink-900);
    background: var(--paper-100);
    line-height: 1.65;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--mist-200);
    box-shadow: 0 6px 22px rgba(30, 48, 58, 0.06);
    backdrop-filter: blur(12px);
}

.nav-shell {
    max-width: 1280px;
    height: 76px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    color: var(--ink-900);
}

.brand-text {
    font-size: 22px;
    letter-spacing: -0.02em;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--mountain-500), var(--mountain-700));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(35, 110, 134, 0.28);
}

.brand-mark span {
    width: 0;
    height: 0;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 14px solid white;
    margin-left: 3px;
}

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

.nav-link,
.dropdown-trigger {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--ink-700);
    font-weight: 700;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.dropdown-trigger:hover {
    color: var(--mountain-600);
    background: var(--mountain-50);
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    width: 190px;
    padding: 10px;
    border: 1px solid var(--mist-200);
    border-radius: 18px;
    background: white;
    box-shadow: var(--shadow-card);
    transform: translateX(-50%) translateY(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu .chip {
    width: 100%;
    justify-content: flex-start;
    margin: 2px 0;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-search {
    width: 260px;
    position: relative;
}

.top-search input,
.mobile-search input,
.wide-search input {
    width: 100%;
    border: 1px solid var(--mist-300);
    border-radius: 999px;
    background: var(--mist-50);
    color: var(--ink-900);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.top-search input {
    height: 42px;
    padding: 0 48px 0 18px;
}

.top-search input:focus,
.mobile-search input:focus,
.wide-search input:focus {
    border-color: var(--mountain-500);
    background: white;
    box-shadow: 0 0 0 4px rgba(44, 138, 168, 0.14);
}

.top-search button {
    position: absolute;
    right: 6px;
    top: 6px;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 50%;
    background: var(--mountain-600);
    color: white;
    cursor: pointer;
}

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

.mobile-panel {
    display: none;
    border-top: 1px solid var(--mist-200);
    background: white;
    padding: 14px 24px 22px;
}

.mobile-panel.is-open {
    display: grid;
    gap: 12px;
}

.mobile-panel a {
    padding: 11px 10px;
    border-radius: 12px;
    font-weight: 700;
    color: var(--ink-700);
}

.mobile-panel a:hover {
    background: var(--mountain-50);
    color: var(--mountain-700);
}

.mobile-search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.mobile-search input {
    height: 44px;
    padding: 0 16px;
}

.mobile-search button,
.wide-search button {
    border: 0;
    border-radius: 999px;
    background: var(--mountain-600);
    color: white;
    font-weight: 800;
    padding: 0 22px;
    cursor: pointer;
}

.hero {
    position: relative;
    min-height: 70vh;
    overflow: hidden;
    background: var(--ink-900);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.7s ease;
}

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

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

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.58) 55%, rgba(0, 0, 0, 0.86));
}

.hero-content {
    position: absolute;
    left: max(24px, calc((100vw - 1280px) / 2 + 24px));
    bottom: 13%;
    max-width: 760px;
    color: white;
}

.hero-kicker,
.section-label {
    display: inline-flex;
    align-items: center;
    width: max-content;
    border-radius: 999px;
    background: var(--mountain-600);
    color: white;
    padding: 5px 12px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 18px 0 16px;
    font-size: clamp(42px, 7vw, 78px);
    line-height: 1.03;
    letter-spacing: -0.06em;
}

.hero p {
    margin: 0 0 18px;
    max-width: 680px;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(17px, 2.1vw, 22px);
}

.hero-tags,
.movie-tags,
.chip-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.hero-tags span,
.movie-tags span {
    display: inline-flex;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.button-primary {
    background: white;
    color: var(--ink-900);
}

.button-primary:hover {
    background: var(--mountain-50);
    color: var(--mountain-700);
}

.button-ghost {
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}

.hero-control {
    position: absolute;
    top: 50%;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: white;
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(12px);
    transform: translateY(-50%);
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-control:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: translateY(-50%) scale(1.04);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

.hero-dots button {
    width: 18px;
    height: 5px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.46);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.is-active {
    width: 42px;
    background: white;
}

.section-shell {
    max-width: 1280px;
    margin: 0 auto;
    padding: 56px 24px;
}

.intro-strip {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 30px;
    align-items: center;
}

.intro-strip h2,
.section-heading h2,
.page-hero h1,
.detail-card h1 {
    margin: 12px 0 10px;
    color: var(--ink-900);
    letter-spacing: -0.04em;
}

.intro-strip h2,
.section-heading h2 {
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.08;
}

.intro-strip p,
.page-hero p,
.detail-card p {
    margin: 0;
    color: var(--mist-700);
    font-size: 17px;
}

.wide-search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
}

.wide-search input {
    height: 54px;
    padding: 0 20px;
    background: white;
}

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

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

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

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

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

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

.movie-card {
    min-width: 0;
    border: 1px solid var(--mist-200);
    border-radius: var(--radius-lg);
    background: white;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

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

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(145deg, var(--mountain-50), var(--mist-100));
}

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

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

.poster-badge {
    position: absolute;
    right: 12px;
    top: 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.56);
    color: white;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

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

.movie-card .movie-tags span,
.detail-tags span {
    background: var(--mountain-50);
    color: var(--mountain-700);
    backdrop-filter: none;
}

.movie-card h3 {
    margin: 12px 0 8px;
    font-size: 19px;
    line-height: 1.28;
}

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

.movie-card p {
    margin: 0;
    min-height: 52px;
    color: var(--mist-700);
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-action {
    display: inline-flex;
    margin-top: 14px;
    color: var(--mountain-600);
    font-weight: 800;
}

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

.category-panel {
    position: relative;
    min-height: 260px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    color: white;
    background: var(--ink-900);
    box-shadow: var(--shadow-soft);
}

.category-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.68;
    transition: transform 0.35s ease;
}

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

.category-panel span,
.category-panel strong {
    position: absolute;
    left: 22px;
    right: 22px;
    z-index: 1;
}

.category-panel span {
    bottom: 82px;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.category-panel strong {
    bottom: 24px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 600;
}

.category-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.76));
}

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

.rank-card,
.side-card,
.detail-card {
    border: 1px solid var(--mist-200);
    border-radius: var(--radius-lg);
    background: white;
    box-shadow: var(--shadow-soft);
}

.rank-card {
    padding: 22px;
    position: sticky;
    top: 96px;
}

.rank-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.rank-row a {
    display: grid;
    grid-template-columns: 44px 58px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 16px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.rank-row a:hover {
    background: var(--mountain-50);
    transform: translateX(2px);
}

.rank-number {
    color: var(--mountain-600);
    font-size: 19px;
    font-weight: 900;
    font-variant-numeric: tabular-nums;
}

.rank-row img {
    width: 58px;
    height: 76px;
    border-radius: 12px;
    object-fit: cover;
    background: var(--mist-100);
}

.rank-copy {
    min-width: 0;
    display: grid;
    gap: 2px;
}

.rank-copy strong {
    overflow: hidden;
    color: var(--ink-900);
    font-size: 15px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.rank-copy em,
.rank-copy small {
    overflow: hidden;
    color: var(--mist-600);
    font-size: 12px;
    font-style: normal;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.rank-watch {
    color: var(--mountain-600);
    font-size: 13px;
    font-weight: 800;
}

.full-rank {
    gap: 10px;
}

.full-rank .rank-row a {
    grid-template-columns: 60px 74px minmax(0, 1fr) auto;
    padding: 14px;
    border: 1px solid var(--mist-200);
    background: white;
    box-shadow: var(--shadow-soft);
}

.full-rank .rank-row img {
    width: 74px;
    height: 96px;
}

.page-hero {
    background: radial-gradient(circle at 20% 0%, rgba(44, 138, 168, 0.18), transparent 36%), linear-gradient(180deg, white, var(--mist-50));
    border-bottom: 1px solid var(--mist-200);
}

.page-hero .section-shell {
    padding-top: 72px;
    padding-bottom: 50px;
}

.page-hero h1 {
    font-size: clamp(40px, 7vw, 74px);
    line-height: 1.02;
}

.chip-row {
    margin-top: 22px;
}

.chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    background: white;
    border: 1px solid var(--mist-200);
    color: var(--ink-700);
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(30, 48, 58, 0.04);
}

.chip:hover,
.chip.is-active {
    background: var(--mountain-600);
    border-color: var(--mountain-600);
    color: white;
}

.inline-filter {
    max-width: 720px;
    margin-top: 26px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 28px;
    padding-bottom: 12px;
    color: var(--mist-600);
    font-size: 14px;
}

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

.breadcrumb strong {
    overflow: hidden;
    max-width: 60vw;
    color: var(--ink-700);
    white-space: nowrap;
    text-overflow: ellipsis;
}

.watch-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 30px;
    align-items: start;
    padding-top: 20px;
}

.video-frame {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: black;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
    aspect-ratio: 16 / 9;
}

.video-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: black;
}

.player-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.62));
    opacity: 1;
    transition: opacity 0.2s ease;
}

.video-frame.is-playing .player-overlay {
    opacity: 0;
}

.video-frame:hover .player-overlay,
.video-frame:focus-within .player-overlay {
    opacity: 1;
}

.player-overlay button {
    pointer-events: auto;
}

.play-round {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 84px;
    height: 84px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--mountain-600);
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease, background 0.2s ease;
}

.play-round span {
    display: inline-block;
    margin-left: 4px;
    font-size: 36px;
    line-height: 1;
}

.play-round:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.08);
}

.player-bar {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.player-bar button {
    min-width: 74px;
    min-height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: white;
    font-weight: 800;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.player-bar button:hover {
    background: rgba(255, 255, 255, 0.28);
}

.detail-card {
    margin-top: 24px;
    padding: 28px;
}

.detail-title-row {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 20px;
}

.detail-card h1 {
    font-size: clamp(32px, 5vw, 54px);
}

.detail-card h2 {
    margin: 30px 0 10px;
    color: var(--ink-900);
    font-size: 24px;
}

.detail-card .lead-text {
    margin-top: 22px;
    color: var(--ink-700);
    font-size: 20px;
    font-weight: 700;
}

.detail-tags {
    margin-top: 14px;
}

.watch-side {
    display: grid;
    gap: 22px;
    position: sticky;
    top: 96px;
}

.side-card {
    padding: 20px;
}

.side-card h2 {
    margin: 0 0 16px;
    font-size: 22px;
}

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

.side-link {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 8px;
    border-radius: 14px;
    transition: background 0.2s ease;
}

.side-link:hover {
    background: var(--mountain-50);
}

.side-link img {
    width: 64px;
    height: 82px;
    border-radius: 12px;
    object-fit: cover;
    background: var(--mist-100);
}

.side-link span {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.side-link strong,
.side-link em {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.side-link strong {
    color: var(--ink-900);
    font-size: 15px;
}

.side-link em {
    color: var(--mist-600);
    font-size: 12px;
    font-style: normal;
}

.site-footer {
    margin-top: 48px;
    background: var(--ink-900);
    color: var(--mist-300);
}

.footer-shell {
    max-width: 1280px;
    margin: 0 auto;
    padding: 54px 24px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 34px;
}

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

.site-footer p {
    max-width: 360px;
    color: var(--mist-400);
}

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

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

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 24px;
    text-align: center;
    color: var(--mist-400);
    font-size: 14px;
}

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

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

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

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

    .split-section,
    .watch-shell {
        grid-template-columns: 1fr;
    }

    .rank-card,
    .watch-side {
        position: static;
    }
}

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

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-shell {
        height: 68px;
        padding: 0 18px;
    }

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

    .hero {
        min-height: 640px;
    }

    .hero-content {
        left: 22px;
        right: 22px;
        bottom: 84px;
    }

    .hero-control {
        top: auto;
        bottom: 22px;
        transform: none;
    }

    .hero-control:hover {
        transform: scale(1.04);
    }

    .hero-prev {
        left: 22px;
    }

    .hero-next {
        right: 22px;
    }

    .hero-dots {
        bottom: 43px;
    }

    .intro-strip,
    .footer-shell {
        grid-template-columns: 1fr;
    }

    .section-shell {
        padding: 42px 18px;
    }

    .detail-title-row {
        display: grid;
    }
}

@media (max-width: 640px) {
    .library-grid,
    .movie-grid,
    .compact-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

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

    .wide-search,
    .mobile-search {
        grid-template-columns: 1fr;
    }

    .wide-search button,
    .mobile-search button {
        min-height: 46px;
    }

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

    .rank-watch {
        display: none;
    }

    .full-rank .rank-row img {
        width: 58px;
        height: 76px;
    }

    .player-bar {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .player-bar button {
        min-width: 58px;
        min-height: 38px;
        font-size: 13px;
    }

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

    .play-round span {
        font-size: 30px;
    }

    .detail-card {
        padding: 20px;
    }
}
