:root {
    color-scheme: dark;
    --bg: #020617;
    --bg-soft: #0f172a;
    --panel: rgba(15, 23, 42, 0.82);
    --panel-strong: rgba(15, 23, 42, 0.96);
    --line: rgba(148, 163, 184, 0.18);
    --text: #f8fafc;
    --muted: #cbd5e1;
    --subtle: #94a3b8;
    --orange: #f97316;
    --orange-strong: #ea580c;
    --red: #ef4444;
    --yellow: #facc15;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(180deg, #020617 0%, #0f172a 48%, #020617 100%);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--line);
    background: rgba(2, 6, 23, 0.82);
    backdrop-filter: blur(18px);
}

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

.logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: 0.02em;
    white-space: nowrap;
    color: #ffffff;
}

.logo span:last-child,
.footer-logo {
    background: linear-gradient(90deg, #fb923c, #ef4444);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-mark {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--red));
    box-shadow: 0 12px 26px rgba(249, 115, 22, 0.28);
}

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

.desktop-nav a,
.mobile-nav a,
.footer-links a {
    color: var(--muted);
    font-weight: 600;
    transition: color 0.2s ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover,
.footer-links a:hover {
    color: #ffffff;
}

.header-search,
.mobile-search,
.page-search {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-search input,
.mobile-search input,
.page-search input {
    width: 220px;
    height: 42px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.88);
    color: #ffffff;
    outline: none;
    padding: 0 16px;
}

.header-search button,
.mobile-search button,
.page-search button {
    height: 42px;
    border: 0;
    border-radius: 999px;
    padding: 0 18px;
    color: #ffffff;
    cursor: pointer;
    background: linear-gradient(135deg, var(--orange), var(--red));
    box-shadow: 0 12px 28px rgba(249, 115, 22, 0.24);
}

.mobile-menu-button {
    display: none;
    margin-left: auto;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.9);
    cursor: pointer;
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 16px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.94);
}

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

.hero-carousel {
    position: relative;
    height: 70vh;
    min-height: 540px;
    overflow: hidden;
    background: radial-gradient(circle at 65% 10%, rgba(249, 115, 22, 0.28), transparent 35%), #020617;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease, transform 1s ease;
    transform: scale(1.02);
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

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

.hero-slide img.is-missing,
.poster-frame img.is-missing,
.compact-poster img.is-missing,
.rank-poster img.is-missing {
    display: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.68) 46%, rgba(0, 0, 0, 0.14));
}

.hero-content {
    position: absolute;
    left: max(24px, calc((100vw - 1180px) / 2));
    top: 50%;
    width: min(650px, calc(100% - 48px));
    transform: translateY(-50%);
    z-index: 2;
}

.hero-eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 14px;
    margin-bottom: 16px;
    background: var(--orange);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
}

.hero-content h1,
.page-hero h1,
.detail-intro h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(34px, 6vw, 72px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.hero-content p,
.page-hero p,
.detail-one-line {
    margin: 22px 0 0;
    max-width: 740px;
    color: #e2e8f0;
    font-size: 18px;
}

.hero-meta,
.detail-meta,
.card-meta,
.rank-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
    color: var(--subtle);
    font-size: 14px;
}

.hero-meta span,
.detail-meta span,
.card-meta span,
.rank-meta span,
.rank-meta strong {
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    padding: 5px 10px;
    background: rgba(15, 23, 42, 0.62);
}

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

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

.button-primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--red));
    box-shadow: 0 18px 36px rgba(249, 115, 22, 0.24);
}

.button-secondary,
.button-ghost,
.section-link {
    border: 1px solid rgba(148, 163, 184, 0.28);
    color: #ffffff;
    background: rgba(15, 23, 42, 0.72);
}

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

.hero-control {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.56);
    cursor: pointer;
    font-size: 34px;
    line-height: 1;
    transform: translateY(-50%);
    backdrop-filter: blur(12px);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

.hero-dot {
    width: 28px;
    height: 5px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
}

.hero-dot.active {
    background: var(--orange);
}

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

main > .hero-carousel {
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.section-block {
    margin: 72px 0;
}

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

.section-heading h2,
.content-card h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.section-heading p,
.content-card p,
.intro-copy p,
.category-main-link em {
    margin: 8px 0 0;
    color: var(--subtle);
}

.intro-strip {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.66));
    box-shadow: var(--shadow);
}

.intro-copy h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.15;
    letter-spacing: -0.035em;
}

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

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

.movie-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.82);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(249, 115, 22, 0.42);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.34);
}

.poster-frame {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 230px;
    background: radial-gradient(circle at 30% 20%, rgba(249, 115, 22, 0.32), transparent 36%), linear-gradient(135deg, #1e293b, #020617);
}

.movie-card .poster-frame {
    aspect-ratio: 2 / 3;
}

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

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

.poster-shade {
    position: absolute;
    inset: auto 0 0;
    height: 46%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent);
}

.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    border-radius: 999px;
    padding: 5px 10px;
    color: #ffffff;
    background: rgba(249, 115, 22, 0.92);
    font-size: 12px;
    font-weight: 800;
}

.card-play {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.82);
    backdrop-filter: blur(8px);
}

.card-body {
    padding: 16px;
}

.card-title {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
}

.card-title a:hover,
.rank-info h3 a:hover,
.compact-info strong:hover {
    color: #fb923c;
}

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

.card-meta {
    gap: 6px;
    margin-top: 12px;
    font-size: 12px;
}

.tag-row,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 12px;
}

.tag-row span,
.detail-tags span,
.genre-cloud a,
.filter-chip {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 999px;
    padding: 5px 10px;
    color: #cbd5e1;
    background: rgba(15, 23, 42, 0.66);
    font-size: 12px;
}

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

.category-tile,
.category-main-link {
    display: grid;
    min-height: 170px;
    gap: 10px;
    align-content: start;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 22px;
    background: radial-gradient(circle at top right, rgba(249, 115, 22, 0.22), transparent 42%), rgba(15, 23, 42, 0.82);
    transition: transform 0.24s ease, border-color 0.24s ease;
}

.category-tile:hover,
.category-main-link:hover {
    transform: translateY(-4px);
    border-color: rgba(249, 115, 22, 0.38);
}

.category-tile span,
.category-main-link span {
    color: #fb923c;
    font-weight: 900;
}

.category-tile strong,
.category-main-link strong {
    color: #ffffff;
    font-size: 22px;
}

.category-tile em,
.category-main-link em {
    font-style: normal;
}

.filter-bar,
.genre-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.filter-chip {
    cursor: pointer;
    padding: 9px 15px;
    font-size: 14px;
}

.filter-chip.active,
.genre-cloud a:hover {
    color: #ffffff;
    border-color: rgba(249, 115, 22, 0.45);
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.95), rgba(239, 68, 68, 0.9));
}

.filter-status {
    min-height: 24px;
    margin: 0 0 18px;
    color: var(--subtle);
}

.movie-card.hidden-by-filter {
    display: none;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 16px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 12px;
    background: rgba(15, 23, 42, 0.82);
}

.rank-poster {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    border-radius: 16px;
    background: radial-gradient(circle at 30% 20%, rgba(249, 115, 22, 0.32), transparent 36%), linear-gradient(135deg, #1e293b, #020617);
}

.rank-poster img,
.compact-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rank-poster span {
    position: absolute;
    top: 8px;
    left: 8px;
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    color: #111827;
    background: var(--yellow);
    font-weight: 900;
}

.rank-info h3 {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
}

.rank-info p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rank-meta {
    gap: 6px;
    margin-top: 12px;
    font-size: 12px;
}

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

.wide-card {
    display: grid;
    grid-template-columns: 44% 1fr;
}

.wide-card .poster-frame {
    aspect-ratio: auto;
    height: 100%;
}

.compact-grid,
.compact-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.compact-card {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 12px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 10px;
    background: rgba(15, 23, 42, 0.72);
}

.compact-poster {
    overflow: hidden;
    aspect-ratio: 2 / 3;
    border-radius: 14px;
    background: radial-gradient(circle at 30% 20%, rgba(249, 115, 22, 0.32), transparent 36%), linear-gradient(135deg, #1e293b, #020617);
}

.compact-info strong,
.compact-info em {
    display: block;
}

.compact-info strong {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.35;
}

.compact-info em {
    margin-top: 5px;
    color: var(--subtle);
    font-size: 12px;
    font-style: normal;
}

.page-hero {
    margin: 44px 0 0;
    border: 1px solid var(--line);
    border-radius: 30px;
    padding: clamp(28px, 6vw, 56px);
    background: radial-gradient(circle at top right, rgba(249, 115, 22, 0.24), transparent 40%), linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.8));
    box-shadow: var(--shadow);
}

.small-hero h1,
.rank-hero h1 {
    font-size: clamp(34px, 5vw, 58px);
}

.page-search {
    margin-top: 26px;
}

.page-search input {
    width: min(100%, 460px);
}

.category-overview-card {
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 12px;
    background: rgba(15, 23, 42, 0.7);
}

.category-overview-card .compact-list {
    grid-template-columns: 1fr;
}

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

.detail-hero {
    display: grid;
    grid-template-columns: minmax(260px, 360px) 1fr;
    gap: 34px;
    align-items: center;
    margin: 44px 0 72px;
    border: 1px solid var(--line);
    border-radius: 32px;
    padding: clamp(20px, 4vw, 42px);
    background: radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.26), transparent 38%), rgba(15, 23, 42, 0.86);
    box-shadow: var(--shadow);
}

.detail-poster {
    min-height: auto;
    aspect-ratio: 2 / 3;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--subtle);
    font-size: 14px;
}

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

.detail-tags span {
    font-size: 13px;
}

.player-section {
    scroll-margin-top: 90px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 24px;
    background: #000000;
    box-shadow: var(--shadow);
}

.movie-player {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
    cursor: pointer;
}

.player-cover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    color: #ffffff;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.56));
    cursor: pointer;
}

.player-cover span {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--orange), var(--red));
    box-shadow: 0 18px 44px rgba(249, 115, 22, 0.34);
    font-size: 34px;
    padding-left: 5px;
}

.player-cover.is-hidden {
    display: none;
}

.player-loading {
    position: absolute;
    inset: 0;
    display: none;
    place-items: center;
    background: rgba(0, 0, 0, 0.36);
    pointer-events: none;
}

.player-loading.is-visible {
    display: grid;
}

.player-loading span {
    width: 46px;
    height: 46px;
    border: 4px solid rgba(255, 255, 255, 0.24);
    border-top-color: #ffffff;
    border-radius: 999px;
    animation: spin 0.85s linear infinite;
}

.player-error {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 18px;
    display: none;
    border-radius: 14px;
    padding: 12px 14px;
    color: #ffffff;
    background: rgba(127, 29, 29, 0.84);
}

.player-error.is-visible {
    display: block;
}

.player-controls {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    pointer-events: none;
}

.player-controls button {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 9px 14px;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.72);
    cursor: pointer;
    backdrop-filter: blur(10px);
    pointer-events: auto;
}

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

.content-card {
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 28px;
    background: rgba(15, 23, 42, 0.82);
}

.site-footer {
    margin-top: 84px;
    border-top: 1px solid var(--line);
    background: rgba(2, 6, 23, 0.78);
}

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 34px 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
}

.footer-inner p {
    margin: 10px 0 0;
    color: var(--subtle);
}

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

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

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

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

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

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

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

    .hero-carousel {
        height: 72vh;
        min-height: 560px;
    }

    .hero-content {
        left: 20px;
        width: calc(100% - 40px);
    }

    .hero-control {
        display: none;
    }

    .intro-strip,
    .detail-hero,
    .detail-content,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .intro-actions,
    .footer-links {
        justify-content: flex-start;
    }

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

    .wide-card {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 560px) {
    .header-inner {
        width: min(100% - 24px, 1180px);
        min-height: 64px;
        gap: 12px;
    }

    .logo span:last-child {
        max-width: 150px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    main,
    .page-main,
    .detail-page,
    .footer-inner,
    .mobile-nav {
        width: min(100% - 24px, 1180px);
    }

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

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

    .section-block {
        margin: 52px 0;
    }

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

    .movie-grid,
    .large-grid,
    .featured-grid,
    .rank-grid,
    .compact-grid,
    .category-tiles,
    .category-overview-grid {
        grid-template-columns: 1fr;
    }

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

    .page-search,
    .mobile-search {
        align-items: stretch;
        flex-direction: column;
    }

    .page-search input,
    .mobile-search input,
    .page-search button,
    .mobile-search button {
        width: 100%;
    }

    .player-cover span {
        width: 68px;
        height: 68px;
        font-size: 28px;
    }

    .player-controls {
        left: 10px;
        right: 10px;
        bottom: 10px;
        justify-content: center;
    }

    .player-controls button {
        padding: 7px 10px;
        font-size: 13px;
    }
}
