:root {
    --slate-950: #020617;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;
    --orange-700: #c2410c;
    --orange-600: #ea580c;
    --orange-500: #f97316;
    --orange-100: #ffedd5;
    --amber-50: #fffbeb;
    --white: #ffffff;
    --black: #000000;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --shadow-md: 0 10px 25px rgba(15, 23, 42, 0.10);
    --shadow-xl: 0 24px 60px rgba(15, 23, 42, 0.18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--slate-900);
    background: var(--slate-50);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    color: var(--white);
    background: rgba(15, 23, 42, 0.96);
    box-shadow: 0 12px 30px rgba(2, 6, 23, 0.28);
    backdrop-filter: blur(16px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: min(1280px, calc(100% - 2rem));
    height: 4rem;
    margin: 0 auto;
}

.site-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.site-logo {
    font-size: 1.2rem;
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    color: var(--white);
    background: var(--orange-500);
    border-radius: 999px;
    font-size: 0.75rem;
    box-shadow: 0 12px 20px rgba(249, 115, 22, 0.36);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    font-size: 0.95rem;
}

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

.desktop-nav a:hover,
.desktop-nav a.is-active,
.mobile-panel a:hover,
.mobile-panel a.is-active {
    color: var(--orange-500);
}

.header-search {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: min(360px, 32vw);
}

.header-search input,
.mobile-panel input,
.filter-bar input,
.filter-bar select {
    width: 100%;
    color: var(--slate-900);
    background: var(--white);
    border: 1px solid rgba(148, 163, 184, 0.45);
    border-radius: 0.75rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input,
.mobile-panel input {
    padding: 0.55rem 0.8rem;
}

.header-search input:focus,
.mobile-panel input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
    border-color: var(--orange-500);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.14);
}

.header-search button,
.mobile-panel button,
.primary-button,
.ghost-button,
.category-overview-head a,
.section-heading a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 0.75rem;
    cursor: pointer;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.header-search button,
.mobile-panel button,
.primary-button,
.category-overview-head a {
    color: var(--white);
    background: var(--orange-500);
}

.header-search button,
.mobile-panel button {
    padding: 0.55rem 0.9rem;
}

.header-search button:hover,
.mobile-panel button:hover,
.primary-button:hover,
.category-overview-head a:hover {
    background: var(--orange-600);
}

.menu-button {
    display: none;
    width: 2.5rem;
    height: 2.5rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.75rem;
}

.mobile-panel {
    display: none;
    width: min(1280px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 0 0 1rem;
}

.mobile-panel.is-open {
    display: block;
}

.mobile-panel nav,
.mobile-category-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    padding: 0.75rem 0;
}

.mobile-panel form {
    display: flex;
    gap: 0.5rem;
}

.hero-section {
    position: relative;
    height: 70vh;
    min-height: 560px;
    overflow: hidden;
    background: var(--slate-950);
}

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

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

.hero-slide img {
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.58) 48%, rgba(0, 0, 0, 0.08) 100%);
}

.hero-content {
    position: absolute;
    left: 50%;
    bottom: 4.5rem;
    width: min(1280px, calc(100% - 2rem));
    color: var(--white);
    transform: translateX(-50%);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 1rem;
    padding: 0.45rem 1rem;
    color: var(--white);
    background: var(--orange-500);
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 800;
    box-shadow: 0 14px 26px rgba(249, 115, 22, 0.28);
}

.hero-content h1,
.page-hero h1,
.detail-info-column h1 {
    max-width: 760px;
    margin: 0;
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1.02;
}

.hero-content h1 {
    font-size: clamp(2.6rem, 7vw, 5.8rem);
}

.hero-content p {
    max-width: 680px;
    margin: 1.1rem 0 0;
    color: var(--slate-200);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    line-height: 1.72;
}

.hero-tags,
.tag-row,
.movie-meta-row,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
}

.hero-tags {
    margin-top: 1.2rem;
}

.hero-tags span,
.tag-row span,
.pill {
    display: inline-flex;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
}

.hero-tags span,
.tag-row span {
    color: var(--slate-100);
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.5rem;
}

.primary-button,
.ghost-button {
    padding: 0.9rem 1.45rem;
}

.ghost-button {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(15, 23, 42, 0.34);
    backdrop-filter: blur(12px);
}

.ghost-button:hover {
    border-color: rgba(255, 255, 255, 0.58);
    background: rgba(15, 23, 42, 0.58);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    color: var(--white);
    background: rgba(0, 0, 0, 0.45);
    border: 0;
    border-radius: 999px;
    font-size: 2rem;
    transform: translateY(-50%);
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
    background: rgba(0, 0, 0, 0.72);
    transform: translateY(-50%) scale(1.04);
}

.hero-prev {
    left: 1rem;
}

.hero-next {
    right: 1rem;
}

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

.hero-dot {
    width: 0.55rem;
    height: 0.55rem;
    padding: 0;
    background: rgba(255, 255, 255, 0.55);
    border: 0;
    border-radius: 999px;
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
    width: 2rem;
    background: var(--orange-500);
}

.hero-quick-links {
    position: absolute;
    right: max(1rem, calc((100% - 1280px) / 2));
    bottom: 2rem;
    z-index: 5;
    display: flex;
    gap: 0.65rem;
}

.hero-quick-links a {
    padding: 0.45rem 0.8rem;
    color: var(--white);
    background: rgba(15, 23, 42, 0.54);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    backdrop-filter: blur(12px);
}

.content-section,
.page-shell,
.detail-content {
    width: min(1280px, calc(100% - 2rem));
    margin: 0 auto;
}

.content-section {
    padding: 5rem 0;
}

.no-top-space {
    padding-top: 0;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
}

.section-heading span {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--orange-600);
    font-size: 0.86rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    line-height: 1.1;
}

.section-heading a {
    padding: 0.55rem 0.9rem;
    color: var(--orange-700);
    background: var(--orange-100);
}

.light-heading h2,
.light-heading span {
    color: var(--white);
}

.card-grid {
    display: grid;
    gap: 1.5rem;
}

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

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

.movie-card,
.movie-card-large,
.compact-card,
.rank-card,
.category-tile,
.category-overview-card,
.story-card {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.movie-card,
.movie-card-large,
.compact-card,
.rank-card,
.category-tile {
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.movie-card {
    display: block;
    border-radius: var(--radius-xl);
}

.movie-card:hover,
.movie-card-large:hover,
.category-tile:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.poster-frame,
.compact-cover,
.rank-cover {
    display: block;
    overflow: hidden;
    background: var(--slate-200);
}

.poster-frame {
    aspect-ratio: 16 / 9;
}

.poster-frame img,
.compact-cover img,
.rank-cover img,
.large-frame img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.movie-card:hover img,
.movie-card-large:hover img,
.compact-card:hover img,
.rank-card:hover img {
    transform: scale(1.07);
}

.movie-card-body {
    display: block;
    padding: 1rem;
}

.movie-card strong,
.compact-card strong,
.rank-card strong,
.movie-card-large strong {
    display: -webkit-box;
    overflow: hidden;
    color: var(--slate-900);
    font-style: normal;
    font-weight: 850;
    line-height: 1.35;
    -webkit-box-orient: vertical;
}

.movie-card strong {
    min-height: 3rem;
    font-size: 1.05rem;
    -webkit-line-clamp: 2;
}

.movie-card em,
.rank-card em,
.movie-card-large em {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 0.65rem;
    color: var(--slate-600);
    font-style: normal;
    line-height: 1.6;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.movie-card-foot {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.9rem;
    color: var(--slate-500);
    font-size: 0.88rem;
}

.movie-card-large {
    position: relative;
    display: block;
    border-radius: var(--radius-2xl);
}

.large-frame {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.large-card-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.1));
}

.large-card-body {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.5rem;
    color: var(--white);
}

.large-card-body strong {
    color: var(--white);
    font-size: 1.45rem;
}

.large-card-body em {
    color: var(--slate-200);
}

.orange-pill {
    color: var(--white);
    background: var(--orange-500);
}

.warm-panel,
.slate-panel {
    width: min(1380px, calc(100% - 1rem));
    border-radius: var(--radius-2xl);
    padding-right: clamp(1rem, 4vw, 3rem);
    padding-left: clamp(1rem, 4vw, 3rem);
}

.warm-panel {
    background: linear-gradient(135deg, #fff7ed 0%, #fffbeb 100%);
}

.slate-panel {
    background: linear-gradient(135deg, var(--slate-900) 0%, var(--slate-800) 100%);
}

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

.rank-card {
    display: grid;
    grid-template-columns: auto 5.5rem 1fr;
    align-items: center;
    gap: 1rem;
    min-width: 0;
    padding: 0.85rem;
    border-radius: var(--radius-xl);
}

.rank-card:hover,
.compact-card:hover {
    background: var(--slate-50);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.rank-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    color: var(--white);
    background: var(--orange-500);
    border-radius: 999px;
    font-weight: 900;
}

.rank-cover {
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 0.85rem;
}

.rank-body,
.compact-body {
    min-width: 0;
}

.rank-body strong {
    font-size: 1.02rem;
    -webkit-line-clamp: 1;
}

.rank-body span,
.compact-body span {
    display: block;
    margin-top: 0.25rem;
    color: var(--slate-500);
    font-size: 0.86rem;
}

.rank-body em {
    margin-top: 0.35rem;
    font-size: 0.88rem;
}

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

.category-tile {
    display: flex;
    min-height: 220px;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.2rem;
    border-radius: var(--radius-xl);
}

.category-tile > span:first-child {
    color: var(--orange-600);
    font-weight: 900;
}

.category-tile strong {
    margin-top: 0.75rem;
    color: var(--slate-900);
    font-size: 1.2rem;
}

.category-tile em {
    margin-top: 0.5rem;
    color: var(--slate-600);
    font-style: normal;
    line-height: 1.6;
}

.category-samples {
    display: grid;
    gap: 0.35rem;
    margin-top: 1rem;
    font-size: 0.85rem;
}

.category-samples a {
    overflow: hidden;
    color: var(--slate-500);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.page-shell {
    padding: 3rem 0 5rem;
}

.page-hero {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    padding: clamp(2rem, 5vw, 4rem);
    color: var(--white);
    background: radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.42), transparent 28%), linear-gradient(135deg, var(--slate-900), var(--slate-800));
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.page-hero h1 {
    font-size: clamp(2.1rem, 5vw, 4rem);
}

.page-hero p {
    max-width: 760px;
    margin: 1rem 0 0;
    color: var(--slate-200);
    line-height: 1.75;
}

.filter-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.85rem;
    max-width: 780px;
    margin-top: 1.6rem;
}

.wide-filter {
    grid-template-columns: minmax(0, 1fr) 180px 160px;
    max-width: 980px;
}

.filter-bar input,
.filter-bar select {
    min-height: 3rem;
    padding: 0 1rem;
}

.category-overview-grid {
    display: grid;
    gap: 1.4rem;
}

.category-overview-card {
    display: grid;
    grid-template-columns: minmax(260px, 0.88fr) minmax(0, 1.6fr);
    gap: 1.5rem;
    padding: 1.25rem;
    border-radius: var(--radius-2xl);
}

.category-overview-head {
    padding: 0.75rem;
}

.category-overview-head span {
    color: var(--orange-600);
    font-weight: 900;
}

.category-overview-head h2 {
    margin: 0.5rem 0;
    font-size: 1.8rem;
}

.category-overview-head p {
    color: var(--slate-600);
    line-height: 1.7;
}

.category-overview-head a {
    width: fit-content;
    margin-top: 1.1rem;
    padding: 0.65rem 1rem;
}

.compact-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.compact-card {
    display: grid;
    grid-template-columns: 5rem minmax(0, 1fr);
    gap: 0.8rem;
    align-items: center;
    padding: 0.65rem;
    border-radius: var(--radius-xl);
}

.compact-cover {
    width: 5rem;
    height: 5rem;
    border-radius: 0.75rem;
}

.compact-body strong {
    -webkit-line-clamp: 2;
}

.ranking-list {
    display: grid;
    gap: 0.85rem;
}

.empty-state {
    display: none;
    margin: 2rem 0 0;
    padding: 1.5rem;
    color: var(--slate-600);
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

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

.detail-page {
    background: var(--slate-50);
}

.detail-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.9fr);
    gap: 2rem;
    width: min(1280px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 3rem 0;
}

.player-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--black);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.player-card video {
    width: 100%;
    height: 100%;
    background: var(--black);
    object-fit: cover;
}

.player-layer {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.06));
    border: 0;
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-orb {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    padding-left: 0.2rem;
    color: var(--white);
    background: var(--orange-500);
    border-radius: 999px;
    font-size: 2rem;
    box-shadow: 0 24px 45px rgba(249, 115, 22, 0.36);
}

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

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 1rem;
    color: var(--slate-500);
    font-size: 0.9rem;
}

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

.detail-info-column h1 {
    font-size: clamp(2rem, 4vw, 3.8rem);
}

.detail-info-column p {
    margin: 1rem 0 0;
    color: var(--slate-600);
    font-size: 1.08rem;
    line-height: 1.8;
}

.detail-meta {
    margin-top: 1.25rem;
    color: var(--slate-500);
}

.detail-meta span {
    padding: 0.4rem 0.75rem;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 999px;
}

.tag-row {
    margin-top: 1.15rem;
}

.tag-row span {
    color: var(--orange-700);
    background: var(--orange-100);
    border-color: transparent;
}

.detail-content {
    padding-bottom: 5rem;
}

.story-card {
    margin-bottom: 1.25rem;
    padding: clamp(1.25rem, 3vw, 2rem);
    border-radius: var(--radius-2xl);
}

.story-card h2 {
    margin: 0 0 0.85rem;
    font-size: 1.55rem;
}

.story-card p {
    margin: 0;
    color: var(--slate-700);
    font-size: 1.02rem;
    line-height: 1.9;
}

.related-section {
    padding-top: 2.5rem;
}

.site-footer {
    color: var(--slate-300);
    background: var(--slate-900);
    border-top: 1px solid var(--slate-800);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2rem;
    width: min(1280px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 3rem 0;
}

.footer-logo {
    color: var(--white);
    font-size: 1.15rem;
}

.site-footer h2 {
    margin: 0 0 1rem;
    color: var(--white);
    font-size: 1rem;
}

.site-footer p {
    color: var(--slate-400);
    line-height: 1.7;
}

.site-footer ul {
    display: grid;
    gap: 0.55rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer a:hover {
    color: var(--orange-500);
}

.footer-bottom {
    width: min(1280px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 1rem 0 2rem;
    color: var(--slate-400);
    border-top: 1px solid var(--slate-800);
    font-size: 0.9rem;
}

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

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

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

    .footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

    .menu-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .hero-section {
        min-height: 620px;
    }

    .hero-content {
        bottom: 5rem;
    }

    .hero-quick-links {
        right: auto;
        left: 1rem;
        bottom: 1rem;
        flex-wrap: wrap;
    }

    .hero-dots {
        bottom: 3.7rem;
    }

    .hero-arrow {
        display: none;
    }

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

    .rank-grid,
    .category-overview-card,
    .compact-list,
    .wide-filter,
    .filter-bar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .header-inner,
    .mobile-panel,
    .content-section,
    .page-shell,
    .detail-content,
    .detail-hero,
    .footer-inner,
    .footer-bottom {
        width: min(100% - 1rem, 1280px);
    }

    .site-logo span:last-child {
        max-width: 8em;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .hero-content h1 {
        font-size: clamp(2.2rem, 12vw, 3.4rem);
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .three-columns,
    .four-columns,
    .category-grid,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .rank-card {
        grid-template-columns: auto 4.5rem 1fr;
        gap: 0.75rem;
    }

    .rank-cover,
    .compact-cover {
        width: 4.5rem;
        height: 4.5rem;
    }

    .page-hero {
        padding: 1.5rem;
    }

    .play-orb {
        width: 4rem;
        height: 4rem;
        font-size: 1.6rem;
    }
}
