:root {
    --brand: #0f766e;
    --brand-dark: #115e59;
    --brand-light: #14b8a6;
    --accent: #0891b2;
    --ink: #0f172a;
    --muted: #64748b;
    --line: #e2e8f0;
    --soft: #f8fafc;
    --card: #ffffff;
    --shadow: 0 20px 55px rgba(15, 23, 42, 0.10);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: linear-gradient(180deg, #f7fbfb 0%, #eef6f6 42%, #f8fafc 100%);
    color: var(--ink);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.65;
}

body.nav-open {
    overflow: hidden;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.header-inner,
.footer-inner,
.content-section,
.hero,
.page-hero,
.detail-hero-inner,
.watch-section {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
}

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

.site-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
}

.logo-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--brand-light), var(--accent));
    border-radius: 50%;
    box-shadow: 0 12px 26px rgba(20, 184, 166, 0.28);
}

.logo-copy {
    display: grid;
    gap: 0;
}

.logo-copy strong {
    font-size: 20px;
    line-height: 1.15;
}

.logo-copy em {
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
}

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

.nav-link {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 14px;
    color: #334155;
    font-size: 15px;
    font-weight: 700;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--brand);
    background: #e6fffb;
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #ffffff;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--ink);
    border-radius: 999px;
}

.hero {
    position: relative;
    padding: 34px 0 22px;
}

.hero-stage {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    border-radius: 34px;
    background: #0f172a;
    box-shadow: var(--shadow);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: center;
    gap: 42px;
    padding: 64px;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.01);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.hero-backdrop,
.detail-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: saturate(1.1);
}

.hero-backdrop::after,
.detail-bg::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgba(7, 20, 31, 0.91), rgba(7, 20, 31, 0.66) 48%, rgba(7, 20, 31, 0.32));
}

.hero-content,
.hero-poster {
    position: relative;
    z-index: 1;
}

.hero-kicker,
.eyebrow {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    padding: 7px 12px;
    border-radius: 999px;
    color: var(--brand-dark);
    background: #ccfbf1;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.hero h1 {
    max-width: 820px;
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(38px, 6vw, 76px);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -0.05em;
}

.hero-text {
    max-width: 690px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 20px;
}

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

.hero-tags span,
.tag-row span,
.tag-cloud a {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    color: #0f766e;
    background: #ecfeff;
    font-size: 12px;
    font-weight: 800;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 18px;
    border: 0;
    border-radius: 999px;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--brand-light), var(--accent));
    box-shadow: 0 14px 28px rgba(8, 145, 178, 0.26);
}

.button-soft {
    color: var(--brand-dark);
    background: #ccfbf1;
}

.hero-poster {
    overflow: hidden;
    border: 6px solid rgba(255, 255, 255, 0.22);
    border-radius: 28px;
    transform: rotate(2deg);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

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

.hero-poster span {
    position: absolute;
    right: 14px;
    bottom: 14px;
    padding: 8px 12px;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.72);
    border-radius: 999px;
    font-weight: 900;
    backdrop-filter: blur(10px);
}

.hero-control-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 18px;
}

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

.hero-arrow {
    width: 42px;
    height: 42px;
    color: var(--brand-dark);
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    font-size: 28px;
    line-height: 1;
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    border-radius: 999px;
    transition: width 0.2s ease, background 0.2s ease;
}

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

.search-panel,
.category-overview-block,
.ranking-panel,
.article-block,
.player-shell,
.filter-bar {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: var(--radius);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
}

.search-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
    gap: 24px;
    align-items: center;
    width: min(1240px, calc(100% - 32px));
    margin: 8px auto 0;
    padding: 24px;
}

.search-panel h2,
.search-panel p {
    margin: 0;
}

.search-panel h2 {
    font-size: 28px;
    font-weight: 900;
}

.search-panel p {
    color: var(--muted);
}

.home-search-form,
.filter-bar label {
    display: flex;
    gap: 10px;
}

input[type="search"] {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    outline: none;
    background: #ffffff;
    color: var(--ink);
}

input[type="search"]:focus {
    border-color: var(--brand-light);
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.14);
}

.content-section {
    padding: 54px 0 0;
}

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

.section-heading h2,
.page-hero h1,
.ranking-head h2,
.detail-copy h1,
.article-block h2,
.category-overview-head h2 {
    margin: 0;
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.section-heading h2 {
    font-size: clamp(28px, 3vw, 42px);
}

.section-heading p,
.page-hero p,
.category-overview-head p,
.rank-card-body p,
.article-block p,
.footer-inner p {
    color: var(--muted);
}

.section-heading p {
    margin: 8px 0 0;
    max-width: 760px;
}

.section-link,
.text-link {
    color: var(--brand);
    font-weight: 900;
}

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

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

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

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

.movie-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 22px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
}

.poster-link,
.rank-cover {
    position: relative;
    display: block;
    overflow: hidden;
    background: #dbeafe;
}

.poster-link img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 0.42s ease;
}

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

.play-float,
.rank-badge {
    position: absolute;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(10px);
}

.play-float {
    right: 12px;
    bottom: 12px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 900;
}

.rank-badge {
    left: 12px;
    top: 12px;
    display: grid;
    min-width: 34px;
    height: 34px;
    place-items: center;
}

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

.movie-meta-line {
    margin: 0 0 6px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.movie-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.3;
}

.movie-card h3 a:hover,
.rank-card h2 a:hover {
    color: var(--brand);
}

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

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

.category-tile {
    display: grid;
    gap: 8px;
    min-height: 170px;
    padding: 22px;
    background: linear-gradient(145deg, #ffffff, #ecfeff);
    border: 1px solid rgba(153, 246, 228, 0.8);
    border-radius: 24px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 42px rgba(15, 23, 42, 0.12);
}

.category-tile strong {
    color: var(--brand-dark);
    font-size: 22px;
    font-weight: 900;
}

.category-tile span,
.category-tile em {
    color: var(--muted);
    font-style: normal;
}

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

.ranking-panel {
    position: sticky;
    top: 96px;
    padding: 22px;
}

.ranking-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
}

.ranking-head a {
    color: var(--brand);
    font-weight: 900;
}

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

.ranking-list a {
    display: grid;
    grid-template-columns: 34px 74px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 18px;
    transition: background 0.2s ease;
}

.ranking-list a:hover {
    background: #f0fdfa;
}

.rank-num {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--brand-light), var(--accent));
    border-radius: 50%;
    font-weight: 900;
}

.ranking-list img {
    width: 74px;
    height: 52px;
    object-fit: cover;
    border-radius: 12px;
}

.rank-info {
    display: grid;
    min-width: 0;
}

.rank-info strong,
.rank-info em {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-info em {
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
}

.page-hero {
    margin-top: 34px;
    padding: 54px;
    overflow: hidden;
    background: radial-gradient(circle at top left, rgba(20, 184, 166, 0.22), transparent 30%), linear-gradient(135deg, #ffffff, #e6fffb);
    border: 1px solid rgba(153, 246, 228, 0.7);
    border-radius: 34px;
    box-shadow: var(--shadow);
}

.page-hero h1 {
    font-size: clamp(38px, 5vw, 66px);
}

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

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

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

.category-overview-block {
    width: min(1240px, calc(100% - 32px));
    margin: 28px auto 0;
    padding: 24px;
}

.category-overview-head {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.category-overview-head h2 {
    font-size: 32px;
}

.filter-bar {
    margin-bottom: 24px;
    padding: 18px;
}

.filter-bar label {
    align-items: center;
}

.filter-bar span {
    flex: 0 0 auto;
    color: var(--muted);
    font-weight: 900;
}

.rank-grid {
    display: grid;
    gap: 18px;
}

.rank-card {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 20px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.rank-cover img {
    width: 100%;
    height: 100%;
    min-height: 160px;
    object-fit: cover;
    transition: transform 0.42s ease;
}

.rank-cover b {
    position: absolute;
    left: 14px;
    top: 14px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--brand-light), var(--accent));
    border-radius: 50%;
}

.rank-card-body {
    padding: 22px 22px 22px 0;
}

.rank-card-body h2 {
    margin: 4px 0 10px;
    font-size: 26px;
    font-weight: 900;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    background: #0f172a;
}

.detail-bg {
    opacity: 0.62;
}

.detail-hero-inner {
    position: relative;
    z-index: 1;
    padding: 52px 0;
}

.detail-grid {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 38px;
    align-items: center;
}

.detail-poster {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border: 6px solid rgba(255, 255, 255, 0.18);
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

.detail-copy h1 {
    margin-bottom: 16px;
    color: #ffffff;
    font-size: clamp(36px, 5vw, 68px);
}

.detail-one-line {
    max-width: 860px;
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 20px;
}

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

.detail-meta span {
    padding: 7px 12px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    backdrop-filter: blur(10px);
    font-weight: 800;
}

.watch-section {
    padding: 34px 0 0;
}

.player-shell {
    position: relative;
    overflow: hidden;
    background: #020617;
}

.movie-video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #020617;
    border-radius: var(--radius);
}

.player-cover {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: grid;
    place-items: center;
    gap: 10px;
    overflow: hidden;
    padding: 30px;
    color: #ffffff;
    border: 0;
    background: #020617;
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-cover-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.46;
    filter: blur(1px) saturate(1.1);
    transform: scale(1.04);
}

.player-cover-bg::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.2), rgba(2, 6, 23, 0.86));
}

.player-play-icon,
.player-cover strong,
.player-cover em {
    position: relative;
    z-index: 1;
}

.player-play-icon {
    display: grid;
    width: 90px;
    height: 90px;
    place-items: center;
    color: var(--brand-dark);
    background: rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.25);
    font-size: 34px;
    text-indent: 5px;
}

.player-cover strong {
    max-width: 840px;
    text-align: center;
    font-size: clamp(28px, 4vw, 52px);
    line-height: 1.15;
}

.player-cover em {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.82);
    text-align: center;
    font-style: normal;
}

.detail-content {
    display: grid;
    gap: 20px;
}

.article-block {
    padding: 26px;
}

.article-block h2 {
    margin-bottom: 12px;
    font-size: 28px;
}

.article-block p {
    margin: 0;
    font-size: 17px;
}

.info-table dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
}

.info-table dl div {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 14px;
}

.info-table dt {
    color: var(--muted);
    font-weight: 900;
}

.info-table dd {
    margin: 0;
    font-weight: 800;
}

.tag-cloud {
    padding: 6px 0;
}

.prev-next {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.prev-next a {
    padding: 10px 14px;
    color: var(--brand-dark);
    background: #ccfbf1;
    border-radius: 999px;
    font-weight: 900;
}

.site-footer {
    margin-top: 70px;
    padding: 44px 0;
    color: #cbd5e1;
    background: #0f172a;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 28px;
}

.footer-logo {
    color: #ffffff;
    font-size: 24px;
}

.footer-inner p {
    max-width: 720px;
    margin: 10px 0 0;
    color: #94a3b8;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-content: start;
}

.footer-links a {
    padding: 8px 12px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    font-weight: 800;
}

[data-filter-item].is-hidden {
    display: none;
}

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

    .split-section,
    .search-panel {
        grid-template-columns: 1fr;
    }

    .ranking-panel {
        position: static;
    }

    .hero-slide {
        grid-template-columns: 1fr 260px;
        padding: 44px;
    }
}

@media (max-width: 820px) {
    .mobile-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        left: 16px;
        right: 16px;
        top: 86px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        background: #ffffff;
        border: 1px solid var(--line);
        border-radius: 24px;
        box-shadow: var(--shadow);
    }

    body.nav-open .site-nav {
        display: flex;
    }

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

    .hero-slide {
        grid-template-columns: 1fr;
        align-content: end;
        padding: 28px;
    }

    .hero-poster {
        display: none;
    }

    .hero h1 {
        font-size: clamp(34px, 11vw, 54px);
    }

    .hero-text,
    .detail-one-line {
        font-size: 17px;
    }

    .movie-grid,
    .movie-grid-small,
    .movie-grid-four,
    .movie-grid-six,
    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .rank-card,
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .rank-cover img {
        aspect-ratio: 16 / 9;
    }

    .rank-card-body {
        padding: 0 18px 20px;
    }

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

    .info-table dl {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .header-inner,
    .footer-inner,
    .content-section,
    .hero,
    .page-hero,
    .detail-hero-inner,
    .watch-section {
        width: min(100% - 22px, 1240px);
    }

    .logo-copy em {
        display: none;
    }

    .hero-stage {
        min-height: 590px;
        border-radius: 24px;
    }

    .hero-slide {
        padding: 22px;
    }

    .page-hero {
        padding: 30px 22px;
        border-radius: 24px;
    }

    .movie-grid,
    .movie-grid-small,
    .movie-grid-four,
    .movie-grid-six,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .home-search-form,
    .filter-bar label {
        flex-direction: column;
        align-items: stretch;
    }

    .detail-copy h1 {
        font-size: 36px;
    }

    .player-play-icon {
        width: 70px;
        height: 70px;
        font-size: 26px;
    }
}
