:root {
    --color-night-darker: #0a0e1a;
    --color-night-dark: #0f1420;
    --color-night-medium: #1a1f2e;
    --color-night-light: #252b3d;
    --color-accent-blue: #3b82f6;
    --color-accent-cyan: #06b6d4;
    --color-accent-teal: #14b8a6;
    --color-text-primary: #e5e7eb;
    --color-text-secondary: #9ca3af;
    --color-text-muted: #6b7280;
    --shadow-cyan: 0 25px 50px -12px rgba(6, 182, 212, 0.22);
}

* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at top left, rgba(6, 182, 212, 0.16), transparent 28rem),
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.18), transparent 30rem),
        var(--color-night-darker);
    color: var(--color-text-primary);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", sans-serif;
}

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

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

button,
input {
    font: inherit;
}

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

.glass-effect {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
}

.gradient-text {
    background: linear-gradient(90deg, #22d3ee, #3b82f6, #2dd4bf);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.card-hover {
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px) scale(1.012);
    border-color: rgba(34, 211, 238, 0.48);
    box-shadow: var(--shadow-cyan);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(10, 14, 26, 0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

.brand-mark {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-accent-cyan), var(--color-accent-blue));
    color: #fff;
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.28);
}

.brand-text {
    font-size: 20px;
    font-weight: 800;
    white-space: nowrap;
}

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

.desktop-nav a,
.nav-dropdown > a {
    color: #d1d5db;
    transition: color 0.2s ease;
}

.desktop-nav a:hover,
.nav-dropdown:hover > a,
.desktop-nav .is-active {
    color: #22d3ee;
}

.nav-dropdown {
    position: relative;
    padding: 24px 0;
}

.dropdown-menu {
    position: absolute;
    top: 66px;
    left: 0;
    width: 188px;
    padding: 8px;
    border-radius: 14px;
    background: rgba(15, 20, 32, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.36);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    color: #d1d5db;
}

.dropdown-menu a:hover {
    color: #22d3ee;
    background: rgba(255, 255, 255, 0.06);
}

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

.site-search input,
.inline-search,
.large-search input,
.hero-search input {
    color: #e5e7eb;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.12);
    outline: none;
    border-radius: 12px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.site-search input {
    width: 220px;
    padding: 10px 12px;
}

.site-search input:focus,
.inline-search:focus,
.large-search input:focus,
.hero-search input:focus {
    border-color: #22d3ee;
    background: rgba(255, 255, 255, 0.085);
}

.site-search button,
.hero-search button,
.large-search button {
    border: 0;
    border-radius: 12px;
    padding: 10px 16px;
    color: #fff;
    background: linear-gradient(90deg, var(--color-accent-cyan), var(--color-accent-blue));
    cursor: pointer;
}

.mobile-menu-button {
    display: none;
    margin-left: auto;
    border: 0;
    background: transparent;
    color: #d1d5db;
    font-size: 26px;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto 16px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav a {
    display: block;
    padding: 12px;
    border-radius: 12px;
    color: #d1d5db;
}

.mobile-nav a:hover {
    background: rgba(255, 255, 255, 0.07);
    color: #22d3ee;
}

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

.hero-carousel {
    position: relative;
    min-height: 70vh;
    overflow: hidden;
    display: grid;
    align-items: end;
}

.hero-stage,
.hero-slide,
.hero-slide img,
.hero-shade {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    transition: opacity 1s ease;
}

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

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

.hero-shade {
    background:
        linear-gradient(90deg, rgba(10, 14, 26, 0.96) 0%, rgba(10, 14, 26, 0.70) 44%, rgba(10, 14, 26, 0.22) 100%),
        linear-gradient(0deg, rgba(10, 14, 26, 1) 0%, rgba(10, 14, 26, 0.18) 48%, rgba(10, 14, 26, 0.55) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 126px 0 116px;
    max-width: 1200px;
}

.hero-kicker,
.section-kicker {
    margin: 0 0 10px;
    color: #22d3ee;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
}

.hero-content h1 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(36px, 5vw, 70px);
    line-height: 1.02;
    color: #fff;
}

.hero-content h2 {
    margin: 18px 0 0;
    font-size: clamp(24px, 3vw, 42px);
    color: #e5e7eb;
}

.hero-desc {
    max-width: 720px;
    margin: 18px 0 0;
    color: #d1d5db;
    line-height: 1.78;
    font-size: 17px;
}

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

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

.hero-tags span,
.tag-row span,
.chip,
.detail-tag-links a {
    border: 1px solid rgba(34, 211, 238, 0.22);
    background: rgba(6, 182, 212, 0.12);
    color: #bae6fd;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 13px;
}

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

.btn-primary,
.btn-secondary,
.btn-ghost,
.section-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 12px;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.btn-primary {
    padding: 12px 22px;
    color: #fff;
    background: linear-gradient(90deg, var(--color-accent-cyan), var(--color-accent-blue));
    box-shadow: 0 12px 32px rgba(6, 182, 212, 0.28);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-ghost:hover,
.section-link:hover {
    transform: translateY(-2px);
}

.btn-secondary,
.btn-ghost {
    padding: 11px 18px;
    color: #e5e7eb;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover,
.btn-ghost:hover {
    border-color: rgba(34, 211, 238, 0.48);
    color: #22d3ee;
}

.hero-panel {
    position: absolute;
    right: max(16px, calc((100% - 1200px) / 2));
    bottom: 70px;
    z-index: 3;
    width: 380px;
    padding: 18px;
    border-radius: 22px;
}

.hero-search {
    display: flex;
    gap: 8px;
}

.hero-search input {
    min-width: 0;
    flex: 1;
    padding: 12px;
}

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

.hero-category-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.hero-category-row a {
    padding: 7px 10px;
    border-radius: 999px;
    color: #d1d5db;
    background: rgba(255, 255, 255, 0.08);
}

.hero-category-row a:hover {
    color: #22d3ee;
    background: rgba(6, 182, 212, 0.16);
}

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

.hero-dot {
    width: 34px;
    height: 4px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.32);
    cursor: pointer;
}

.hero-dot.is-active {
    background: #22d3ee;
}

.section {
    padding: 54px 0;
}

.page-main {
    padding: 42px 0 70px;
}

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

.section-heading.compact {
    margin-bottom: 16px;
}

.section-heading h2,
.category-overview-card h2,
.detail-section h2,
.detail-info-card h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(24px, 3vw, 34px);
}

.section-link {
    color: #22d3ee;
}

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

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

.movie-card {
    min-width: 0;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: var(--color-night-medium);
}

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

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

.year-badge,
.rank-badge,
.poster-play {
    position: absolute;
    z-index: 2;
}

.year-badge,
.rank-badge {
    top: 10px;
    padding: 5px 8px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    background: rgba(6, 182, 212, 0.78);
    backdrop-filter: blur(8px);
}

.year-badge {
    left: 10px;
}

.rank-badge {
    right: 10px;
    background: rgba(59, 130, 246, 0.82);
}

.poster-play {
    left: 50%;
    top: 50%;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    transform: translate(-50%, -50%) scale(0.84);
    border-radius: 50%;
    color: #fff;
    background: rgba(6, 182, 212, 0.78);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

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

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

.movie-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--color-text-muted);
    font-size: 12px;
    margin-bottom: 8px;
}

.movie-card h3 {
    margin: 0;
    font-size: 17px;
    line-height: 1.36;
    color: #fff;
}

.movie-card h3 a:hover {
    color: #22d3ee;
}

.movie-card p {
    min-height: 44px;
    margin: 8px 0 12px;
    color: var(--color-text-secondary);
    line-height: 1.58;
    font-size: 13px;
}

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

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

.category-tile {
    min-height: 178px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    border-radius: 22px;
}

.category-title {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
}

.category-desc {
    color: #aeb6c6;
    line-height: 1.65;
    font-size: 14px;
}

.category-links {
    display: grid;
    gap: 6px;
    margin-top: auto;
    color: #22d3ee;
    font-size: 13px;
}

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

.ranking-panel {
    position: sticky;
    top: 92px;
    padding: 18px;
    border-radius: 22px;
}

.compact-list {
    display: grid;
    gap: 8px;
}

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

.compact-movie {
    min-width: 0;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 4px 10px;
    padding: 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.045);
    color: #d1d5db;
}

.compact-movie:hover {
    color: #22d3ee;
    background: rgba(6, 182, 212, 0.12);
}

.compact-rank,
.compact-dot {
    grid-row: span 2;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.9), rgba(59, 130, 246, 0.9));
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.compact-dot {
    width: 10px;
    height: 10px;
    align-self: center;
    border-radius: 50%;
}

.compact-title,
.compact-meta {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.compact-title {
    font-weight: 700;
}

.compact-meta {
    color: var(--color-text-muted);
    font-size: 12px;
}

.filter-bar,
.search-section {
    padding: 18px;
    border-radius: 22px;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.filter-bar button {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 8px 12px;
    color: #d1d5db;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
}

.filter-bar button.is-active,
.filter-bar button:hover {
    color: #fff;
    border-color: rgba(34, 211, 238, 0.5);
    background: rgba(6, 182, 212, 0.22);
}

.page-hero {
    padding: 30px;
    margin-bottom: 26px;
    border-radius: 28px;
    overflow: hidden;
}

.page-hero h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(34px, 5vw, 56px);
}

.page-hero p {
    max-width: 860px;
    color: #cbd5e1;
    line-height: 1.78;
}

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

.breadcrumb a:hover {
    color: #22d3ee;
}

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

.inline-search {
    width: 100%;
    padding: 14px 16px;
}

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

.category-overview-card {
    padding: 22px;
    border-radius: 24px;
}

.category-overview-card p {
    color: #cbd5e1;
    line-height: 1.72;
}

.large-search {
    display: flex;
    gap: 10px;
    margin-top: 24px;
    max-width: 720px;
}

.large-search input {
    min-width: 0;
    flex: 1;
    padding: 14px 16px;
}

.detail-main {
    background:
        radial-gradient(circle at top left, rgba(6, 182, 212, 0.12), transparent 32rem),
        var(--color-night-darker);
}

.detail-hero {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.detail-backdrop,
.detail-backdrop-shade {
    position: absolute;
    inset: 0;
}

.detail-backdrop {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-backdrop-shade {
    background:
        linear-gradient(90deg, rgba(10, 14, 26, 0.97), rgba(10, 14, 26, 0.68), rgba(10, 14, 26, 0.36)),
        linear-gradient(0deg, var(--color-night-darker), rgba(10, 14, 26, 0.2));
}

.detail-hero-inner {
    position: relative;
    z-index: 2;
    padding: 110px 0 70px;
}

.detail-title-row {
    align-items: flex-start;
}

.detail-title-row h1 {
    max-width: 840px;
    margin: 0;
    color: #fff;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.1;
}

.detail-title-row p {
    max-width: 760px;
    color: #d1d5db;
    line-height: 1.78;
}

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

.detail-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 24px;
    padding: 36px 0 70px;
}

.detail-main-column,
.detail-side-column {
    display: grid;
    align-content: start;
    gap: 22px;
}

.player-shell,
.detail-section,
.detail-info-card,
.detail-switch {
    border-radius: 24px;
    overflow: hidden;
}

.player-shell {
    padding: 12px;
}

.player-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    overflow: hidden;
    background: #000;
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 12px;
    align-content: center;
    border: 0;
    color: #fff;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.24));
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-icon {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent-cyan), var(--color-accent-blue));
    box-shadow: 0 18px 40px rgba(6, 182, 212, 0.35);
    font-size: 28px;
}

.player-title {
    font-size: 18px;
    font-weight: 800;
}

.detail-section {
    padding: 24px;
}

.detail-section p {
    color: #cbd5e1;
    line-height: 1.9;
    font-size: 16px;
}

.detail-info-card {
    padding: 18px;
}

.detail-info-card img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 16px;
}

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

.detail-info-card li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #9ca3af;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 10px;
}

.detail-info-card li strong {
    color: #e5e7eb;
    text-align: right;
}

.detail-info-card li a:hover {
    color: #22d3ee;
}

.detail-tag-links {
    margin-top: 16px;
}

.detail-switch {
    padding: 16px;
    display: grid;
    gap: 10px;
}

.detail-switch a {
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.045);
    color: #d1d5db;
}

.detail-switch a:hover {
    background: rgba(6, 182, 212, 0.14);
    color: #22d3ee;
}

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

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 14, 26, 0.92);
}

.footer-inner {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 34px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #9ca3af;
}

.footer-brand {
    font-size: 20px;
    font-weight: 800;
}

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

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

.is-hidden-card {
    display: none !important;
}

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

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

    .hero-panel {
        position: relative;
        right: auto;
        bottom: auto;
        width: min(1200px, calc(100% - 32px));
        margin: -88px auto 40px;
    }

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

    .ranking-panel {
        position: static;
    }
}

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

    .mobile-menu-button {
        display: block;
    }

    .header-inner {
        min-height: 64px;
    }

    .hero-carousel {
        min-height: auto;
        display: block;
    }

    .hero-stage {
        position: relative;
        height: 78vh;
        min-height: 560px;
    }

    .hero-content {
        padding: 96px 0 120px;
    }

    .hero-panel {
        margin-top: -70px;
    }

    .section-heading,
    .category-overview-head,
    .detail-title-row,
    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .category-grid,
    .category-overview-grid,
    .compact-list.two-column {
        grid-template-columns: 1fr;
    }

    .large-search,
    .hero-search {
        flex-direction: column;
    }

    .detail-hero {
        min-height: 470px;
    }
}

@media (max-width: 520px) {
    .container,
    .header-inner,
    .footer-inner,
    .hero-content,
    .hero-panel,
    .mobile-nav {
        width: min(100% - 24px, 1200px);
    }

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

    .hero-stage {
        min-height: 620px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .movie-grid-large,
    .movie-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .page-hero,
    .detail-section,
    .detail-info-card {
        padding: 18px;
    }

    .player-icon {
        width: 62px;
        height: 62px;
    }
}
