:root {
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-300: #fcd34d;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --yellow-500: #eab308;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-500: #6b7280;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --shadow-soft: 0 12px 30px rgba(17, 24, 39, 0.10);
    --shadow-strong: 0 22px 50px rgba(17, 24, 39, 0.18);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    color: var(--gray-800);
    background: linear-gradient(180deg, var(--amber-50), #fff7ed 42%, #ffffff);
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, var(--amber-500), var(--orange-500), var(--amber-600));
    box-shadow: 0 10px 28px rgba(217, 119, 6, 0.28);
}

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

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

.site-logo-mark {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--amber-600);
    background: #ffffff;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(255, 255, 255, 0.25);
    transition: transform 0.3s ease;
}

.site-logo:hover .site-logo-mark {
    transform: scale(1.1) rotate(8deg);
}

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

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

.desktop-nav a:hover,
.mobile-nav a:hover {
    color: var(--amber-100);
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    display: none;
    color: #ffffff;
    border: 0;
    background: transparent;
    font-size: 28px;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 10px 0 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

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

.mobile-nav a {
    color: #ffffff;
    font-weight: 650;
}

.hero-section {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(110deg, #f59e0b 0%, #f97316 52%, #eab308 100%);
}

.hero-pattern,
.detail-hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.20;
    background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.55) 0 2px, transparent 3px), radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.35) 0 4px, transparent 5px);
    background-size: 56px 56px, 90px 90px;
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 32px));
    min-height: 560px;
    margin: 0 auto;
    padding: 76px 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
    gap: 48px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 14px;
    padding: 7px 13px;
    border-radius: 999px;
    color: var(--amber-700, #92400e);
    background: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.hero-copy h1,
.page-hero h1,
.detail-info h1 {
    margin: 0;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.hero-copy p,
.page-hero p,
.detail-one-line {
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.90);
    font-size: clamp(16px, 2vw, 21px);
    line-height: 1.8;
}

.hero-search {
    margin-top: 30px;
    max-width: 620px;
    display: flex;
    gap: 12px;
    padding: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-soft);
}

.hero-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 0 18px;
    color: var(--gray-800);
    background: transparent;
}

.hero-search button,
.btn-primary,
.btn-secondary,
.hero-slide-link,
.panel-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.hero-search button,
.btn-primary,
.hero-slide-link,
.panel-link {
    color: #ffffff;
    background: linear-gradient(90deg, var(--amber-500), var(--orange-600));
    box-shadow: 0 12px 24px rgba(234, 88, 12, 0.25);
}

.hero-search button {
    padding: 12px 24px;
}

.btn-primary,
.btn-secondary {
    padding: 13px 24px;
}

.btn-secondary {
    color: var(--amber-700, #92400e);
    background: rgba(255, 255, 255, 0.92);
}

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

.hero-search button:hover,
.btn-primary:hover,
.btn-secondary:hover,
.hero-slide-link:hover,
.panel-link:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-strong);
}

.hero-showcase {
    position: relative;
    min-height: 430px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    background: rgba(17, 24, 39, 0.18);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.55s ease, transform 0.55s ease;
    pointer-events: none;
}

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

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.78));
}

.hero-slide-content {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
}

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

.hero-tags span,
.movie-tags span,
.detail-meta span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 800;
    color: #92400e;
    background: var(--amber-100);
}

.hero-slide-content h2 {
    margin: 15px 0 8px;
    font-size: 30px;
    line-height: 1.15;
}

.hero-slide-content p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
}

.hero-slide-link {
    padding: 10px 18px;
}

.hero-dots {
    position: absolute;
    top: 18px;
    right: 18px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.hero-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.50);
    cursor: pointer;
}

.hero-dots button.is-active {
    width: 30px;
    background: #ffffff;
}

.content-section,
.category-section,
.ranking-band,
.watch-section,
.detail-content {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 64px 0;
}

.ranking-band,
.category-section {
    width: 100%;
    padding-left: max(16px, calc((100% - 1180px) / 2));
    padding-right: max(16px, calc((100% - 1180px) / 2));
}

.ranking-band {
    background: linear-gradient(90deg, #ffedd5, var(--amber-100));
}

.category-section {
    background: linear-gradient(135deg, #fff7ed, #fffbeb);
}

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

.section-heading.compact {
    align-items: center;
}

.section-heading h2 {
    margin: 0;
    color: var(--gray-800);
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.15;
}

.section-heading a {
    color: var(--amber-600);
    font-weight: 800;
}

.movie-grid {
    display: grid;
    gap: 24px;
}

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

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

.small-grid {
    gap: 18px;
}

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

.movie-card {
    min-width: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.movie-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.movie-card-link {
    display: block;
    height: 100%;
}

.movie-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--gray-100);
}

.poster-card .movie-thumb {
    aspect-ratio: 2 / 3;
}

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

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

.movie-rating,
.movie-year {
    position: absolute;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 5px 9px;
    font-size: 12px;
    font-weight: 800;
}

.movie-rating {
    top: 12px;
    right: 12px;
    color: #ffffff;
    background: var(--amber-500);
}

.movie-year {
    left: 12px;
    bottom: 12px;
    color: #ffffff;
    background: rgba(17, 24, 39, 0.72);
}

.play-hover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 48px;
    background: rgba(0, 0, 0, 0.0);
    opacity: 0;
    transition: opacity 0.25s ease, background 0.25s ease;
}

.movie-card:hover .play-hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.30);
}

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

.poster-card .movie-card-body {
    padding: 13px;
}

.movie-card h3 {
    margin: 0 0 9px;
    color: var(--gray-800);
    font-size: 19px;
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.poster-card h3 {
    font-size: 15px;
}

.movie-card:hover h3 {
    color: var(--amber-600);
}

.movie-card p {
    min-height: 48px;
    margin: 0 0 14px;
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.poster-card p {
    display: none;
}

.movie-tags span {
    color: var(--amber-700, #92400e);
    background: var(--amber-100);
}

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

.rank-mini-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    min-width: 0;
    padding: 16px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 22px rgba(217, 119, 6, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rank-mini-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.rank-number,
.ranking-index {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 900;
    background: var(--gray-100);
}

.rank-number.gold {
    color: #ffffff;
    background: #f59e0b;
}

.rank-number.silver {
    color: var(--gray-700);
    background: #d1d5db;
}

.rank-number.bronze {
    color: #ffffff;
    background: #fb923c;
}

.rank-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 800;
}

.rank-score,
.ranking-value {
    color: var(--amber-600);
    font-weight: 900;
}

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

.category-card {
    position: relative;
    min-height: 190px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    padding: 24px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
    box-shadow: var(--shadow-soft);
    isolation: isolate;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
}

.category-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.28;
    z-index: -2;
}

.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.58));
    z-index: -1;
}

.category-card span {
    display: block;
    margin-bottom: 12px;
    font-size: 24px;
    font-weight: 900;
}

.category-card p {
    margin: 0;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
}

.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(110deg, var(--amber-500), var(--orange-500), var(--yellow-500));
}

.page-hero-inner,
.detail-hero-inner {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 78px 0;
}

.compact-hero .page-hero-inner {
    padding: 64px 0;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.filter-bar {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    margin-bottom: 28px;
}

.filter-bar input,
.filter-bar select {
    min-height: 48px;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 0 16px;
    outline: 0;
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(17, 24, 39, 0.05);
}

.filter-bar input:focus,
.filter-bar select:focus {
    border-color: var(--amber-500);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.16);
}

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

.top-rank-card {
    position: relative;
    min-height: 330px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    color: #ffffff;
    box-shadow: var(--shadow-soft);
}

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

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

.top-rank-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.72));
}

.top-rank-card div {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 1;
}

.top-rank-card h2 {
    margin: 0 0 10px;
    font-size: 26px;
}

.top-rank-card p {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.6;
}

.top-rank-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 1;
    padding: 7px 12px;
    border-radius: 999px;
    font-weight: 900;
    color: #92400e;
    background: var(--amber-100);
}

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

.ranking-row {
    display: grid;
    grid-template-columns: auto 76px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 14px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(17, 24, 39, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ranking-row:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-soft);
}

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

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

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

.ranking-main em {
    margin-top: 4px;
    color: var(--gray-500);
    font-style: normal;
    font-size: 13px;
}

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

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

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

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

.detail-info .eyebrow {
    color: #92400e;
}

.detail-meta {
    margin: 22px 0;
}

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

.watch-section {
    padding-bottom: 32px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #000000;
    box-shadow: var(--shadow-strong);
    aspect-ratio: 16 / 9;
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 14px;
    width: 100%;
    height: 100%;
    border: 0;
    color: #ffffff;
    cursor: pointer;
    text-align: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.70));
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-play-icon {
    width: 86px;
    height: 86px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    color: var(--amber-600);
    background: #ffffff;
    font-size: 34px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
}

.player-overlay strong {
    max-width: 80%;
    font-size: clamp(22px, 3vw, 36px);
}

.player-overlay em {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.82);
    font-style: normal;
    line-height: 1.7;
}

.detail-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    padding-top: 32px;
}

.text-panel,
.info-panel {
    border-radius: var(--radius-lg);
    padding: 28px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.text-panel h2,
.info-panel h2 {
    margin: 0 0 16px;
    color: var(--gray-800);
    font-size: 24px;
}

.text-panel p {
    margin: 0 0 24px;
    color: var(--gray-700);
    line-height: 1.9;
}

.info-panel dl {
    margin: 0;
}

.info-panel dt {
    margin-top: 18px;
    color: var(--gray-500);
    font-size: 13px;
    font-weight: 800;
}

.info-panel dd {
    margin: 7px 0 0;
    color: var(--gray-800);
    font-weight: 750;
}

.info-panel dd span {
    display: inline-flex;
    margin: 0 6px 6px 0;
    padding: 5px 9px;
    border-radius: 999px;
    color: #92400e;
    background: var(--amber-100);
    font-size: 12px;
}

.panel-link {
    width: 100%;
    margin-top: 24px;
    padding: 12px 18px;
}

.search-panel {
    min-height: 520px;
}

.search-wide {
    grid-template-columns: 1fr 190px;
}

.site-footer {
    margin-top: 36px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--gray-900), #1f2937);
}

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

.footer-grid p {
    max-width: 520px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
}

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

.footer-grid a:not(.footer-logo) {
    display: block;
    margin: 8px 0;
    color: rgba(255, 255, 255, 0.72);
}

.footer-grid a:hover {
    color: var(--amber-100);
}

.footer-bottom {
    padding: 18px;
    text-align: center;
    color: rgba(255, 255, 255, 0.62);
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.is-filter-hidden {
    display: none !important;
}

@media (max-width: 1080px) {
    .hero-inner,
    .detail-layout,
    .detail-content {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .mobile-menu-toggle {
        display: inline-flex;
    }

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

    .hero-inner,
    .page-hero-inner,
    .detail-hero-inner {
        width: min(100% - 24px, 1180px);
        padding: 42px 0;
    }

    .hero-inner {
        min-height: auto;
        gap: 28px;
    }

    .hero-search,
    .filter-bar,
    .search-wide {
        grid-template-columns: 1fr;
        display: grid;
        border-radius: 22px;
    }

    .hero-search input {
        min-height: 44px;
    }

    .hero-showcase {
        min-height: 390px;
    }

    .content-section,
    .watch-section,
    .detail-content {
        width: min(100% - 24px, 1180px);
        padding: 42px 0;
    }

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

    .featured-grid,
    .poster-grid,
    .category-movie-grid,
    .category-grid,
    .top-rank-grid,
    .rank-mini-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

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

    .ranking-value {
        grid-column: 3;
    }

    .player-overlay em {
        display: none;
    }

    .player-play-icon {
        width: 68px;
        height: 68px;
    }
}
