:root {
    --bg: #f8fafc;
    --surface: #ffffff;
    --surface-soft: #f1f5f9;
    --ink: #0f172a;
    --muted: #64748b;
    --line: #e2e8f0;
    --sky: #0ea5e9;
    --sky-dark: #0284c7;
    --rose: #f43f5e;
    --amber: #f59e0b;
    --shadow: 0 16px 48px rgba(15, 23, 42, 0.12);
    --soft-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: linear-gradient(180deg, #f8fafc 0%, #eef6ff 42%, #ffffff 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    backdrop-filter: blur(18px);
}

.header-inner {
    width: min(1280px, calc(100% - 32px));
    height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.brand-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--sky), #38bdf8 45%, #a855f7 100%);
    border-radius: 14px;
    box-shadow: 0 12px 26px rgba(14, 165, 233, 0.28);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.nav-link,
.mobile-nav-link {
    color: #475569;
    font-weight: 700;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link {
    padding: 10px 14px;
}

.nav-link:hover,
.nav-link.active,
.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--sky-dark);
    background: #e0f2fe;
}

.header-search {
    width: 286px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: 999px;
}

.header-search input,
.mobile-search input,
.page-search input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    color: var(--ink);
    background: transparent;
}

.header-search button,
.mobile-search button,
.page-search button {
    border: 0;
    color: #ffffff;
    background: var(--sky);
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.header-search button:hover,
.mobile-search button:hover,
.page-search button:hover {
    background: var(--sky-dark);
    transform: translateY(-1px);
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    background: #e0f2fe;
    padding: 10px;
    cursor: pointer;
}

.mobile-menu-button span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--sky-dark);
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto 16px;
    padding: 12px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--soft-shadow);
}

.mobile-nav.is-open {
    display: grid;
    gap: 8px;
}

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

.mobile-search {
    display: flex;
    gap: 8px;
    padding: 8px;
    background: #f8fafc;
    border-radius: 18px;
}

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

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

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    filter: saturate(1.08);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.92) 0%, rgba(2, 6, 23, 0.66) 42%, rgba(2, 6, 23, 0.2) 100%),
        linear-gradient(0deg, rgba(2, 6, 23, 0.88) 0%, rgba(2, 6, 23, 0.08) 56%);
}

.hero-content {
    position: absolute;
    inset: 0;
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 54px;
    align-items: center;
}

.hero-copy {
    max-width: 760px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 8px 12px;
    color: #e0f2fe;
    background: rgba(14, 165, 233, 0.22);
    border: 1px solid rgba(125, 211, 252, 0.32);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.hero h1,
.page-hero h1,
.detail-copy h1 {
    margin: 0;
    font-size: clamp(38px, 6vw, 78px);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.hero p,
.page-hero p,
.detail-one-line {
    max-width: 780px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(16px, 2vw, 20px);
}

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

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

.hero-tags span,
.detail-tags a,
.tag-row span {
    display: inline-flex;
    color: #075985;
    background: #e0f2fe;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 13px;
    font-weight: 700;
}

.hero-actions,
.detail-copy .primary-button {
    margin-top: 30px;
}

.primary-button,
.secondary-button,
.text-link,
.section-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
    padding: 12px 22px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--sky), #38bdf8);
    box-shadow: 0 16px 34px rgba(14, 165, 233, 0.34);
}

.secondary-button {
    margin-left: 10px;
    padding: 11px 20px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.32);
    backdrop-filter: blur(10px);
}

.primary-button:hover,
.secondary-button:hover,
.text-link:hover,
.section-more:hover {
    transform: translateY(-2px);
}

.hero-poster {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 28px 76px rgba(2, 6, 23, 0.46);
    transform: rotate(2deg);
}

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

.hero-poster span,
.poster-play {
    position: absolute;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: rgba(14, 165, 233, 0.92);
    border-radius: 50%;
    box-shadow: 0 14px 34px rgba(14, 165, 233, 0.35);
}

.hero-poster span {
    left: 50%;
    top: 50%;
    width: 72px;
    height: 72px;
    transform: translate(-50%, -50%);
    font-size: 24px;
}

.hero-control {
    position: absolute;
    left: 50%;
    bottom: 92px;
    z-index: 5;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

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

.hero-dot.is-active {
    width: 34px;
    background: #ffffff;
}

.hero-category-bar {
    position: absolute;
    left: 50%;
    bottom: 24px;
    z-index: 5;
    width: min(1080px, calc(100% - 32px));
    display: flex;
    gap: 10px;
    padding: 12px;
    overflow-x: auto;
    color: #e0f2fe;
    background: rgba(15, 23, 42, 0.64);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 22px;
    backdrop-filter: blur(16px);
    transform: translateX(-50%);
}

.hero-category-bar a {
    flex: 0 0 auto;
    padding: 9px 13px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
}

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

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

.section-head h2,
.ranking-panel h2,
.detail-article h2,
.site-footer h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

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

.section-more,
.text-link {
    color: var(--sky-dark);
    background: #e0f2fe;
    padding: 10px 16px;
}

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

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

.movie-card {
    overflow: hidden;
    background: var(--surface);
    border: 1px solid rgba(226, 232, 240, 0.92);
    border-radius: 22px;
    box-shadow: var(--soft-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.movie-card:hover {
    border-color: rgba(14, 165, 233, 0.38);
    box-shadow: var(--shadow);
    transform: translateY(-6px);
}

.movie-poster {
    position: relative;
    display: block;
    overflow: hidden;
    background: #e2e8f0;
}

.movie-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

.poster-play {
    right: 12px;
    bottom: 12px;
    width: 38px;
    height: 38px;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.rank-badge {
    position: absolute;
    left: 10px;
    top: 10px;
    display: grid;
    place-items: center;
    min-width: 34px;
    height: 34px;
    padding: 0 8px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber), var(--rose));
    border-radius: 999px;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(244, 63, 94, 0.26);
}

.movie-info {
    padding: 14px;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.movie-card h2 {
    margin: 8px 0 6px;
    font-size: 17px;
    line-height: 1.3;
}

.movie-card h2 a {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

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

.tag-row span {
    padding: 4px 8px;
    font-size: 12px;
}

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

.ranking-panel {
    padding: 22px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: var(--radius);
    box-shadow: var(--soft-shadow);
    backdrop-filter: blur(16px);
}

.sticky-panel {
    position: sticky;
    top: 92px;
}

.mini-list {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.mini-card {
    position: relative;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 8px;
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: 18px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.mini-card:hover {
    background: #e0f2fe;
    transform: translateX(3px);
}

.mini-card img {
    width: 58px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 14px;
}

.mini-card-body {
    min-width: 0;
}

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

.mini-card small {
    color: var(--muted);
}

.mini-rank {
    position: absolute;
    right: 10px;
    top: 10px;
    color: var(--rose);
    font-weight: 900;
}

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

.category-card,
.category-overview-card {
    display: block;
    padding: 22px;
    background: linear-gradient(135deg, #ffffff, #eff6ff);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: var(--radius);
    box-shadow: var(--soft-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover,
.category-overview-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.category-card strong,
.category-overview-card h2 {
    display: block;
    margin: 0 0 10px;
    font-size: 22px;
    letter-spacing: -0.02em;
}

.category-card p,
.category-overview-card p {
    margin: 0 0 14px;
    color: var(--muted);
}

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

.category-card span,
.category-title-row span {
    color: #075985;
    background: #e0f2fe;
    border-radius: 999px;
    padding: 5px 9px;
    font-size: 12px;
    font-weight: 700;
}

.category-overview-card {
    display: grid;
    gap: 18px;
}

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

.category-cover-stack img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 14px;
}

.page-hero {
    position: relative;
    width: min(1280px, calc(100% - 32px));
    margin: 36px auto 0;
    overflow: hidden;
    color: #ffffff;
    background: radial-gradient(circle at 20% 20%, rgba(56, 189, 248, 0.5), transparent 32%), linear-gradient(135deg, #0f172a 0%, #075985 54%, #7c3aed 100%);
    border-radius: 34px;
    box-shadow: var(--shadow);
}

.page-hero > div {
    position: relative;
    z-index: 2;
    padding: clamp(32px, 6vw, 78px);
}

.small-hero,
.search-hero,
.category-hero {
    min-height: 320px;
}

.ranking-hero {
    min-height: 430px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 1fr;
    align-items: stretch;
}

.ranking-hero > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.62;
}

.page-search {
    width: min(620px, 100%);
    margin-top: 24px;
    display: flex;
    gap: 10px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 999px;
}

.page-search input {
    padding: 0 12px;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 34px;
}

.pagination a {
    min-width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    padding: 0 14px;
    color: var(--sky-dark);
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-weight: 800;
}

.pagination a.active,
.pagination a:hover {
    color: #ffffff;
    background: var(--sky);
    border-color: var(--sky);
}

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

.detail-hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px) saturate(1.08);
    transform: scale(1.03);
}

.detail-hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.78) 44%, rgba(2, 6, 23, 0.34) 100%),
        linear-gradient(0deg, rgba(2, 6, 23, 0.88), transparent 52%);
}

.detail-hero-inner {
    position: relative;
    z-index: 2;
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 34px 0 70px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.detail-grid {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 46px;
    align-items: center;
}

.detail-poster {
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 28px 76px rgba(2, 6, 23, 0.45);
}

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

.detail-copy {
    max-width: 820px;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0;
}

.detail-meta span {
    padding: 8px 12px;
    color: #e0f2fe;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    font-weight: 800;
}

.player-section {
    padding-top: 36px;
}

.player-frame {
    position: relative;
    overflow: hidden;
    background: #020617;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.player-frame video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #020617;
    cursor: pointer;
}

.player-start {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 92px;
    height: 92px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: rgba(14, 165, 233, 0.92);
    border: 2px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;
    box-shadow: 0 20px 48px rgba(14, 165, 233, 0.4);
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 4;
}

.player-start span {
    padding-left: 5px;
    font-size: 34px;
}

.player-start:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

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

.detail-article {
    padding: 28px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--soft-shadow);
}

.detail-article h2 + p {
    margin-top: 12px;
}

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

.site-footer {
    margin-top: 46px;
    background: #ffffff;
    border-top: 1px solid var(--line);
}

.footer-inner {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 44px 0;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 36px;
}

.site-footer p {
    max-width: 560px;
    color: var(--muted);
}

.site-footer h2 {
    font-size: 18px;
    margin-bottom: 12px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-links a {
    color: var(--muted);
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 12px;
    font-weight: 700;
}

.footer-links a:hover {
    color: var(--sky-dark);
    background: #e0f2fe;
}

.footer-bottom {
    padding: 18px;
    color: var(--muted);
    text-align: center;
    border-top: 1px solid var(--line);
}

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

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

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

    .header-search {
        display: none;
    }
}

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

    .mobile-menu-button {
        display: block;
        margin-left: auto;
    }

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

    .hero {
        min-height: 760px;
    }

    .hero-content {
        padding-top: 52px;
        padding-bottom: 148px;
        align-content: center;
    }

    .hero-poster {
        max-width: 240px;
        transform: none;
    }

    .detail-poster {
        max-width: 260px;
    }

    .ranking-hero > img {
        height: 260px;
    }

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

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

@media (max-width: 640px) {
    .header-inner {
        height: 64px;
    }

    .brand {
        font-size: 15px;
    }

    .brand-mark {
        width: 34px;
        height: 34px;
        border-radius: 12px;
    }

    .hero {
        min-height: 720px;
    }

    .hero-content {
        gap: 24px;
    }

    .hero h1,
    .page-hero h1,
    .detail-copy h1 {
        font-size: 40px;
    }

    .hero p,
    .page-hero p,
    .detail-one-line {
        font-size: 16px;
    }

    .hero-category-bar {
        bottom: 18px;
    }

    .hero-control {
        bottom: 108px;
    }

    .content-section {
        padding: 38px 0;
    }

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

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

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

    .movie-info {
        padding: 12px;
    }

    .movie-card h2 {
        font-size: 16px;
    }

    .page-hero {
        border-radius: 24px;
    }

    .page-search {
        border-radius: 22px;
        flex-direction: column;
        align-items: stretch;
    }

    .detail-hero {
        min-height: auto;
    }

    .detail-hero-inner {
        padding-bottom: 42px;
    }

    .player-start {
        width: 72px;
        height: 72px;
    }

    .player-start span {
        font-size: 26px;
    }
}
