:root {
    color-scheme: dark;
    --bg: #020617;
    --panel: #0f172a;
    --panel-soft: #111827;
    --line: rgba(148, 163, 184, 0.18);
    --text: #f8fafc;
    --muted: #94a3b8;
    --dim: #64748b;
    --cyan: #22d3ee;
    --cyan-strong: #06b6d4;
    --violet: #8b5cf6;
    --amber: #f59e0b;
    --radius: 22px;
    --shadow: 0 30px 90px rgba(8, 145, 178, 0.18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 12% 8%, rgba(34, 211, 238, 0.16), transparent 32rem),
        radial-gradient(circle at 92% 18%, rgba(139, 92, 246, 0.18), transparent 30rem),
        linear-gradient(180deg, #020617 0%, #0f172a 42%, #020617 100%);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

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

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

button,
input {
    font: inherit;
}

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

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

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

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #00111a;
    background: linear-gradient(135deg, var(--cyan), #67e8f9 45%, #a78bfa);
    box-shadow: 0 12px 36px rgba(34, 211, 238, 0.36);
}

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

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

.nav-link {
    padding: 10px 14px;
    border-radius: 999px;
    color: #cbd5e1;
    transition: 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: white;
    background: rgba(34, 211, 238, 0.12);
}

.menu-toggle {
    width: 44px;
    height: 44px;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 14px;
    color: white;
    background: rgba(15, 23, 42, 0.72);
    cursor: pointer;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    margin: 0 auto;
    border-radius: 2px;
    background: currentColor;
}

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

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

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

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

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

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

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.05);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.78) 38%, rgba(2, 6, 23, 0.28) 100%),
        linear-gradient(180deg, rgba(2, 6, 23, 0.25) 0%, rgba(2, 6, 23, 0.96) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    min-height: clamp(620px, 86vh, 850px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 108px 0 180px;
}

.eyebrow,
.hero-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 14px;
    padding: 7px 12px;
    border: 1px solid rgba(34, 211, 238, 0.28);
    border-radius: 999px;
    color: var(--cyan);
    background: rgba(8, 145, 178, 0.14);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.detail-info h1 {
    margin: 0;
    font-size: clamp(42px, 7vw, 86px);
    line-height: 0.96;
    letter-spacing: -0.05em;
}

.hero p {
    max-width: 730px;
    margin: 24px 0 0;
    color: #dbeafe;
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.75;
}

.hero-tags,
.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.hero-tags span,
.tag-row span {
    padding: 7px 11px;
    border-radius: 999px;
    color: #cffafe;
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.2);
    font-size: 13px;
}

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

.primary-btn,
.ghost-btn,
.wide-link,
.filter-bar a,
.category-block-head a,
.section-heading a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 800;
    transition: 0.25s ease;
}

.primary-btn {
    min-height: 50px;
    padding: 0 24px;
    color: #00111a;
    background: linear-gradient(135deg, var(--cyan), #67e8f9);
    box-shadow: 0 16px 42px rgba(34, 211, 238, 0.32);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 56px rgba(34, 211, 238, 0.42);
}

.ghost-btn {
    min-height: 50px;
    padding: 0 24px;
    color: white;
    border: 1px solid var(--line);
    background: rgba(15, 23, 42, 0.66);
}

.ghost-btn:hover {
    border-color: rgba(34, 211, 238, 0.5);
    color: var(--cyan);
}

.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 110px;
    z-index: 5;
    width: min(1180px, calc(100% - 32px));
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-arrow,
.hero-dot {
    cursor: pointer;
    border: 1px solid var(--line);
    background: rgba(15, 23, 42, 0.72);
    color: white;
    backdrop-filter: blur(12px);
}

.hero-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 30px;
    line-height: 1;
}

.hero-dot {
    width: 42px;
    height: 5px;
    border-radius: 999px;
    opacity: 0.5;
    padding: 0;
}

.hero-dot.active {
    opacity: 1;
    background: var(--cyan);
}

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

.hero-search {
    position: absolute;
    left: 50%;
    bottom: 32px;
    z-index: 5;
    width: min(820px, calc(100% - 32px));
    transform: translateX(-50%);
}

.hero-search form,
.filter-bar {
    display: flex;
    gap: 12px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.84);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
}

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

.hero-search button {
    border: 0;
    border-radius: 18px;
    padding: 13px 24px;
    color: #00111a;
    background: var(--cyan);
    font-weight: 900;
    cursor: pointer;
}

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

.section-muted {
    width: 100%;
    padding-left: max(16px, calc((100% - 1180px) / 2));
    padding-right: max(16px, calc((100% - 1180px) / 2));
    background: rgba(15, 23, 42, 0.58);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

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

.section-heading h2,
.category-block-head h2,
.side-panel h2,
.detail-section h2,
.detail-aside h2 {
    margin: 0;
    color: white;
    font-size: clamp(26px, 4vw, 42px);
    letter-spacing: -0.04em;
}

.section-heading a,
.category-block-head a,
.filter-bar a {
    padding: 10px 14px;
    color: var(--cyan);
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.22);
}

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(15, 23, 42, 0.82);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(34, 211, 238, 0.5);
    box-shadow: 0 24px 60px rgba(8, 145, 178, 0.16);
}

.card-poster {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4.15;
    overflow: hidden;
    background: #0f172a;
}

.movie-card-compact .card-poster {
    aspect-ratio: 3 / 4;
}

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

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

.card-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(2, 6, 23, 0.92) 100%);
}

.card-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 2;
    padding: 5px 9px;
    border-radius: 10px;
    color: white;
    background: rgba(6, 182, 212, 0.86);
    font-size: 12px;
    font-weight: 800;
}

.card-play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%) scale(0.88);
    border-radius: 50%;
    color: white;
    background: rgba(34, 211, 238, 0.9);
    opacity: 0;
    transition: 0.25s ease;
}

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

.card-body {
    padding: 16px;
}

.card-body h3 {
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.35;
}

.card-body h3 a:hover,
.wide-card h3 a:hover {
    color: var(--cyan);
}

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

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
    color: var(--dim);
    font-size: 12px;
}

.card-meta span {
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.08);
}

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

.category-tile {
    position: relative;
    min-height: 210px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #0f172a;
}

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

.category-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.94));
}

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

.category-tile span {
    font-size: 22px;
    font-weight: 900;
}

.category-tile small {
    margin-top: 8px;
    color: #cbd5e1;
    line-height: 1.55;
}

.two-column-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 28px;
}

.wide-list {
    display: grid;
    gap: 14px;
}

.wide-card {
    display: grid;
    grid-template-columns: auto 138px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.82);
    transition: 0.25s ease;
}

.wide-card:hover {
    border-color: rgba(34, 211, 238, 0.45);
    transform: translateX(4px);
}

.rank-no {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--cyan);
    background: rgba(34, 211, 238, 0.1);
    font-weight: 900;
}

.wide-cover {
    width: 138px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 14px;
}

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

.wide-content h3,
.wide-content p {
    margin: 0;
}

.wide-content h3 {
    font-size: 17px;
}

.wide-content p {
    margin-top: 6px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.wide-link {
    padding: 10px 15px;
    color: #00111a;
    background: var(--cyan);
}

.side-panel,
.detail-aside {
    align-self: start;
    position: sticky;
    top: 96px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
    background: rgba(15, 23, 42, 0.86);
    box-shadow: var(--shadow);
}

.side-panel p,
.category-block-head p,
.page-hero p,
.detail-section p {
    color: var(--muted);
    line-height: 1.75;
}

.quick-links {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.quick-links a {
    padding: 13px 15px;
    border: 1px solid var(--line);
    border-radius: 14px;
    color: #cbd5e1;
    background: rgba(148, 163, 184, 0.06);
}

.quick-links a:hover {
    color: var(--cyan);
    border-color: rgba(34, 211, 238, 0.35);
}

.page-hero {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 72px 0 52px;
}

.small-page-hero {
    min-height: 310px;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 36px 0;
    z-index: -1;
    border: 1px solid var(--line);
    border-radius: 32px;
    background:
        radial-gradient(circle at 20% 20%, rgba(34, 211, 238, 0.18), transparent 26rem),
        linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.72));
}

.page-hero > div {
    padding: 38px;
}

.page-hero p {
    max-width: 780px;
    margin: 20px 0 0;
    font-size: 18px;
}

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

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

.filter-bar {
    margin-bottom: 28px;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 28px;
}

.chip-row button {
    cursor: pointer;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #cbd5e1;
    background: rgba(15, 23, 42, 0.78);
    padding: 10px 14px;
}

.chip-row button:hover,
.chip-row button.active {
    color: #00111a;
    background: var(--cyan);
}

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

.category-block {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: rgba(15, 23, 42, 0.64);
}

.detail-hero {
    position: relative;
    overflow: hidden;
    min-height: 640px;
    display: flex;
    align-items: end;
    border-bottom: 1px solid var(--line);
}

.detail-bg {
    position: absolute;
    inset: 0;
}

.detail-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px) saturate(1.1);
    transform: scale(1.05);
    opacity: 0.5;
}

.detail-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.98), rgba(2, 6, 23, 0.68)),
        linear-gradient(180deg, rgba(2, 6, 23, 0.2), #020617 100%);
}

.detail-wrap {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 110px 0 56px;
}

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

.detail-poster {
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

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

.detail-info .lead {
    max-width: 780px;
    margin: 22px 0 0;
    color: #dbeafe;
    font-size: 20px;
    line-height: 1.75;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.detail-meta span {
    padding: 8px 12px;
    border-radius: 999px;
    color: #e2e8f0;
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid var(--line);
}

.player-section {
    padding-top: 58px;
    padding-bottom: 38px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(34, 211, 238, 0.28);
    background: black;
    box-shadow: 0 28px 88px rgba(0, 0, 0, 0.46);
}

.player-shell video {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    background: #000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    cursor: pointer;
    color: white;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.24), rgba(2, 6, 23, 0.55));
    transition: opacity 0.25s ease;
}

.player-overlay span {
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #00111a;
    background: linear-gradient(135deg, var(--cyan), #67e8f9);
    font-size: 34px;
    box-shadow: 0 20px 60px rgba(34, 211, 238, 0.42);
}

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

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

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

.detail-section,
.detail-aside {
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 28px;
    background: rgba(15, 23, 42, 0.72);
}

.detail-section h2,
.detail-aside h2 {
    font-size: 28px;
    margin-bottom: 16px;
}

.detail-section p {
    margin: 0;
    font-size: 17px;
}

.detail-aside dl {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 12px 14px;
    margin: 20px 0 0;
}

.detail-aside dt {
    color: var(--dim);
}

.detail-aside dd {
    margin: 0;
    color: #e2e8f0;
}

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

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 44px 0;
    display: grid;
    gap: 18px;
    color: var(--muted);
}

.footer-brand {
    color: white;
    font-size: 19px;
}

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

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

.copyright {
    color: var(--dim);
    font-size: 14px;
}

[data-hidden="true"] {
    display: none !important;
}

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

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

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

    .side-panel,
    .detail-aside {
        position: static;
    }
}

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

    .menu-toggle {
        display: flex;
    }

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

    .hero-content {
        padding-bottom: 210px;
    }

    .hero-shade {
        background:
            linear-gradient(180deg, rgba(2, 6, 23, 0.72), rgba(2, 6, 23, 0.98)),
            linear-gradient(90deg, rgba(2, 6, 23, 0.9), rgba(2, 6, 23, 0.55));
    }

    .hero-search form,
    .filter-bar {
        flex-direction: column;
    }

    .hero-search button,
    .filter-bar a {
        width: 100%;
    }

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

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

    .wide-card {
        grid-template-columns: auto 108px minmax(0, 1fr);
    }

    .wide-link {
        grid-column: 1 / -1;
        width: 100%;
    }

    .wide-cover {
        width: 108px;
    }

    .detail-layout {
        grid-template-columns: 1fr;
        align-items: start;
    }

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

    .detail-info h1,
    .page-hero h1,
    .hero h1 {
        font-size: 44px;
    }

    .page-hero > div {
        padding: 28px;
    }
}

@media (max-width: 520px) {
    .header-inner {
        min-height: 66px;
    }

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

    .hero-controls {
        bottom: 132px;
    }

    .hero-dot {
        width: 28px;
    }

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

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

    .rank-no {
        width: fit-content;
        padding: 0 14px;
    }

    .wide-cover {
        width: 100%;
    }

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

    .detail-info h1,
    .page-hero h1,
    .hero h1 {
        font-size: 36px;
    }

    .player-overlay span {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}
