:root {
    color-scheme: dark;
    --bg: #12100e;
    --bg-2: #1c1917;
    --panel: rgba(41, 37, 36, 0.92);
    --panel-2: rgba(68, 64, 60, 0.72);
    --line: rgba(180, 83, 9, 0.42);
    --line-soft: rgba(245, 158, 11, 0.18);
    --brand: #d97706;
    --brand-2: #f59e0b;
    --text: #fff7ed;
    --muted: #d6d3d1;
    --soft: #a8a29e;
    --black: rgba(0, 0, 0, 0.68);
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(217, 119, 6, 0.22), transparent 32rem),
        radial-gradient(circle at top right, rgba(120, 53, 15, 0.22), transparent 28rem),
        linear-gradient(180deg, #0c0a09 0%, #1c1917 42%, #0c0a09 100%);
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 2px solid rgba(180, 83, 9, 0.62);
    background: linear-gradient(90deg, rgba(120, 53, 15, 0.96), rgba(41, 37, 36, 0.96), rgba(120, 53, 15, 0.96));
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(16px);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1200px, calc(100% - 32px));
    height: 68px;
    margin: 0 auto;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffedd5;
}

.brand:hover {
    color: #ffffff;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #fff7ed;
    background: linear-gradient(135deg, #f59e0b, #b45309);
    box-shadow: 0 10px 28px rgba(217, 119, 6, 0.45);
    font-size: 14px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #ffedd5;
    font-weight: 650;
}

.desktop-nav a,
.mobile-nav a {
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
    color: #ffffff;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: rgba(120, 53, 15, 0.6);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    border-radius: 999px;
    background: #ffedd5;
}

.mobile-nav {
    display: none;
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 8px 0 16px;
}

.mobile-nav a {
    display: block;
    padding: 11px 14px;
    border-radius: 12px;
    color: #ffedd5;
}

.mobile-nav a:hover {
    background: rgba(146, 64, 14, 0.6);
}

.hero-carousel {
    position: relative;
    width: min(1200px, calc(100% - 32px));
    min-height: 580px;
    margin: 28px auto 34px;
    overflow: hidden;
    border: 1px solid var(--line-soft);
    border-radius: 26px;
    box-shadow: var(--shadow);
    background: #1c1917;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    background-position: center;
    background-size: cover;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.65s ease, transform 1.15s ease;
    pointer-events: none;
}

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

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.65) 44%, rgba(0, 0, 0, 0.12) 100%),
        radial-gradient(circle at 18% 28%, rgba(245, 158, 11, 0.32), transparent 26rem);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(680px, calc(100% - 48px));
    margin-left: clamp(24px, 7vw, 82px);
}

.hero-kicker,
.detail-kicker,
.badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border-radius: 999px;
    background: linear-gradient(135deg, #d97706, #92400e);
    color: #fff7ed;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.hero-kicker {
    padding: 7px 13px;
    margin-bottom: 18px;
}

.hero-content h1,
.hero-content h2 {
    margin: 0 0 14px;
    max-width: 760px;
    font-size: clamp(36px, 6vw, 62px);
    line-height: 1.06;
    letter-spacing: -0.06em;
    color: #ffffff;
    text-shadow: 0 12px 32px rgba(0, 0, 0, 0.42);
}

.hero-content h2 + p,
.hero-content h1 + h2 + p {
    margin-top: 18px;
}

.hero-content p {
    margin: 0 0 24px;
    max-width: 640px;
    color: #e7e5e4;
    font-size: 18px;
    line-height: 1.8;
}

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

.hero-meta {
    margin-bottom: 26px;
}

.hero-meta span,
.detail-tags span {
    padding: 6px 10px;
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 999px;
    color: #fed7aa;
    background: rgba(28, 25, 23, 0.62);
    font-size: 13px;
}

.hero-actions,
.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.primary-btn,
.ghost-btn,
.more-link,
.text-link,
.watch-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.primary-btn {
    padding: 0 24px;
    color: #fff7ed;
    background: linear-gradient(135deg, #f59e0b, #b45309);
    box-shadow: 0 12px 32px rgba(217, 119, 6, 0.35);
}

.ghost-btn {
    padding: 0 20px;
    border: 1px solid rgba(245, 158, 11, 0.42);
    color: #ffedd5;
    background: rgba(0, 0, 0, 0.28);
}

.primary-btn:hover,
.ghost-btn:hover,
.more-link:hover,
.text-link:hover,
.watch-small:hover {
    transform: translateY(-2px);
}

.ghost-btn:hover {
    border-color: rgba(245, 158, 11, 0.8);
    background: rgba(146, 64, 14, 0.62);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    color: #fff7ed;
    background: rgba(0, 0, 0, 0.55);
    cursor: pointer;
    transform: translateY(-50%);
    transition: background 0.2s ease;
    font-size: 32px;
    line-height: 1;
}

.hero-arrow:hover {
    background: rgba(0, 0, 0, 0.78);
}

.hero-prev {
    left: 18px;
}

.hero-next {
    right: 18px;
}

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

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

.hero-dot.active {
    width: 34px;
    background: #f59e0b;
}

.search-band,
.category-strip,
.content-section,
.filter-panel,
.page-hero,
.article-section {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto 46px;
}

.search-band {
    padding: 22px;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(68, 64, 60, 0.82), rgba(28, 25, 23, 0.9));
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}

.search-form label,
.filter-row label span {
    display: block;
    margin-bottom: 8px;
    color: #fbbf24;
    font-weight: 800;
}

.search-form div {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.search-form input,
.filter-row input,
.filter-row select {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(245, 158, 11, 0.26);
    border-radius: 12px;
    color: #fff7ed;
    background: rgba(12, 10, 9, 0.72);
    outline: 0;
    padding: 0 14px;
}

.search-form input:focus,
.filter-row input:focus,
.filter-row select:focus {
    border-color: rgba(245, 158, 11, 0.82);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

.search-form button {
    min-height: 46px;
    border: 0;
    border-radius: 12px;
    color: #fff7ed;
    background: linear-gradient(135deg, #d97706, #92400e);
    font-weight: 800;
    padding: 0 20px;
    cursor: pointer;
}

.section-head {
    margin-bottom: 22px;
}

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

.section-head h2,
.page-hero h1,
.article-section h2 {
    margin: 0 0 8px;
    color: #ffedd5;
    line-height: 1.16;
}

.section-head h2 {
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(245, 158, 11, 0.68);
    font-size: clamp(26px, 3vw, 34px);
}

.section-head p,
.page-hero p,
.article-section p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

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

.category-card {
    position: relative;
    min-height: 154px;
    overflow: hidden;
    border: 1px solid var(--line-soft);
    border-radius: 18px;
    background: #292524;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
}

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

.category-card span {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.12));
}

.category-card strong,
.category-card em {
    position: absolute;
    left: 14px;
    right: 14px;
    z-index: 2;
}

.category-card strong {
    bottom: 40px;
    font-size: 18px;
    color: #ffffff;
}

.category-card em {
    bottom: 14px;
    color: #d6d3d1;
    font-size: 12px;
    font-style: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid var(--line-soft);
    border-radius: 18px;
    background: rgba(41, 37, 36, 0.9);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 158, 11, 0.55);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #1c1917;
}

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

.poster-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.74) 100%);
}

.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    padding: 5px 9px;
    font-size: 12px;
}

.card-body {
    padding: 14px;
}

.card-body h2 {
    margin: 0 0 8px;
    min-height: 48px;
    color: #ffedd5;
    font-size: 17px;
    line-height: 1.35;
}

.card-body h2 a:hover,
.rank-row h2 a:hover,
.category-overview-card h2 a:hover {
    color: #fbbf24;
}

.card-body p {
    display: -webkit-box;
    min-height: 44px;
    margin: 0 0 12px;
    overflow: hidden;
    color: #d6d3d1;
    font-size: 13px;
    line-height: 1.65;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.meta-row {
    align-items: center;
    color: #fcd34d;
    font-size: 12px;
}

.meta-row span {
    color: inherit;
}

.carousel-section {
    position: relative;
}

.movie-rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 214px;
    gap: 18px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0 0 18px;
    scrollbar-width: none;
}

.movie-rail::-webkit-scrollbar {
    display: none;
}

.movie-card.compact {
    width: 100%;
}

.rail-actions {
    display: flex;
    gap: 8px;
}

.rail-actions button {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    color: #ffedd5;
    background: rgba(120, 53, 15, 0.9);
    cursor: pointer;
    font-size: 24px;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 44px 128px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 14px;
    border: 1px solid var(--line-soft);
    border-radius: 16px;
    background: rgba(41, 37, 36, 0.88);
    transition: background 0.2s ease, transform 0.2s ease;
}

.rank-row:hover {
    transform: translateY(-2px);
    background: rgba(68, 64, 60, 0.88);
}

.rank-num {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff7ed;
    background: linear-gradient(135deg, #f59e0b, #b45309);
    font-weight: 900;
}

.rank-thumb {
    overflow: hidden;
    width: 128px;
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    background: #1c1917;
}

.rank-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rank-row h2 {
    margin: 0 0 6px;
    color: #ffedd5;
    font-size: 18px;
}

.rank-row p {
    margin: 0 0 8px;
    color: #d6d3d1;
    line-height: 1.55;
}

.watch-small,
.more-link,
.text-link {
    padding: 0 16px;
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.35);
}

.watch-small:hover,
.more-link:hover,
.text-link:hover {
    color: #fff7ed;
    background: rgba(146, 64, 14, 0.72);
}

.page-shell,
.detail-shell {
    padding: 28px 0 20px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto 20px;
    color: #d6d3d1;
    font-size: 14px;
}

.breadcrumb a {
    color: #fbbf24;
}

.compact-hero {
    padding: clamp(30px, 5vw, 56px);
    border: 1px solid var(--line-soft);
    border-radius: 24px;
    background:
        radial-gradient(circle at 12% 20%, rgba(245, 158, 11, 0.28), transparent 24rem),
        linear-gradient(135deg, rgba(68, 64, 60, 0.92), rgba(28, 25, 23, 0.94));
    box-shadow: var(--shadow);
}

.compact-hero h1 {
    font-size: clamp(32px, 5vw, 54px);
    letter-spacing: -0.04em;
}

.category-overview-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto 54px;
}

.category-overview-card {
    display: grid;
    grid-template-columns: 176px 1fr;
    gap: 18px;
    padding: 16px;
    border: 1px solid var(--line-soft);
    border-radius: 20px;
    background: rgba(41, 37, 36, 0.86);
}

.category-poster {
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 4 / 3;
}

.category-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-overview-card h2 {
    margin: 0 0 8px;
    color: #ffedd5;
}

.category-overview-card p {
    margin: 0 0 10px;
    color: #d6d3d1;
    line-height: 1.65;
}

.category-samples {
    color: #fcd34d !important;
    font-size: 13px;
}

.filter-panel {
    padding: 20px;
    border: 1px solid var(--line-soft);
    border-radius: 20px;
    background: rgba(41, 37, 36, 0.9);
}

.filter-row {
    display: grid;
    grid-template-columns: 1.3fr repeat(4, 1fr);
    gap: 12px;
}

.filter-status {
    margin: 14px 0 0;
    color: #fcd34d;
}

.search-hidden {
    display: none !important;
}

.watch-area {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto 28px;
}

.player-wrap {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(245, 158, 11, 0.28);
    border-radius: 24px;
    background: #000000;
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 9;
}

.player-wrap video {
    width: 100%;
    height: 100%;
    background: #000000;
}

.player-mask {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 14px;
    border: 0;
    color: #fff7ed;
    background: radial-gradient(circle at center, rgba(245, 158, 11, 0.18), rgba(0, 0, 0, 0.62));
    cursor: pointer;
}

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

.play-button {
    display: grid;
    place-items: center;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b, #b45309);
    box-shadow: 0 20px 48px rgba(217, 119, 6, 0.38);
    font-size: 30px;
    line-height: 1;
    padding-left: 4px;
}

.player-mask strong {
    font-size: 20px;
}

.detail-hero {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 28px;
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto 36px;
    padding: 22px;
    border: 1px solid var(--line-soft);
    border-radius: 24px;
    background: rgba(41, 37, 36, 0.88);
    box-shadow: var(--shadow);
}

.detail-poster {
    overflow: hidden;
    border-radius: 18px;
    background: #1c1917;
}

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

.detail-kicker {
    padding: 7px 13px;
    margin-bottom: 16px;
}

.detail-info h1 {
    margin: 0 0 14px;
    color: #fff7ed;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.detail-one-line {
    margin: 0 0 18px;
    color: #e7e5e4;
    font-size: 18px;
    line-height: 1.8;
}

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

.article-section {
    padding: 24px;
    border: 1px solid var(--line-soft);
    border-radius: 22px;
    background: rgba(28, 25, 23, 0.84);
}

.article-section h2 {
    font-size: 26px;
}

.article-section p {
    font-size: 17px;
}

.related-grid .movie-card.compact .card-body h2 {
    min-height: auto;
}

.site-footer {
    margin-top: 56px;
    border-top: 2px solid rgba(180, 83, 9, 0.54);
    background: linear-gradient(180deg, rgba(28, 25, 23, 0.94), rgba(12, 10, 9, 0.98));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 28px;
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 42px 0 30px;
}

.site-footer h2 {
    margin: 0 0 12px;
    color: #fbbf24;
    font-size: 18px;
}

.site-footer p {
    margin: 0;
    color: #d6d3d1;
    line-height: 1.7;
}

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

.footer-links a {
    color: #d6d3d1;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-copy {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto !important;
    padding: 18px 0 26px;
    border-top: 1px solid rgba(245, 158, 11, 0.16);
    color: #a8a29e !important;
    text-align: center;
}

@media (max-width: 1080px) {
    .desktop-nav {
        gap: 13px;
        font-size: 14px;
    }

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

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

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

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

    .menu-toggle {
        display: block;
    }

    .mobile-nav.active {
        display: block;
    }

    .hero-carousel {
        min-height: 640px;
        margin-top: 18px;
    }

    .hero-slide {
        align-items: end;
    }

    .hero-content {
        width: calc(100% - 32px);
        margin: 0 16px 76px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-arrow {
        top: auto;
        bottom: 22px;
        transform: none;
    }

    .hero-prev {
        left: 18px;
    }

    .hero-next {
        right: 18px;
    }

    .search-form div {
        grid-template-columns: 1fr;
    }

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

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

    .category-overview-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .rank-row {
        grid-template-columns: 34px 96px 1fr;
    }

    .watch-small {
        grid-column: 3;
        justify-self: start;
    }

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

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

@media (max-width: 560px) {
    .brand {
        font-size: 20px;
    }

    .nav-shell {
        width: min(100% - 22px, 1200px);
    }

    .hero-carousel,
    .search-band,
    .category-strip,
    .content-section,
    .filter-panel,
    .page-hero,
    .article-section,
    .breadcrumb,
    .watch-area,
    .detail-hero {
        width: calc(100% - 22px);
    }

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

    .card-body {
        padding: 12px;
    }

    .card-body h2 {
        font-size: 15px;
        min-height: 41px;
    }

    .card-body p {
        font-size: 12px;
    }

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

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

    .rank-row {
        grid-template-columns: 30px 84px 1fr;
        gap: 10px;
        padding: 12px;
    }

    .rank-row p {
        display: none;
    }

    .rank-row h2 {
        font-size: 15px;
    }

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

    .hero-actions,
    .detail-actions {
        display: grid;
    }

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

    .play-button {
        width: 64px;
        height: 64px;
        font-size: 24px;
    }
}
