:root {
    --bg: #030712;
    --bg-soft: #0b1120;
    --panel: rgba(17, 24, 39, 0.76);
    --panel-strong: rgba(17, 24, 39, 0.94);
    --border: rgba(34, 211, 238, 0.28);
    --border-soft: rgba(148, 163, 184, 0.16);
    --text: #f9fafb;
    --muted: #9ca3af;
    --muted-2: #64748b;
    --cyan: #22d3ee;
    --pink: #f472b6;
    --purple: #a78bfa;
    --yellow: #facc15;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
    --radius: 22px;
    --radius-sm: 14px;
    --max: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background:
        radial-gradient(circle at 10% 8%, rgba(34, 211, 238, 0.18), transparent 34rem),
        radial-gradient(circle at 85% 12%, rgba(244, 114, 182, 0.15), transparent 32rem),
        linear-gradient(180deg, #030712 0%, #08111f 46%, #030712 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.62), transparent 78%);
    z-index: -1;
}

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(3, 7, 18, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    width: min(100% - 32px, var(--max));
    height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    white-space: nowrap;
    background: linear-gradient(90deg, var(--cyan), var(--pink), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-mark {
    width: 32px;
    height: 32px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    color: #03111d;
    background: linear-gradient(135deg, var(--cyan), var(--pink));
    box-shadow: 0 0 28px rgba(34, 211, 238, 0.38);
}

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

.nav-link {
    color: #d1d5db;
    font-weight: 700;
    transition: color 0.25s ease, text-shadow 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--cyan);
    text-shadow: 0 0 22px rgba(34, 211, 238, 0.45);
}

.header-search {
    width: 310px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.72);
}

.header-search input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    color: var(--text);
    background: transparent;
    padding: 8px 12px;
}

.header-search button,
.primary-button,
.ghost-button,
.section-action,
.filter-chip {
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.header-search button,
.primary-button {
    color: #04121c;
    background: linear-gradient(90deg, var(--cyan), var(--pink));
    box-shadow: 0 16px 38px rgba(34, 211, 238, 0.24);
}

.header-search button {
    padding: 8px 14px;
}

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

.ghost-button,
.section-action,
.filter-chip {
    color: var(--cyan);
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid var(--border);
}

.primary-button:hover,
.ghost-button:hover,
.section-action:hover,
.filter-chip:hover,
.filter-chip.active {
    transform: translateY(-2px);
}

.filter-chip.active,
.section-action:hover,
.ghost-button:hover {
    color: #04121c;
    background: linear-gradient(90deg, var(--cyan), var(--pink));
}

.mobile-menu-button {
    display: none;
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--cyan);
    background: rgba(15, 23, 42, 0.72);
    padding: 8px 12px;
}

.mobile-nav {
    display: none;
    width: min(100% - 32px, var(--max));
    margin: 0 auto 16px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--panel-strong);
}

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

.mobile-nav a {
    padding: 10px 12px;
    border-radius: 12px;
    color: #d1d5db;
    background: rgba(255, 255, 255, 0.04);
}

.content-shell {
    width: min(100% - 32px, var(--max));
    margin: 0 auto;
}

.hero {
    position: relative;
    min-height: clamp(620px, 78vh, 840px);
    overflow: hidden;
    border-bottom: 1px solid var(--border-soft);
}

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

.hero-slide {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3, 7, 18, 0.95) 0%, rgba(3, 7, 18, 0.72) 42%, rgba(3, 7, 18, 0.12) 100%),
        linear-gradient(0deg, #030712 0%, rgba(3, 7, 18, 0.18) 42%, rgba(3, 7, 18, 0.28) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(100% - 32px, var(--max));
    min-height: clamp(620px, 78vh, 840px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 820px;
    padding-top: 60px;
}

.hero-badge,
.section-kicker {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    color: var(--cyan);
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(8, 47, 73, 0.36);
    padding: 6px 12px;
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero h1,
.page-hero h1,
.detail-info h1 {
    margin: 18px 0 14px;
    font-size: clamp(2.35rem, 7vw, 5.8rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
    text-wrap: balance;
}

.hero p,
.page-hero p,
.detail-one-line {
    max-width: 760px;
    color: #cbd5e1;
    font-size: clamp(1rem, 2.1vw, 1.25rem);
}

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

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

.hero-tags span,
.tag-row span,
.genre-pills span {
    color: #dbeafe;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.72);
    padding: 5px 10px;
    font-size: 0.82rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

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

.hero-dot {
    width: 12px;
    height: 12px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
}

.hero-dot.active {
    width: 34px;
    border-color: var(--cyan);
    background: var(--cyan);
}

.site-stats {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: -54px;
    margin-bottom: 72px;
}

.stat-card,
.rank-panel,
.movie-card,
.category-tile,
.filter-panel,
.page-hero,
.detail-hero,
.player-section,
.detail-article,
.detail-side-card,
.category-overview-block,
.table-wrap {
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    background: var(--panel);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.stat-card {
    padding: 24px;
}

.stat-card strong {
    display: block;
    color: var(--cyan);
    font-size: 2rem;
    line-height: 1;
}

.stat-card span {
    color: var(--muted);
}

.section-heading,
.category-overview-title {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.section-heading h2,
.category-overview-title h2,
.rank-panel h2,
.detail-article h2,
.detail-side-card h2 {
    margin: 8px 0 4px;
    font-size: clamp(1.45rem, 3vw, 2.4rem);
    line-height: 1.1;
}

.section-heading p,
.category-overview-title p,
.rank-panel p {
    color: var(--muted);
    margin: 0;
}

.section-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    white-space: nowrap;
}

.split-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 24px;
    margin-bottom: 86px;
}

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

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

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

.movie-card {
    overflow: hidden;
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.movie-card:hover {
    transform: translateY(-5px);
    border-color: rgba(34, 211, 238, 0.58);
    box-shadow: 0 26px 88px rgba(34, 211, 238, 0.12);
}

.movie-card-link {
    display: grid;
    min-height: 100%;
}

.movie-poster {
    position: relative;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(244, 114, 182, 0.08)),
        #0f172a;
}

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

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

.play-float {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    color: white;
    border-radius: 50%;
    background: rgba(34, 211, 238, 0.78);
    transform: translate(-50%, -50%) scale(0.88);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    box-shadow: 0 0 34px rgba(34, 211, 238, 0.42);
}

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

.rank-score {
    position: absolute;
    left: 10px;
    top: 10px;
    color: #06111a;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--yellow), var(--pink));
    padding: 4px 8px;
    font-size: 0.72rem;
}

.movie-card-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
}

.movie-card-content h3 {
    margin: 0;
    min-height: 2.8em;
    font-size: 1rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-card-content p {
    min-height: 3.15em;
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted-2);
    font-size: 0.82rem;
}

.movie-meta span:first-child {
    color: var(--yellow);
}

.tag-row {
    min-height: 29px;
}

.tag-row span {
    font-size: 0.74rem;
    padding: 3px 8px;
}

.rank-panel {
    padding: 22px;
    height: fit-content;
}

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

.rank-mini-list {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.rank-mini-item {
    display: grid;
    grid-template-columns: 38px 48px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 9px;
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 14px;
    background: rgba(2, 6, 23, 0.36);
}

.rank-mini-item:hover {
    border-color: var(--border);
}

.rank-index {
    color: var(--cyan);
    font-weight: 900;
}

.rank-mini-item img {
    width: 48px;
    height: 64px;
    object-fit: cover;
    border-radius: 10px;
    background: #0f172a;
}

.rank-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-heat {
    color: var(--pink);
    font-weight: 900;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 86px;
}

.category-tile {
    position: relative;
    min-height: 240px;
    overflow: hidden;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.28s ease, border-color 0.28s ease;
}

.category-tile:hover {
    transform: translateY(-5px);
    border-color: var(--border);
}

.category-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.38;
    transition: transform 0.45s ease, opacity 0.45s ease;
}

.category-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(3, 7, 18, 0.96), rgba(3, 7, 18, 0.24));
}

.category-tile span,
.category-tile strong,
.category-tile em {
    position: relative;
    z-index: 2;
}

.category-tile span {
    color: var(--cyan);
    font-weight: 900;
}

.category-tile strong {
    font-size: 1.4rem;
}

.category-tile em {
    color: var(--muted);
    font-style: normal;
    font-size: 0.9rem;
}

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

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    color: var(--muted);
    margin: 18px 0;
    font-size: 0.92rem;
}

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

.page-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(34px, 6vw, 74px);
    margin-bottom: 32px;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: -20% -10% auto auto;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.22), transparent 64%);
}

.small-page-hero h1,
.category-hero h1,
.ranking-hero h1 {
    font-size: clamp(2.3rem, 6vw, 4.8rem);
}

.filter-panel {
    display: grid;
    gap: 16px;
    padding: 18px;
    margin-bottom: 28px;
}

.filter-search {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-weight: 800;
}

.filter-search input {
    width: 100%;
    color: var(--text);
    border: 1px solid var(--border);
    outline: 0;
    border-radius: 16px;
    background: rgba(2, 6, 23, 0.54);
    padding: 13px 14px;
}

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

.filter-chip {
    min-height: 36px;
    padding: 0 14px;
}

.filter-result {
    margin: 0;
    color: var(--muted);
}

.category-layout {
    align-items: start;
}

.category-overview-block {
    padding: 24px;
    margin-bottom: 24px;
}

.ranking-table-section {
    margin-top: 70px;
}

.table-wrap {
    overflow-x: auto;
    padding: 10px;
}

.rank-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.rank-table th,
.rank-table td {
    padding: 14px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    text-align: left;
}

.rank-table th {
    color: var(--cyan);
}

.rank-table a:hover {
    color: var(--cyan);
}

.rank-table-index {
    display: inline-grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    color: #06111a;
    background: linear-gradient(135deg, var(--cyan), var(--pink));
    font-weight: 900;
}

.detail-hero {
    display: grid;
    grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
    gap: clamp(24px, 5vw, 56px);
    align-items: center;
    padding: clamp(22px, 4vw, 42px);
    margin-bottom: 32px;
}

.detail-poster {
    overflow: hidden;
    border-radius: var(--radius);
    background: #0f172a;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

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

.detail-info h1 {
    font-size: clamp(2.2rem, 5vw, 5rem);
}

.detail-meta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 24px 0;
}

.detail-meta-grid div {
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 16px;
    background: rgba(2, 6, 23, 0.42);
    padding: 14px;
}

.detail-meta-grid strong,
.detail-meta-grid span {
    display: block;
}

.detail-meta-grid strong {
    color: var(--muted);
    font-size: 0.82rem;
}

.detail-meta-grid span {
    color: var(--text);
    font-weight: 900;
}

.player-section {
    padding: clamp(18px, 4vw, 34px);
    margin-bottom: 32px;
}

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

.static-player {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: #020617;
    aspect-ratio: 16 / 9;
}

.player-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #020617;
}

.player-button {
    position: absolute;
    left: 50%;
    top: 50%;
    display: grid;
    place-items: center;
    gap: 8px;
    width: 132px;
    height: 132px;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    background: rgba(34, 211, 238, 0.78);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 58px rgba(34, 211, 238, 0.34);
}

.player-button span {
    font-size: 2.1rem;
    line-height: 1;
}

.static-player.playing .player-button {
    display: none;
}

.player-status {
    position: absolute;
    left: 18px;
    bottom: 14px;
    margin: 0;
    color: #dbeafe;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.62);
    padding: 6px 10px;
    font-size: 0.86rem;
}

.detail-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
    margin-bottom: 70px;
}

.detail-article,
.detail-side-card {
    padding: clamp(20px, 4vw, 34px);
}

.detail-article p {
    color: #cbd5e1;
    font-size: 1.04rem;
}

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

.detail-side-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.detail-side-card li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    padding-bottom: 12px;
}

.detail-side-card span {
    color: var(--muted);
}

.detail-side-card a,
.detail-side-card strong {
    color: var(--cyan);
}

.related-section {
    margin-bottom: 70px;
}

.site-footer {
    margin-top: 80px;
    border-top: 1px solid var(--border-soft);
    background: rgba(3, 7, 18, 0.86);
}

.footer-inner {
    width: min(100% - 32px, var(--max));
    margin: 0 auto;
    padding: 44px 0;
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) 1fr 1fr;
    gap: 32px;
}

.footer-brand p,
.footer-links a,
.footer-copy {
    color: var(--muted);
}

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

.footer-links h3 {
    margin: 0 0 8px;
    color: var(--cyan);
}

.footer-links a:hover {
    color: var(--cyan);
}

.footer-copy {
    width: min(100% - 32px, var(--max));
    margin: 0 auto;
    padding: 18px 0 28px;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    text-align: center;
}

.hidden-by-filter {
    display: none !important;
}

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

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

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

    .split-showcase,
    .detail-content-grid {
        grid-template-columns: 1fr;
    }

    .sticky-panel {
        position: static;
    }
}

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

    .mobile-menu-button {
        display: inline-flex;
    }

    .site-stats {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 24px;
    }

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

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

    .section-heading,
    .category-overview-title {
        align-items: flex-start;
        flex-direction: column;
    }

    .detail-hero {
        grid-template-columns: 1fr;
    }

    .detail-poster {
        max-width: 320px;
        margin: 0 auto;
    }

    .detail-meta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .site-logo {
        font-size: 1.06rem;
    }

    .logo-mark {
        width: 28px;
        height: 28px;
    }

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

    .hero h1,
    .page-hero h1,
    .detail-info h1 {
        letter-spacing: -0.04em;
    }

    .site-stats,
    .movie-grid,
    .compact-grid,
    .mini-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 18px;
    }

    .category-tile {
        min-height: 210px;
    }

    .rank-mini-item {
        grid-template-columns: 30px 42px minmax(0, 1fr);
    }

    .rank-heat {
        display: none;
    }

    .detail-meta-grid {
        grid-template-columns: 1fr;
    }

    .player-button {
        width: 104px;
        height: 104px;
    }

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