:root {
    --bg: #020617;
    --bg-soft: #0f172a;
    --panel: rgba(15, 23, 42, 0.72);
    --panel-strong: rgba(15, 23, 42, 0.92);
    --line: rgba(148, 163, 184, 0.16);
    --line-strong: rgba(239, 68, 68, 0.42);
    --text: #f8fafc;
    --muted: #94a3b8;
    --muted-soft: #64748b;
    --red: #ef4444;
    --red-dark: #dc2626;
    --red-soft: rgba(239, 68, 68, 0.14);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    background:
        radial-gradient(circle at 15% 10%, rgba(239, 68, 68, 0.18), transparent 28rem),
        radial-gradient(circle at 85% 0%, rgba(37, 99, 235, 0.14), transparent 26rem),
        linear-gradient(135deg, #020617 0%, #0f172a 52%, #020617 100%);
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input {
    font: inherit;
}

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

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

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

.brand-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: #fff;
    border-radius: 999px;
    background: var(--red);
    box-shadow: 0 0 32px rgba(239, 68, 68, 0.48);
    font-size: 14px;
    padding-left: 2px;
}

.brand-text {
    display: grid;
    gap: 1px;
}

.brand-text strong {
    font-size: 21px;
    line-height: 1.05;
}

.brand-text small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 500;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex: 1;
}

.nav-link {
    position: relative;
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 700;
    transition: color 0.2s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -12px;
    height: 2px;
    border-radius: 999px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

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

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

.header-search,
.mobile-search,
.page-search {
    position: relative;
    display: block;
}

.header-search span,
.mobile-search span,
.page-search span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.header-search input,
.mobile-search input,
.page-search input {
    width: 250px;
    min-height: 42px;
    color: var(--text);
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 999px;
    outline: 0;
    background: rgba(15, 23, 42, 0.72);
    padding: 0 18px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.page-search input:focus {
    border-color: rgba(239, 68, 68, 0.72);
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.14);
    background: rgba(15, 23, 42, 0.95);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    color: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.78);
    cursor: pointer;
}

.mobile-panel {
    border-top: 1px solid var(--line);
    background: rgba(2, 6, 23, 0.98);
    padding: 16px;
}

.mobile-panel nav {
    display: grid;
    gap: 8px;
    margin-top: 14px;
}

.mobile-link {
    padding: 12px 14px;
    border-radius: 14px;
    color: #cbd5e1;
    background: rgba(15, 23, 42, 0.56);
}

.page-shell {
    padding-top: 72px;
}

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

.hero {
    position: relative;
    min-height: 610px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

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

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

.hero-bg,
.hero-bg img,
.hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-bg img {
    object-fit: cover;
    transform: scale(1.04);
    filter: saturate(1.08) contrast(1.06);
}

.hero-shade {
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.95) 0%, rgba(2, 6, 23, 0.74) 42%, rgba(2, 6, 23, 0.25) 100%),
        linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.24) 42%, rgba(2, 6, 23, 0.56) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    min-height: 610px;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    padding: 0 0 74px;
}

.hero-copy {
    width: min(680px, 100%);
    animation: rise 0.7s ease both;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    background: rgba(239, 68, 68, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 8px 15px;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 10px 34px rgba(239, 68, 68, 0.32);
}

.hero h1 {
    margin: 20px 0 16px;
    font-size: clamp(36px, 6vw, 72px);
    line-height: 0.96;
    letter-spacing: -0.055em;
    max-width: 830px;
}

.hero p {
    width: min(680px, 100%);
    margin: 0 0 26px;
    color: #d1d5db;
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.8;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
}

.pill {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    color: #e2e8f0;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.62);
    padding: 5px 12px;
    font-size: 13px;
    font-weight: 700;
    backdrop-filter: blur(14px);
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    gap: 8px;
    padding: 0 22px;
    border-radius: 999px;
    color: #fff;
    background: var(--red);
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 14px 36px rgba(239, 68, 68, 0.28);
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
    background: var(--red-dark);
    box-shadow: 0 18px 40px rgba(239, 68, 68, 0.36);
}

.button.secondary {
    background: rgba(15, 23, 42, 0.65);
    border-color: rgba(148, 163, 184, 0.22);
    box-shadow: none;
}

.hero-arrow {
    position: absolute;
    z-index: 4;
    top: 50%;
    width: 48px;
    height: 48px;
    color: #fff;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.58);
    cursor: pointer;
    backdrop-filter: blur(14px);
    transition: transform 0.2s ease, background 0.2s ease;
}

.hero-arrow:hover {
    transform: translateY(-50%) scale(1.06);
    background: rgba(15, 23, 42, 0.86);
}

.hero-prev {
    left: 22px;
    transform: translateY(-50%);
}

.hero-next {
    right: 22px;
    transform: translateY(-50%);
}

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

.hero-dot {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.72);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

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

.section {
    padding: 72px 0;
}

.section.compact {
    padding: 42px 0;
}

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

.section-title {
    margin: 0;
    font-size: clamp(26px, 3vw, 40px);
    letter-spacing: -0.035em;
}

.section-subtitle {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.text-link {
    color: #f87171;
    font-weight: 800;
    white-space: nowrap;
}

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

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

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

.movie-card {
    min-width: 0;
}

.movie-card[hidden] {
    display: none;
}

.movie-card-link {
    display: grid;
    overflow: hidden;
    height: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(15, 23, 42, 0.56);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.movie-card-link:hover {
    transform: translateY(-5px);
    border-color: var(--line-strong);
    background: rgba(15, 23, 42, 0.82);
}

.card-poster {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #000;
}

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

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

.card-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.78), transparent 62%);
}

.card-play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    color: #fff;
    border-radius: 999px;
    background: rgba(239, 68, 68, 0.9);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.88);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

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

.card-badge,
.card-year {
    position: absolute;
    z-index: 2;
    top: 12px;
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    border-radius: 999px;
    padding: 3px 10px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(12px);
}

.card-badge {
    left: 12px;
    background: rgba(239, 68, 68, 0.88);
}

.card-year {
    right: 12px;
    background: rgba(2, 6, 23, 0.72);
}

.card-body {
    display: grid;
    gap: 9px;
    padding: 16px;
}

.card-title {
    color: #fff;
    font-size: 17px;
    font-weight: 850;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted-soft);
    font-size: 12px;
}

.card-meta span {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.scroll-row {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 4px 4px 18px;
    scroll-snap-type: x mandatory;
}

.scroll-row .movie-card {
    width: 300px;
    flex: 0 0 300px;
    scroll-snap-align: start;
}

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

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 150px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background:
        radial-gradient(circle at 85% 10%, rgba(239, 68, 68, 0.18), transparent 12rem),
        rgba(15, 23, 42, 0.58);
    padding: 22px;
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: var(--line-strong);
    background:
        radial-gradient(circle at 85% 10%, rgba(239, 68, 68, 0.25), transparent 12rem),
        rgba(15, 23, 42, 0.86);
}

.category-card strong {
    display: block;
    margin-bottom: 9px;
    color: #fff;
    font-size: 19px;
}

.category-card span {
    color: var(--muted);
    line-height: 1.7;
    font-size: 14px;
}

.category-card em {
    position: absolute;
    right: 18px;
    bottom: 16px;
    color: #f87171;
    font-style: normal;
    font-size: 13px;
    font-weight: 800;
}

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

.rank-box,
.filter-panel,
.detail-panel,
.side-card,
.notice-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--panel);
    box-shadow: var(--shadow);
}

.rank-box {
    padding: 24px;
}

.rank-box h3 {
    margin: 0 0 18px;
    font-size: 22px;
}

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

.compact-card {
    display: grid;
    grid-template-columns: auto 104px 1fr;
    align-items: center;
    gap: 14px;
    min-width: 0;
    border-radius: 16px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.compact-card:hover {
    background: rgba(148, 163, 184, 0.06);
    transform: translateX(3px);
}

.compact-card img {
    width: 104px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 12px;
    background: #000;
}

.compact-card strong,
.compact-card em {
    display: block;
    min-width: 0;
}

.compact-card strong {
    color: #fff;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.compact-card em {
    color: var(--muted-soft);
    margin-top: 5px;
    font-style: normal;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rank-index {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: #fff;
    border-radius: 999px;
    background: rgba(239, 68, 68, 0.9);
    font-size: 12px;
    font-weight: 900;
}

.page-hero {
    padding: 128px 0 54px;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.72), rgba(2, 6, 23, 0));
}

.page-hero h1 {
    margin: 0;
    font-size: clamp(34px, 5vw, 60px);
    line-height: 1.04;
    letter-spacing: -0.05em;
}

.page-hero p {
    width: min(780px, 100%);
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

.filter-panel {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 18px;
    align-items: center;
    padding: 24px;
    margin: 32px 0;
}

.filter-panel h2 {
    margin: 0 0 8px;
    font-size: 22px;
}

.filter-panel p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

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

.filter-chips {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-chip {
    min-height: 36px;
    color: #cbd5e1;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.66);
    padding: 0 14px;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.filter-chip:hover,
.filter-chip.is-active {
    color: #fff;
    border-color: rgba(239, 68, 68, 0.6);
    background: rgba(239, 68, 68, 0.16);
}

.result-count {
    grid-column: 1 / -1;
    color: var(--muted-soft);
    font-size: 13px;
}

.detail-page {
    padding: 118px 0 70px;
}

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

.breadcrumb a {
    color: #f87171;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 26px;
    align-items: start;
}

.detail-main {
    display: grid;
    gap: 22px;
    min-width: 0;
}

.player-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #000;
    box-shadow: var(--shadow);
}

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

.play-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #fff;
    border: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.52), rgba(2, 6, 23, 0.16));
    cursor: pointer;
}

.player-card.is-playing .play-overlay {
    display: none;
}

.play-overlay span {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--red);
    box-shadow: 0 18px 52px rgba(239, 68, 68, 0.38);
    font-size: 30px;
    padding-left: 5px;
}

.detail-panel {
    padding: clamp(22px, 3vw, 34px);
}

.detail-panel h1 {
    margin: 0 0 18px;
    font-size: clamp(30px, 4.4vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

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

.detail-meta {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 24px;
}

.detail-meta span,
.tag-list span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #dbeafe;
    background: rgba(15, 23, 42, 0.58);
    padding: 5px 12px;
    font-size: 13px;
    font-weight: 700;
}

.detail-section {
    margin-top: 24px;
}

.detail-section h2 {
    margin: 0 0 12px;
    font-size: 21px;
}

.detail-section p {
    margin: 0 0 14px;
    color: #cbd5e1;
    line-height: 1.88;
}

.side-column {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 22px;
}

.side-card {
    padding: 22px;
}

.side-card h2,
.side-card h3 {
    margin: 0 0 16px;
    font-size: 20px;
}

.notice-panel {
    padding: 24px;
    margin-top: 34px;
    background:
        radial-gradient(circle at top right, rgba(239, 68, 68, 0.12), transparent 18rem),
        var(--panel);
}

.notice-panel h2 {
    margin: 0 0 10px;
}

.notice-panel p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.empty-state {
    display: none;
    text-align: center;
    color: var(--muted);
    border: 1px dashed var(--line);
    border-radius: var(--radius-md);
    padding: 38px;
    margin-top: 24px;
}

.empty-state.is-visible {
    display: block;
}

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

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

.footer-inner p {
    width: min(680px, 100%);
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 700;
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

    .side-column {
        position: static;
    }
}

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

    .menu-toggle {
        display: grid;
        place-items: center;
    }

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

    .hero-arrow {
        display: none;
    }

    .section-head,
    .footer-inner,
    .filter-panel {
        grid-template-columns: 1fr;
    }

    .section-head,
    .footer-inner {
        display: grid;
        align-items: start;
    }

    .movie-grid,
    .movie-grid.three,
    .movie-grid.all-movies,
    .category-grid,
    .rank-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

    .brand-text small {
        display: none;
    }

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

    .page-shell {
        padding-top: 64px;
    }

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

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

    .hero h1 {
        font-size: 34px;
    }

    .movie-grid,
    .movie-grid.three,
    .movie-grid.all-movies,
    .category-grid,
    .rank-layout {
        grid-template-columns: 1fr;
    }

    .compact-card {
        grid-template-columns: auto 92px 1fr;
    }

    .compact-card img {
        width: 92px;
    }

    .page-hero {
        padding-top: 104px;
    }

    .detail-page {
        padding-top: 94px;
    }

    .play-overlay span {
        width: 66px;
        height: 66px;
        font-size: 24px;
    }
}
