:root {
    --bg: #020617;
    --panel: rgba(15, 23, 42, 0.82);
    --panel-strong: rgba(15, 23, 42, 0.96);
    --panel-soft: rgba(30, 41, 59, 0.58);
    --border: rgba(148, 163, 184, 0.18);
    --text: #f8fafc;
    --muted: #94a3b8;
    --cyan: #22d3ee;
    --blue: #3b82f6;
    --gold: #facc15;
    --danger: #fb7185;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
    color-scheme: dark;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background:
        radial-gradient(circle at 12% 8%, rgba(34, 211, 238, 0.18), transparent 34%),
        radial-gradient(circle at 80% 0%, rgba(59, 130, 246, 0.20), transparent 32%),
        linear-gradient(180deg, #020617 0%, #0f172a 45%, #020617 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.narrow-container {
    width: min(920px, calc(100% - 32px));
}

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

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

.site-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.logo-mark {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: #00111f;
    box-shadow: 0 12px 36px rgba(34, 211, 238, 0.28);
}

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

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

.nav-link {
    padding: 10px 16px;
    border-radius: 999px;
    color: #cbd5e1;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

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

.nav-link:hover {
    transform: translateY(-1px);
}

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

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 99px;
    background: currentColor;
}

.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    isolation: isolate;
}

.hero-slide {
    position: absolute;
    inset: 0;
    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.05) contrast(1.08);
}

.hero-overlay,
.category-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.72) 42%, rgba(0, 0, 0, 0.18) 100%),
        linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.1) 45%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 760px;
    padding-top: 24px;
}

.hero-kicker,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: max-content;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--cyan);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-kicker::before,
.section-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 20px var(--cyan);
}

.hero h1,
.page-hero h1,
.detail-intro h1 {
    margin: 0;
    font-size: clamp(36px, 6vw, 68px);
    line-height: 1.04;
    letter-spacing: -0.05em;
}

.hero p,
.page-hero p,
.detail-intro p {
    max-width: 720px;
    margin: 22px 0 0;
    color: #cbd5e1;
    font-size: 18px;
}

.hero-meta,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
}

.hero-meta span,
.detail-meta span {
    padding: 7px 12px;
    border: 1px solid rgba(34, 211, 238, 0.42);
    border-radius: 999px;
    background: rgba(34, 211, 238, 0.1);
    color: #a5f3fc;
    font-size: 14px;
}

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

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

.hero-tags span,
.tag-row span {
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.12);
    color: #dbeafe;
    font-size: 13px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}

.primary-button,
.ghost-button,
.text-button,
.home-search button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border: 0;
    border-radius: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border 0.2s ease;
}

.primary-button,
.home-search button {
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: #00111f;
    box-shadow: 0 18px 42px rgba(34, 211, 238, 0.24);
}

.ghost-button {
    border: 1px solid var(--border);
    background: rgba(15, 23, 42, 0.62);
    color: #e2e8f0;
}

.text-button {
    min-height: auto;
    padding: 0;
    color: var(--cyan);
    background: transparent;
}

.primary-button:hover,
.ghost-button:hover,
.home-search button:hover {
    transform: translateY(-2px);
}

.ghost-button:hover {
    border-color: rgba(34, 211, 238, 0.5);
    background: rgba(34, 211, 238, 0.08);
}

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

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

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

.home-search-panel {
    margin-top: -34px;
    position: relative;
    z-index: 8;
}

.home-search-panel .container {
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.86);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
}

.home-search {
    display: flex;
    gap: 12px;
}

.home-search input,
.filter-panel input,
.filter-panel select {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--border);
    border-radius: 14px;
    color: var(--text);
    background: rgba(2, 6, 23, 0.72);
    outline: 0;
}

.home-search input {
    padding: 0 16px;
}

.home-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
    border-color: rgba(34, 211, 238, 0.56);
    box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.08);
}

.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.quick-links a {
    padding: 7px 12px;
    border-radius: 999px;
    color: #cbd5e1;
    background: rgba(148, 163, 184, 0.1);
}

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

.section-muted {
    background: rgba(15, 23, 42, 0.36);
}

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

.section-heading h2 {
    margin: 0;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.16;
    letter-spacing: -0.03em;
}

.section-heading p {
    max-width: 680px;
    margin: 10px 0 0;
    color: var(--muted);
}

.section-more {
    flex: 0 0 auto;
    color: var(--cyan);
    font-weight: 800;
}

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

.category-card {
    position: relative;
    min-height: 210px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--panel);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}

.category-card img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card strong,
.category-card em {
    position: relative;
    z-index: 2;
    display: block;
    margin: 0 18px;
}

.category-card strong {
    margin-top: 124px;
    font-size: 22px;
}

.category-card em {
    margin-top: 6px;
    color: #cbd5e1;
    font-size: 13px;
    font-style: normal;
}

.category-card:hover img {
    transform: scale(1.08);
}

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

.feature-grid {
    grid-template-columns: repeat(4, 1fr);
}

.listing-grid {
    grid-template-columns: repeat(4, 1fr);
}

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

.movie-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.68);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.2);
    transition: transform 0.22s ease, border 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-5px);
    border-color: rgba(34, 211, 238, 0.48);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
}

.poster-wrap {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: #111827;
}

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

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

.poster-shade {
    position: absolute;
    inset: auto 0 0 0;
    height: 48%;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.92), transparent);
}

.poster-year,
.poster-rating {
    position: absolute;
    top: 12px;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(14px);
}

.poster-year {
    left: 12px;
    background: rgba(15, 23, 42, 0.75);
}

.poster-rating {
    right: 12px;
    color: #1f1300;
    background: var(--gold);
}

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

.movie-mini-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
}

.movie-mini-meta span + span::before {
    content: "·";
    margin-right: 8px;
    color: rgba(148, 163, 184, 0.5);
}

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

.movie-card h3 a:hover {
    color: var(--cyan);
}

.movie-card p {
    min-height: 48px;
    margin: 0 0 12px;
    color: #a8b3c7;
    font-size: 14px;
}

.movie-card.compact p {
    min-height: auto;
}

.tag-row {
    margin-top: 10px;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
    gap: 30px;
}

.ranking-list {
    display: grid;
    gap: 12px;
}

.ranking-row {
    display: grid;
    grid-template-columns: 52px 72px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.7);
    transition: transform 0.2s ease, border 0.2s ease, background 0.2s ease;
}

.ranking-row:hover {
    transform: translateX(4px);
    border-color: rgba(34, 211, 238, 0.46);
    background: rgba(15, 23, 42, 0.95);
}

.ranking-number {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    color: #00111f;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    font-weight: 900;
}

.ranking-row img {
    width: 72px;
    height: 54px;
    border-radius: 12px;
    object-fit: cover;
}

.ranking-info {
    min-width: 0;
}

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

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

.ranking-heat {
    color: var(--cyan);
    font-weight: 800;
}

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

.wide-card {
    display: grid;
    grid-template-columns: 128px 1fr;
    gap: 14px;
    align-items: center;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.64);
}

.wide-card img {
    width: 128px;
    height: 84px;
    border-radius: 14px;
    object-fit: cover;
}

.wide-content strong,
.wide-content em,
.wide-content small {
    display: block;
}

.wide-content em,
.wide-content small {
    color: var(--muted);
    font-style: normal;
}

.page-hero {
    position: relative;
    padding: 96px 0 72px;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 10%, rgba(34, 211, 238, 0.22), transparent 28%),
        radial-gradient(circle at 82% 14%, rgba(59, 130, 246, 0.18), transparent 34%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 0.92));
}

.small-hero,
.search-hero,
.ranking-hero,
.category-hero {
    border-bottom: 1px solid var(--border);
}

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

.channel-card {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 24px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.72);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
}

.channel-cover {
    position: relative;
    min-height: 176px;
    overflow: hidden;
    border-radius: 18px;
}

.channel-cover img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
}

.channel-cover span {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.74), transparent);
}

.channel-body h2 {
    margin: 0;
    font-size: 28px;
}

.channel-body p {
    color: #b7c3d8;
}

.channel-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0 16px;
}

.channel-links a,
.side-links a {
    padding: 6px 10px;
    border-radius: 999px;
    color: #dbeafe;
    background: rgba(148, 163, 184, 0.1);
    font-size: 13px;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) 180px 180px;
    gap: 14px;
    margin-bottom: 24px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.72);
}

.filter-panel label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.filter-panel input,
.filter-panel select {
    padding: 0 14px;
}

.filter-panel option {
    background: #0f172a;
    color: var(--text);
}

.detail-hero {
    position: relative;
    overflow: hidden;
    padding: 54px 0;
    border-bottom: 1px solid var(--border);
}

.detail-bg {
    position: absolute;
    inset: 0;
    opacity: 0.22;
    filter: blur(16px) saturate(1.2);
    transform: scale(1.04);
}

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

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

.detail-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 34px;
    align-items: center;
}

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

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

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

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

.detail-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 28px;
    align-items: start;
}

.detail-main,
.detail-sidebar {
    display: grid;
    gap: 22px;
}

.player-card,
.article-card,
.side-card {
    border: 1px solid var(--border);
    border-radius: 26px;
    background: rgba(15, 23, 42, 0.72);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.16);
}

.article-card,
.side-card {
    padding: 24px;
}

.article-card h2,
.side-card h2 {
    margin: 0 0 12px;
    font-size: 24px;
}

.article-card p,
.side-card p {
    margin: 0;
    color: #cbd5e1;
}

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

.movie-video {
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 0;
    color: #fff;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.2), rgba(0, 0, 0, 0.48));
    cursor: pointer;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.play-circle {
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    padding-left: 5px;
    border-radius: 50%;
    color: #00111f;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 0 46px rgba(34, 211, 238, 0.44);
    font-size: 30px;
}

.play-title {
    font-size: 18px;
    font-weight: 900;
}

.side-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0;
}

.compact-ranking .ranking-row {
    grid-template-columns: 42px 58px 1fr;
}

.compact-ranking .ranking-heat {
    display: none;
}

.compact-ranking .ranking-row img {
    width: 58px;
    height: 46px;
}

.compact-ranking .ranking-number {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    font-size: 13px;
}

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

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

.footer-logo {
    color: var(--text);
    font-size: 20px;
}

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

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

.copyright {
    margin: 0;
    font-size: 13px;
}

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

@media (max-width: 1080px) {
    .category-grid,
    .movie-grid,
    .feature-grid,
    .listing-grid,
    .related-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .detail-sidebar {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .site-nav {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 72px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border: 1px solid var(--border);
        border-radius: 18px;
        background: rgba(2, 6, 23, 0.96);
        box-shadow: var(--shadow);
    }

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

    .nav-link {
        border-radius: 12px;
    }

    .hero {
        height: 560px;
    }

    .hero-content {
        justify-content: flex-end;
        padding-bottom: 96px;
    }

    .home-search {
        flex-direction: column;
    }

    .category-grid,
    .movie-grid,
    .feature-grid,
    .listing-grid,
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .channel-cover {
        min-height: 220px;
    }

    .filter-panel {
        grid-template-columns: 1fr;
    }

    .detail-poster {
        width: min(260px, 100%);
    }

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

@media (max-width: 560px) {
    .container,
    .header-inner,
    .footer-inner {
        width: min(100% - 24px, 1180px);
    }

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

    .site-nav {
        top: 64px;
    }

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

    .logo-mark {
        width: 36px;
        height: 36px;
    }

    .hero {
        height: 540px;
    }

    .hero h1,
    .page-hero h1,
    .detail-intro h1 {
        font-size: 34px;
    }

    .hero p,
    .page-hero p,
    .detail-intro p {
        font-size: 15px;
    }

    .hero-actions {
        align-items: stretch;
    }

    .primary-button,
    .ghost-button {
        width: 100%;
    }

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

    .section-heading {
        display: block;
    }

    .section-more {
        display: inline-flex;
        margin-top: 12px;
    }

    .category-grid,
    .movie-grid,
    .feature-grid,
    .listing-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .movie-card {
        border-radius: 18px;
    }

    .poster-wrap {
        aspect-ratio: 16 / 10;
    }

    .ranking-row {
        grid-template-columns: 44px 60px 1fr;
    }

    .ranking-row img {
        width: 60px;
        height: 46px;
    }

    .ranking-heat {
        display: none;
    }

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

    .wide-card img {
        width: 94px;
        height: 70px;
    }

    .page-hero {
        padding: 72px 0 54px;
    }

    .article-card,
    .side-card {
        padding: 18px;
    }

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