:root {
    --stone-50: #fafaf9;
    --stone-100: #f5f5f4;
    --stone-200: #e7e5e4;
    --stone-300: #d6d3d1;
    --stone-500: #78716c;
    --stone-600: #57534e;
    --stone-700: #44403c;
    --stone-800: #292524;
    --stone-900: #1c1917;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-700: #b45309;
    --white: #ffffff;
    --shadow-soft: 0 18px 45px rgba(41, 37, 36, 0.14);
    --shadow-card: 0 10px 28px rgba(41, 37, 36, 0.12);
    --radius-xl: 1rem;
    --radius-2xl: 1.4rem;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.site-body {
    margin: 0;
    min-height: 100vh;
    color: var(--stone-800);
    background: var(--stone-50);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", sans-serif;
}

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

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--stone-200);
    box-shadow: 0 8px 22px rgba(41, 37, 36, 0.06);
    backdrop-filter: blur(16px);
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    gap: 24px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: max-content;
}

.logo-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-600), var(--amber-700));
    border-radius: 13px;
    box-shadow: 0 12px 24px rgba(217, 119, 6, 0.26);
}

.logo-title {
    display: block;
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--stone-800);
}

.logo-subtitle {
    display: block;
    margin-top: 4px;
    font-size: 0.76rem;
    color: var(--stone-500);
}

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
}

.primary-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    font-weight: 650;
    color: var(--stone-700);
    transition: color 0.2s ease;
}

.primary-nav a::after {
    position: absolute;
    right: 0;
    bottom: 1px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--amber-600);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.primary-nav a:hover,
.primary-nav a.active {
    color: var(--amber-600);
}

.primary-nav a:hover::after,
.primary-nav a.active::after {
    transform: scaleX(1);
}

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

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

.site-search input {
    width: 230px;
    height: 42px;
    border: 1px solid var(--stone-300);
    border-radius: 999px;
    outline: 0;
    padding: 0 16px;
    color: var(--stone-800);
    background: var(--white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-search input:focus {
    border-color: var(--amber-500);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.16);
}

.site-search button,
.mobile-menu-button,
.btn {
    border: 0;
    cursor: pointer;
    font: inherit;
}

.site-search button {
    height: 42px;
    padding: 0 18px;
    color: var(--white);
    background: var(--amber-600);
    border-radius: 999px;
    font-weight: 700;
    transition: background 0.2s ease, transform 0.2s ease;
}

.site-search button:hover {
    background: var(--amber-700);
    transform: translateY(-1px);
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    color: var(--stone-700);
    background: var(--stone-100);
    border-radius: 12px;
    font-size: 1.2rem;
}

.mobile-nav {
    display: none;
    padding: 0 0 18px;
    border-top: 1px solid var(--stone-200);
}

.mobile-nav.is-open {
    display: block;
}

.mobile-nav a {
    display: block;
    padding: 12px 6px;
    color: var(--stone-700);
    border-radius: 10px;
    font-weight: 700;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--amber-600);
    background: var(--stone-100);
}

.hero {
    position: relative;
    min-height: 610px;
    overflow: hidden;
    color: var(--white);
    background: var(--stone-900);
}

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

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

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
}

.hero-slide::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(to top, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.58) 48%, rgba(0, 0, 0, 0.18));
}

.hero-content-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    z-index: 2;
    padding: 88px 0 86px;
}

.hero-content {
    max-width: 820px;
}

.hero-kicker,
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--white);
    background: rgba(245, 158, 11, 0.92);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.hero h1 {
    margin: 18px 0 16px;
    font-size: clamp(2.25rem, 5vw, 4.9rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
    max-width: 850px;
}

.hero p {
    max-width: 760px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.8;
}

.hero-meta,
.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin: 0 0 26px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.94rem;
}

.hero-meta span,
.movie-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    backdrop-filter: blur(10px);
}

.btn {
    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, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
    color: var(--white);
    background: var(--amber-600);
    box-shadow: 0 16px 32px rgba(217, 119, 6, 0.28);
}

.btn-primary:hover {
    background: var(--amber-700);
    transform: translateY(-2px);
    box-shadow: 0 22px 45px rgba(217, 119, 6, 0.32);
}

.btn-light {
    color: var(--stone-900);
    background: var(--white);
}

.btn-ghost {
    color: var(--stone-700);
    background: var(--stone-100);
}

.hero-controls {
    position: absolute;
    right: 24px;
    bottom: 28px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-arrow,
.hero-dot {
    border: 0;
    cursor: pointer;
}

.hero-arrow {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: var(--white);
    background: rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    backdrop-filter: blur(14px);
    font-size: 1.5rem;
    transition: background 0.2s ease, transform 0.2s ease;
}

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

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

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

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

.section {
    padding: 72px 0;
}

.section-soft {
    background: linear-gradient(180deg, var(--stone-50), var(--white));
}

.section-white {
    background: var(--white);
}

.section-muted {
    background: linear-gradient(180deg, var(--stone-50), var(--stone-100));
}

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

.section-eyebrow {
    margin: 0 0 8px;
    color: var(--amber-600);
    font-weight: 800;
    letter-spacing: 0.06em;
}

.section-title {
    margin: 0;
    color: var(--stone-800);
    font-size: clamp(1.65rem, 3vw, 2.55rem);
    line-height: 1.15;
}

.section-desc {
    max-width: 760px;
    margin: 12px 0 0;
    color: var(--stone-600);
    line-height: 1.8;
}

.view-more {
    color: var(--amber-600);
    font-weight: 800;
    white-space: nowrap;
}

.view-more:hover {
    color: var(--amber-700);
}

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

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

.movie-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(214, 211, 209, 0.72);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
    border-color: rgba(245, 158, 11, 0.34);
    box-shadow: 0 22px 50px rgba(41, 37, 36, 0.18);
    transform: translateY(-5px);
}

.poster-wrap {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--stone-200);
}

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

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

.poster-wrap::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(to top, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.04) 52%);
    opacity: 0.9;
}

.poster-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    max-width: calc(100% - 24px);
    padding: 5px 10px;
    color: var(--white);
    background: rgba(41, 37, 36, 0.82);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 750;
    backdrop-filter: blur(10px);
}

.poster-year {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    padding: 5px 10px;
    color: var(--white);
    background: rgba(245, 158, 11, 0.92);
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 800;
}

.card-play {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    color: var(--amber-600);
    font-size: 2.2rem;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.card-play span {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.26);
}

.movie-card:hover .card-play {
    opacity: 1;
}

.movie-info {
    padding: 16px;
}

.movie-info h2,
.movie-info h3 {
    margin: 0 0 9px;
    color: var(--stone-800);
    font-size: 1.05rem;
    line-height: 1.35;
    transition: color 0.2s ease;
}

.movie-card:hover .movie-info h2,
.movie-card:hover .movie-info h3 {
    color: var(--amber-600);
}

.movie-info p {
    display: -webkit-box;
    margin: 0 0 14px;
    overflow: hidden;
    color: var(--stone-600);
    font-size: 0.9rem;
    line-height: 1.65;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.card-tags span {
    padding: 4px 8px;
    color: var(--stone-600);
    background: var(--stone-100);
    border-radius: 999px;
    font-size: 0.74rem;
}

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

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 245px;
    border-radius: var(--radius-2xl);
    color: var(--white);
    background: var(--stone-900);
    box-shadow: var(--shadow-soft);
}

.category-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.56;
    transform: scale(1.02);
    transition: transform 0.45s ease, opacity 0.45s ease;
}

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

.category-card::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(135deg, rgba(28, 25, 23, 0.92), rgba(28, 25, 23, 0.38));
}

.category-card-content {
    position: relative;
    z-index: 2;
    padding: 30px;
}

.category-card h2,
.category-card h3 {
    margin: 10px 0;
    font-size: 1.6rem;
}

.category-card p {
    max-width: 640px;
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
}

.filter-bar {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 180px 180px;
    gap: 12px;
    margin: 26px 0 34px;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--stone-200);
    border-radius: 18px;
    box-shadow: 0 10px 26px rgba(41, 37, 36, 0.08);
}

.filter-bar input,
.filter-bar select {
    width: 100%;
    height: 46px;
    border: 1px solid var(--stone-300);
    border-radius: 999px;
    outline: 0;
    padding: 0 16px;
    color: var(--stone-800);
    background: var(--white);
}

.filter-bar input:focus,
.filter-bar select:focus {
    border-color: var(--amber-500);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.14);
}

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

.rank-item {
    display: grid;
    grid-template-columns: 72px 118px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--stone-200);
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(41, 37, 36, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.rank-number {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-500), var(--amber-700));
    border-radius: 16px;
    font-size: 1.25rem;
    font-weight: 900;
}

.rank-item img {
    width: 118px;
    height: 150px;
    object-fit: cover;
    border-radius: 14px;
    background: var(--stone-200);
}

.rank-content h2,
.rank-content h3 {
    margin: 0 0 10px;
    font-size: 1.25rem;
    color: var(--stone-800);
}

.rank-content p {
    margin: 0 0 12px;
    color: var(--stone-600);
    line-height: 1.7;
}

.page-hero {
    color: var(--white);
    background:
        radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.32), transparent 28%),
        linear-gradient(135deg, var(--stone-900), #3a2412);
    padding: 72px 0;
}

.page-hero h1 {
    margin: 0;
    max-width: 900px;
    font-size: clamp(2.1rem, 4vw, 3.6rem);
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.page-hero p {
    max-width: 780px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.85;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.92rem;
}

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

.detail-hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background-color: var(--stone-900);
    background-position: center;
    background-size: cover;
    padding: 68px 0;
}

.detail-hero::before {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.62) 48%, rgba(0, 0, 0, 0.28)),
        linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 45%);
}

.detail-hero .container {
    position: relative;
    z-index: 2;
}

.detail-grid {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 34px;
    align-items: end;
}

.detail-poster {
    overflow: hidden;
    border: 5px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.42);
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    background: var(--stone-800);
}

.detail-content h1 {
    margin: 16px 0;
    max-width: 880px;
    font-size: clamp(2.15rem, 5vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.detail-content p {
    max-width: 850px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.06rem;
    line-height: 1.85;
}

.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 22px;
}

.detail-tags span {
    padding: 7px 11px;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    font-size: 0.84rem;
}

.player-panel {
    overflow: hidden;
    background: var(--stone-900);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.video-shell {
    position: relative;
    background: #000000;
    aspect-ratio: 16 / 9;
}

.movie-video {
    width: 100%;
    height: 100%;
    background: #000000;
    outline: 0;
}

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    gap: 14px;
    border: 0;
    color: var(--white);
    background: rgba(0, 0, 0, 0.38);
    cursor: pointer;
    font: inherit;
    text-align: center;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-overlay span:last-child {
    max-width: 82%;
    font-size: 1.05rem;
    font-weight: 800;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.38);
}

.player-icon {
    display: grid;
    width: 84px;
    height: 84px;
    place-items: center;
    padding-left: 5px;
    color: var(--amber-600);
    background: rgba(255, 255, 255, 0.92);
    border-radius: 999px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    font-size: 2.4rem;
}

.article-content {
    display: grid;
    gap: 24px;
}

.content-card {
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--stone-200);
    border-radius: 22px;
    box-shadow: 0 12px 28px rgba(41, 37, 36, 0.08);
}

.content-card h2 {
    margin: 0 0 14px;
    color: var(--stone-800);
    font-size: 1.45rem;
}

.content-card p {
    margin: 0;
    color: var(--stone-600);
    line-height: 1.9;
}

.site-footer {
    color: var(--stone-300);
    background: linear-gradient(180deg, var(--stone-800), var(--stone-900));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr repeat(3, 1fr);
    gap: 34px;
    padding: 50px 0 34px;
}

.footer-title {
    margin: 0 0 12px;
    color: var(--white);
    font-weight: 800;
}

.footer-text {
    margin: 0;
    color: var(--stone-300);
    line-height: 1.8;
}

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

.footer-list a:hover {
    color: var(--amber-400);
}

.footer-bottom {
    padding: 22px 0;
    border-top: 1px solid rgba(214, 211, 209, 0.16);
    color: var(--stone-300);
    font-size: 0.92rem;
}

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

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

    .primary-nav {
        gap: 16px;
    }

    .site-search input {
        width: 190px;
    }
}

@media (max-width: 860px) {
    .header-row {
        min-height: 68px;
    }

    .primary-nav,
    .site-search {
        display: none;
    }

    .mobile-menu-button {
        display: inline-grid;
        place-items: center;
    }

    .hero {
        min-height: 560px;
    }

    .hero-content-wrap {
        padding: 76px 0 72px;
    }

    .hero-controls {
        right: 16px;
        bottom: 18px;
    }

    .hero-dots {
        bottom: 24px;
    }

    .section {
        padding: 52px 0;
    }

    .section-header {
        display: block;
    }

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

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

    .filter-bar {
        grid-template-columns: 1fr;
        border-radius: 16px;
    }

    .rank-item {
        grid-template-columns: 54px 92px minmax(0, 1fr);
        gap: 12px;
    }

    .rank-number {
        width: 44px;
        height: 44px;
        border-radius: 13px;
        font-size: 1rem;
    }

    .rank-item img {
        width: 92px;
        height: 122px;
    }

    .detail-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

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

@media (max-width: 540px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

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

    .logo-subtitle {
        display: none;
    }

    .hero {
        min-height: 520px;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-meta {
        gap: 7px;
    }

    .hero-meta span,
    .movie-meta span {
        min-height: 28px;
        padding: 0 9px;
        font-size: 0.82rem;
    }

    .movie-info {
        padding: 13px;
    }

    .movie-info h2,
    .movie-info h3 {
        font-size: 0.98rem;
    }

    .movie-info p {
        display: none;
    }

    .section {
        padding: 42px 0;
    }

    .rank-item {
        grid-template-columns: 1fr;
    }

    .rank-item img {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .detail-hero {
        padding: 46px 0;
    }

    .content-card {
        padding: 20px;
    }

    .player-icon {
        width: 68px;
        height: 68px;
        font-size: 2rem;
    }

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