:root {
    --bg: #0b0d10;
    --panel: #101419;
    --panel-soft: #151a21;
    --panel-line: #202832;
    --text: #ffffff;
    --muted: #a6afbc;
    --muted-dark: #6f7a89;
    --primary: #f5871f;
    --primary-soft: #f79f3f;
    --primary-dark: #d66d0f;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: var(--bg);
    scroll-behavior: smooth;
}

body {
    min-height: 100%;
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--text);
    background: radial-gradient(circle at top left, rgba(245, 135, 31, 0.10), transparent 34rem), var(--bg);
}

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 rgba(255, 255, 255, 0.06);
    background: rgba(11, 13, 16, 0.88);
    backdrop-filter: blur(16px);
}

.header-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.logo-mark {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-soft));
    color: #fff;
    box-shadow: 0 10px 30px rgba(245, 135, 31, 0.35);
    font-size: 14px;
}

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

.nav-link,
.mobile-link {
    color: #d2d7de;
    font-weight: 650;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
    color: var(--primary);
}

.header-search {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
}

.header-search input,
.mobile-search input,
.search-panel input,
.hero-search-panel input {
    border: 0;
    outline: none;
    color: var(--text);
    background: transparent;
}

.header-search input {
    width: 230px;
    padding: 8px 10px 8px 14px;
}

.header-search button,
.mobile-search button,
.search-panel button,
.hero-search-panel button {
    border: 0;
    cursor: pointer;
    color: #fff;
    background: var(--primary);
    border-radius: 999px;
    padding: 9px 18px;
    font-weight: 750;
    transition: transform 0.2s ease, background 0.2s ease;
}

.header-search button:hover,
.mobile-search button:hover,
.search-panel button:hover,
.hero-search-panel button:hover,
.primary-button:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.menu-button {
    display: none;
    margin-left: auto;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 22px 22px;
    background: var(--panel);
}

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

.mobile-search {
    display: flex;
    gap: 8px;
    padding: 6px;
    border-radius: 16px;
    background: var(--panel-soft);
}

.mobile-search input {
    width: 100%;
    padding: 10px;
}

.hero {
    position: relative;
    min-height: 640px;
    height: 72vh;
    max-height: 820px;
    overflow: hidden;
    background: var(--panel);
}

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

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

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.52;
}

.hero-image.image-missing,
.movie-poster img.image-missing,
.category-card img.image-missing,
.cover-card img.image-missing {
    opacity: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11, 13, 16, 0.98) 0%, rgba(11, 13, 16, 0.86) 38%, rgba(11, 13, 16, 0.32) 72%, rgba(11, 13, 16, 0.72) 100%), radial-gradient(circle at 18% 30%, rgba(245, 135, 31, 0.25), transparent 24rem);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(720px, calc(100% - 44px));
    max-width: 1240px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-bottom: 70px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-soft);
    font-weight: 800;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
}

.hero h1,
.hero h2,
.page-hero h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(38px, 6vw, 76px);
    line-height: 1.05;
    font-weight: 900;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.55);
}

.hero p,
.page-hero p {
    max-width: 680px;
    color: #d7dde6;
    font-size: 18px;
    line-height: 1.8;
    margin: 22px 0 0;
}

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

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

.tag {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(245, 135, 31, 0.22);
    border-radius: 999px;
    padding: 6px 12px;
    color: var(--primary-soft);
    background: rgba(245, 135, 31, 0.12);
    font-size: 13px;
    font-weight: 700;
}

.hero-actions,
.small-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 32px;
}

.primary-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 12px;
    padding: 0 24px;
    font-weight: 850;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.primary-button {
    color: #fff;
    background: var(--primary);
    box-shadow: 0 14px 34px rgba(245, 135, 31, 0.25);
}

.ghost-button {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
}

.ghost-button:hover {
    transform: translateY(-1px);
    border-color: rgba(245, 135, 31, 0.55);
}

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

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

.hero-dot,
.hero-arrow {
    border: 0;
    cursor: pointer;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-dot {
    width: 32px;
    height: 5px;
    border-radius: 999px;
}

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

.hero-arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 24px;
}

.hero-arrow:hover,
.hero-dot:hover {
    background: rgba(245, 135, 31, 0.78);
    transform: translateY(-1px);
}

.hero-search-panel {
    position: absolute;
    left: 50%;
    bottom: 34px;
    z-index: 5;
    width: min(1240px, calc(100% - 44px));
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    background: rgba(16, 20, 25, 0.82);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.hero-search-panel form {
    display: flex;
    gap: 10px;
    padding: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
}

.hero-search-panel input {
    width: 100%;
    padding: 12px 16px;
}

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

.hero-quick-links a {
    color: #d7dde6;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
}

.hero-quick-links a:hover {
    color: var(--primary-soft);
}

.content-section,
.page-main {
    width: min(1240px, calc(100% - 44px));
    margin: 0 auto;
}

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

.first-section {
    padding-top: 48px;
}

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

.section-head h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    color: #fff;
    font-size: clamp(25px, 3vw, 36px);
    font-weight: 900;
}

.section-head p {
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.section-more {
    flex: 0 0 auto;
    color: var(--primary-soft);
    font-weight: 850;
}

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

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

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

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

.movie-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    background: var(--panel);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-5px);
    background: var(--panel-soft);
    border-color: rgba(245, 135, 31, 0.32);
}

.movie-poster {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, #1a2129, #0b0d10 55%, rgba(245, 135, 31, 0.22));
}

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

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

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

.poster-play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: rgba(245, 135, 31, 0.94);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.36);
    transform: translate(-50%, -50%) scale(0.88);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

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

.rank-badge {
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 3;
    min-width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), #ffb15f);
    font-weight: 900;
    box-shadow: 0 8px 20px rgba(245, 135, 31, 0.32);
}

.movie-info {
    padding: 15px;
}

.movie-title {
    display: block;
    color: #fff;
    font-size: 17px;
    font-weight: 850;
    line-height: 1.45;
}

.movie-title:hover {
    color: var(--primary-soft);
}

.movie-desc {
    min-height: 44px;
    margin: 9px 0 12px;
    color: var(--muted);
    line-height: 1.58;
    font-size: 14px;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted-dark);
    font-size: 13px;
    margin-bottom: 12px;
}

.tag-row {
    gap: 7px;
}

.tag-row .tag {
    padding: 4px 8px;
    font-size: 12px;
}

.movie-card-horizontal {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 0;
    min-height: 138px;
}

.small-poster {
    aspect-ratio: auto;
    height: 100%;
    min-height: 138px;
}

.compact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.compact-info .movie-desc {
    min-height: auto;
}

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

.category-card {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    border-radius: var(--radius);
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: linear-gradient(135deg, #151a21, #0b0d10);
    box-shadow: var(--shadow);
}

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

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

.category-cover {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(11, 13, 16, 0.96), rgba(11, 13, 16, 0.24));
}

.category-card strong,
.category-card small {
    position: relative;
    z-index: 2;
}

.category-card strong {
    font-size: 22px;
    font-weight: 900;
}

.category-card small {
    margin-top: 10px;
    color: #c6ccd6;
    line-height: 1.6;
}

.tall-card {
    min-height: 300px;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.8fr);
    gap: 32px;
    align-items: start;
}

.rank-list,
.mini-grid {
    display: grid;
    gap: 14px;
}

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

.review-card {
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius);
    background: var(--panel);
    padding: 24px;
    transition: transform 0.25s ease, background 0.25s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    background: var(--panel-soft);
}

.review-card h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 22px;
}

.review-card p {
    color: var(--muted);
    line-height: 1.75;
    margin: 0 0 16px;
}

.review-card span {
    color: var(--primary-soft);
    font-weight: 800;
}

.page-main {
    padding-bottom: 70px;
}

.page-hero {
    margin-top: 34px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 28px;
    background: radial-gradient(circle at 18% 25%, rgba(245, 135, 31, 0.22), transparent 30rem), linear-gradient(135deg, #151a21, #0b0d10);
    box-shadow: var(--shadow);
}

.compact-hero {
    padding: clamp(34px, 6vw, 72px);
}

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

.small-actions {
    margin-top: 24px;
}

.search-panel {
    width: min(720px, 100%);
    display: flex;
    gap: 10px;
    margin-top: 24px;
    padding: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.search-panel input {
    width: 100%;
    padding: 12px 16px;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.filter-row button {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #dce2eb;
    padding: 9px 14px;
    cursor: pointer;
}

.filter-row button.active,
.filter-row button:hover {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
}

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

.rank-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
}

.sticky-aside {
    position: sticky;
    top: 92px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius);
    background: var(--panel);
    padding: 18px;
}

.sticky-aside h2,
.aside-card h2 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 22px;
}

.player-section {
    width: min(1240px, calc(100% - 44px));
    margin: 30px auto 0;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background: #000;
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 9;
}

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

.play-layer {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(245, 135, 31, 0.18), rgba(0, 0, 0, 0.64));
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.play-layer.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.big-play {
    width: 86px;
    height: 86px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: var(--primary);
    font-size: 34px;
    cursor: pointer;
    box-shadow: 0 18px 40px rgba(245, 135, 31, 0.35);
    transition: transform 0.2s ease, background 0.2s ease;
}

.big-play:hover {
    transform: scale(1.04);
    background: var(--primary-dark);
}

.play-layer span {
    color: #fff;
    font-weight: 850;
}

.detail-layout {
    width: min(1240px, calc(100% - 44px));
    margin: 34px auto 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 32px;
    align-items: start;
}

.detail-content,
.detail-aside .aside-card,
.cover-card {
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius);
    background: var(--panel);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.2);
}

.detail-content {
    padding: clamp(24px, 4vw, 42px);
}

.detail-heading h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.12;
    font-weight: 900;
}

.detail-heading p {
    margin: 18px 0 0;
    color: #d8dee8;
    font-size: 18px;
    line-height: 1.8;
}

.detail-meta-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 28px 0;
}

.detail-meta-list div {
    padding: 14px;
    border-radius: 14px;
    background: var(--panel-soft);
}

.detail-meta-list span {
    display: block;
    color: var(--muted-dark);
    font-size: 13px;
    margin-bottom: 6px;
}

.detail-meta-list strong {
    color: #fff;
    font-size: 15px;
}

.detail-tags {
    margin-bottom: 26px;
}

.story-block {
    padding-top: 26px;
    margin-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.story-block h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 25px;
}

.story-block p {
    margin: 0;
    color: #cfd6df;
    line-height: 1.9;
    font-size: 16px;
    white-space: pre-line;
}

.detail-aside {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 92px;
}

.cover-card {
    display: block;
    overflow: hidden;
}

.cover-card img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    background: linear-gradient(135deg, #151a21, #0b0d10);
}

.cover-card strong,
.cover-card span {
    display: block;
    padding: 0 18px;
}

.cover-card strong {
    margin-top: 16px;
    color: #fff;
    font-size: 20px;
}

.cover-card span {
    margin: 8px 0 18px;
    color: var(--primary-soft);
    font-weight: 800;
}

.aside-card {
    padding: 18px;
}

.site-footer {
    margin-top: 70px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    background: var(--panel);
}

.footer-grid {
    width: min(1240px, calc(100% - 44px));
    margin: 0 auto;
    padding: 42px 0;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
}

.footer-grid p {
    max-width: 520px;
    color: var(--muted);
    line-height: 1.8;
}

.footer-grid h2 {
    margin: 0 0 14px;
    font-size: 18px;
}

.footer-links {
    display: grid;
    gap: 10px;
}

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

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

.footer-bottom {
    width: min(1240px, calc(100% - 44px));
    margin: 0 auto;
    padding: 18px 0 28px;
    color: var(--muted-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

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

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

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

    .detail-aside,
    .sticky-aside {
        position: static;
    }
}

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

    .menu-button {
        display: block;
    }

    .header-inner {
        padding: 12px 18px;
    }

    .hero {
        height: auto;
        min-height: 720px;
    }

    .hero-content {
        width: calc(100% - 36px);
        padding: 70px 0 230px;
    }

    .hero-search-panel {
        grid-template-columns: 1fr;
        bottom: 24px;
    }

    .hero-search-panel form,
    .search-panel {
        border-radius: 18px;
        flex-direction: column;
    }

    .hero-controls {
        bottom: 190px;
    }

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

    .category-grid,
    .review-grid,
    .footer-grid,
    .detail-meta-list {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 520px) {
    .content-section,
    .page-main,
    .player-section,
    .detail-layout,
    .footer-grid,
    .footer-bottom {
        width: calc(100% - 28px);
    }

    .hero-content,
    .hero-search-panel,
    .hero-controls {
        width: calc(100% - 28px);
    }

    .movie-grid,
    .large-grid,
    .catalog-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .movie-card-horizontal {
        grid-template-columns: 88px 1fr;
    }

    .small-poster {
        min-height: 132px;
    }

    .compact-hero {
        padding: 28px;
    }

    .big-play {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}
